diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b73327..02bd260 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,17 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup dotnet - uses: actions/setup-dotnet@v3 + - name: Setup Node.js + uses: actions/setup-node@v4 with: - dotnet-version: "8.x" + node-version: '20' + cache: 'npm' - - name: Display dotnet version - run: dotnet --version + - name: Install dependencies + run: npm ci - - name: Compile - run: make \ No newline at end of file + - name: Build + run: npm run build + + - name: Copy to resources + run: rsync -avz --delete dist/myextension/ resources/App/webextensions/mxlint \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7679fdb..120d49e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,21 +10,24 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup dotnet - uses: actions/setup-dotnet@v3 + - name: Setup Node.js + uses: actions/setup-node@v4 with: - dotnet-version: "8.x" + node-version: '20.x' - - name: Display dotnet version - run: dotnet --version + - name: Display Node.js version + run: node --version - - name: Compile - run: make + - name: Install dependencies + run: npm ci - - name: Zip rules directory + - name: Build + run: npm run build + + - name: Zip extension run: | mkdir MxLintExtension - cp -r bin/Debug/net8.0/* MxLintExtension + cp -r dist/myextension/* MxLintExtension zip -r extension.zip MxLintExtension - name: Get release diff --git a/.gitignore b/.gitignore index ff28b79..6932002 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ bin/ obj/ +dist/ .vs/ resources/App/*.lock resources/App/.mendix-cache resources/App/extensions/MxLintExtension/* +.DS_Store +node_modules/ \ No newline at end of file diff --git a/HttpListenerResponseUtils.cs b/HttpListenerResponseUtils.cs deleted file mode 100644 index 6e8e092..0000000 --- a/HttpListenerResponseUtils.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System.Net; -using System.Text; - -namespace com.cinaq.MxLintExtension; - -public static class HttpListenerResponseUtils -{ - public static async Task SendFileAndClose(this HttpListenerResponse response, string contentType, string filePath, CancellationToken ct) - { - response.AddDefaultHeaders(200); - - var fileContents = await File.ReadAllBytesAsync(filePath, ct); - - response.ContentType = contentType; - response.ContentLength64 = fileContents.Length; - - await response.OutputStream.WriteAsync(fileContents, ct); - - response.Close(); - } - - public static void SendJsonAndClose(this HttpListenerResponse response, MemoryStream jsonStream) - { - response.AddDefaultHeaders(200); - - response.ContentType = "application/json"; - response.ContentEncoding = Encoding.UTF8; - response.ContentLength64 = jsonStream.Length; - - jsonStream.WriteTo(response.OutputStream); - - response.Close(); - } - - public static void SendNoBodyAndClose(this HttpListenerResponse response, int statusCode) - { - response.AddDefaultHeaders(statusCode); - - response.Close(); - } - - static void AddDefaultHeaders(this HttpListenerResponse response, int statusCode) - { - response.StatusCode = statusCode; - - // Makes sure the web-code can receive responses - response.AddHeader("Access-Control-Allow-Origin", "*"); - } -} \ No newline at end of file diff --git a/Makefile b/Makefile index 7891b4d..58df2ba 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ all: - dotnet build MxLintExtension.sln /property:GenerateFullPaths=true /consoleloggerparameters:NoSummary /p:Configuration=Debug /p:Platform="Any CPU" - cp -r bin/Debug/net8.0/* resources/App/extensions/MxLintExtension/ \ No newline at end of file + npm run build + rsync -avz --delete dist/myextension/ resources/App/webextensions/mxlint diff --git a/MxLint.cs b/MxLint.cs deleted file mode 100644 index 3a6d6d7..0000000 --- a/MxLint.cs +++ /dev/null @@ -1,135 +0,0 @@ -using System.Diagnostics; -using Mendix.StudioPro.ExtensionsAPI.Model; -using System.Net.Http; -using Mendix.StudioPro.ExtensionsAPI.Services; -using System.IO.Compression; - -namespace com.cinaq.MxLintExtension; - -public class MxLint -{ - - IModel Model; - string ExecutablePath; - string LintResultsPath; - string CachePath; - string RulesPath; - string CLIBaseURL; - string RulesBaseURL; - private readonly ILogService _logService; - private const string CLIVersion = "v3.6.0"; - private const string RulesVersion = "v3.2.0"; - - public MxLint(IModel model, ILogService logService) - { - Model = model; - _logService = logService; - - CachePath = Path.Combine(Model.Root.DirectoryPath, ".mendix-cache"); - ExecutablePath = Path.Combine(CachePath, "mxlint-local.exe"); - LintResultsPath = Path.Combine(CachePath, "lint-results.json"); - RulesPath = Path.Combine(CachePath, "rules"); - CLIBaseURL = "https://github.com/mxlint/mxlint-cli/releases/download/" + CLIVersion + "/"; - RulesBaseURL = "https://github.com/mxlint/mxlint-rules/releases/download/" + RulesVersion + "/"; - } - - public async Task Lint() - { - try - { - await EnsureCLI(); - await EnsurePolicies(); - await ExportModel(); - await LintModel(); - } - catch (Exception ex) - { - _logService.Error($"Error during linting process: {ex.Message}"); - } - } - - public async Task ExportModel() - { - await RunProcess("export-model", "Exporting model"); - } - - public async Task LintModel() - { - await RunProcess($"lint -j {LintResultsPath} -r {RulesPath}", "Linting model"); - } - - private async Task RunProcess(string arguments, string operationName) - { - var startInfo = new ProcessStartInfo - { - FileName = ExecutablePath, - Arguments = arguments, - WorkingDirectory = Model.Root.DirectoryPath, - UseShellExecute = false, - RedirectStandardOutput = true, - RedirectStandardError = true, - CreateNoWindow = true - }; - - using var process = new Process { StartInfo = startInfo }; - process.OutputDataReceived += (sender, e) => { if (e.Data != null) _logService.Info(e.Data); }; - process.ErrorDataReceived += (sender, e) => { if (e.Data != null) _logService.Error(e.Data); }; - - try - { - process.Start(); - process.BeginOutputReadLine(); - process.BeginErrorReadLine(); - await process.WaitForExitAsync(); - _logService.Info($"Finished {operationName}"); - } - catch (Exception ex) - { - _logService.Error($"Error during {operationName}: {ex.Message}"); - } - } - - private async Task EnsureCLI() - { - if (File.Exists(ExecutablePath)) - { - _logService.Info("CLI already exists"); - return; - } - - using (var client = new HttpClient()) - { - string DownloadURL = CLIBaseURL + "mxlint-" + CLIVersion + "-windows-amd64.exe"; - _logService.Info("Downloading CLI from " + DownloadURL); - var response = await client.GetAsync(DownloadURL); - using (var fs = new FileStream(ExecutablePath, FileMode.CreateNew)) - { - await response.Content.CopyToAsync(fs); - } - } - } - - private async Task EnsurePolicies() - { - if (Directory.Exists(RulesPath)) - { - _logService.Info("Rules already exists"); - return; - } - - using (var client = new HttpClient()) - { - string DownloadURL = RulesBaseURL + "rules-" + RulesVersion + ".zip"; - string tempZip = Path.Combine(CachePath, "rules.zip"); - _logService.Info("Downloading rules from " + DownloadURL); - var response = await client.GetAsync(DownloadURL); - using (var fs = new FileStream(tempZip, FileMode.CreateNew)) - { - await response.Content.CopyToAsync(fs); - } - // unzip - ZipFile.ExtractToDirectory(tempZip, CachePath); - File.Delete(tempZip); - } - } -} diff --git a/MxLintExtension.csproj b/MxLintExtension.csproj deleted file mode 100644 index ba12638..0000000 --- a/MxLintExtension.csproj +++ /dev/null @@ -1,22 +0,0 @@ - - - - net8.0 - enable - enable - - - - - - - - - Always - - - Always - - - - diff --git a/MxLintExtension.sln b/MxLintExtension.sln deleted file mode 100644 index b57bda5..0000000 --- a/MxLintExtension.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.10.35122.118 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MxLintExtension", "MxLintExtension.csproj", "{40F60B1D-0F97-451B-AB6E-63FA31EE89E5}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {40F60B1D-0F97-451B-AB6E-63FA31EE89E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {40F60B1D-0F97-451B-AB6E-63FA31EE89E5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {40F60B1D-0F97-451B-AB6E-63FA31EE89E5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {40F60B1D-0F97-451B-AB6E-63FA31EE89E5}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5108F93F-431A-4B75-9C97-9F6261E86C4B} - EndGlobalSection -EndGlobal diff --git a/MxLintMenuExtension.cs b/MxLintMenuExtension.cs deleted file mode 100644 index 8c72c26..0000000 --- a/MxLintMenuExtension.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.ComponentModel.Composition; -using Mendix.StudioPro.ExtensionsAPI.UI.Menu; -using Mendix.StudioPro.ExtensionsAPI.UI.Services; - -namespace com.cinaq.MxLintExtension; - -[Export(typeof(MenuExtension))] -[method: ImportingConstructor] -public class MxLintMenuExtension(IDockingWindowService dockingWindowService, IMessageBoxService messageBoxService) : MenuExtension -{ - - public override IEnumerable GetMenus() - { - yield return new MenuViewModel("Open MxLint", () => dockingWindowService.OpenPane(MxLintPaneExtension.ID)); - yield return new MenuViewModel("About", () => messageBoxService.ShowInformation("Find the latest version and license info at https://github.com/mxlint/mxlint-extension")); - - } -} \ No newline at end of file diff --git a/MxLintPaneExtension.cs b/MxLintPaneExtension.cs deleted file mode 100644 index 21cafe9..0000000 --- a/MxLintPaneExtension.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.ComponentModel.Composition; -using Mendix.StudioPro.ExtensionsAPI.Services; -using Mendix.StudioPro.ExtensionsAPI.UI.Services; -using Mendix.StudioPro.ExtensionsAPI.UI.DockablePane; - -namespace com.cinaq.MxLintExtension; - -[Export(typeof(DockablePaneExtension))] -public class MxLintPaneExtension : DockablePaneExtension -{ - private readonly ILogService _logService; - - public const string ID = "com-cinaq-mxlint-extension"; - public override string Id => ID; - private readonly IDockingWindowService _dockingWindowService; - - [ImportingConstructor] - public MxLintPaneExtension(IDockingWindowService dockingWindowService, ILogService logService) - { - _logService = logService; - _dockingWindowService = dockingWindowService; - } - - public override DockablePaneViewModelBase Open() - { - return new MxLintPaneExtensionWebViewModel(new Uri(Path.Combine(WebServerBaseUrl.AbsoluteUri,"wwwroot")), () => CurrentApp, _logService, _dockingWindowService) { Title = "MxLint" }; - } -} diff --git a/MxLintPaneExtensionWebViewModel.cs b/MxLintPaneExtensionWebViewModel.cs deleted file mode 100644 index 03423b3..0000000 --- a/MxLintPaneExtensionWebViewModel.cs +++ /dev/null @@ -1,160 +0,0 @@ -using Mendix.StudioPro.ExtensionsAPI.Model; -using Mendix.StudioPro.ExtensionsAPI.Model.Projects; -using Mendix.StudioPro.ExtensionsAPI.Services; -using Mendix.StudioPro.ExtensionsAPI.UI.DockablePane; -using Mendix.StudioPro.ExtensionsAPI.UI.Services; -using Mendix.StudioPro.ExtensionsAPI.UI.WebView; -using System.Text.Json.Nodes; - - -namespace com.cinaq.MxLintExtension; - -public class MxLintPaneExtensionWebViewModel : WebViewDockablePaneViewModel -{ - private readonly Uri _baseUri; - private readonly Func _getCurrentApp; - private readonly ILogService _logService; - private readonly IDockingWindowService _dockingWindowService; - private DateTime _lastUpdateTime; - private IWebView? _webView; // Change 1: Make _webView nullable - - - public MxLintPaneExtensionWebViewModel(Uri baseUri, Func getCurrentApp, ILogService logService, IDockingWindowService dockingWindowService) - { - _baseUri = baseUri; - _getCurrentApp = getCurrentApp; - _dockingWindowService = dockingWindowService; - _logService = logService; - _lastUpdateTime = DateTime.Now.AddYears(-100); // force refresh on first run - } - - public override void InitWebView(IWebView webView) - { - _webView = webView; - webView.Address = new Uri(_baseUri, "index.html"); - _logService.Info($"InitWebView: {_baseUri}"); - - webView.MessageReceived += HandleWebViewMessage; - //webView.ShowDevTools(); - } - - private async void HandleWebViewMessage(object? sender, MessageReceivedEventArgs args) // Change 2: Make sender nullable - { - var currentApp = _getCurrentApp(); - if (currentApp == null) return; - - if (args.Message == "refreshData") - { - await Refresh(currentApp); - } - if (args.Message == "toggleDebug") - { - _webView?.ShowDevTools(); - } - if (args.Message == "openDocument") - { - _webView?.PostMessage("documentOpened"); - await OpenDocument(currentApp, args.Data); - } - } - - - private async Task OpenDocument(IModel currentApp, JsonObject data) - { - var doc = GetUnit(currentApp, data); - if (doc == null) - { - _logService.Error($"Document not found: {data}"); - return false; - } - - _dockingWindowService.TryOpenEditor(doc, null); - return true; - } - - private IAbstractUnit? GetUnit(IModel currentApp, JsonObject data) - { - _logService.Info($"Looking up document: {data}"); - - var documentName = data["document"].ToString(); - if (documentName == "Security$ProjectSecurity") - { - return null; - } - - var moduleName = data["module"].ToString(); - - var module = currentApp.Root.GetModules().Single(m => m.Name == moduleName); - if (module == null) - { - _logService.Error($"Module not found: {moduleName}"); - return null; - } - - - if (documentName == "DomainModels$DomainModel") - { - return module.DomainModel; - } - - - IFolder folder = null; - while (documentName.Contains("/")) - { - var tokens = documentName.Split("/"); - var folderName = tokens[0]; - if (folder == null) - { - folder = module.GetFolders().FirstOrDefault(f => f.Name == folderName); - } - else - { - folder = folder.GetFolders().FirstOrDefault(f => f.Name == folderName); - } - documentName = documentName.Substring(folderName.Length + 1); - } - if (folder == null) - { - return module.GetDocuments().FirstOrDefault(d => d.Name == documentName); - } - else - { - return folder.GetDocuments().FirstOrDefault(d => d.Name == documentName); - } - - } - - private async Task Refresh(IModel currentApp) - { - var mprFile = GetMprFile(currentApp.Root.DirectoryPath); - if (mprFile == null) return false; - - var lastWrite = File.GetLastWriteTime(mprFile); - if (lastWrite <= _lastUpdateTime) - { - _logService.Debug("No changes detected"); - return false; - } - - _webView?.PostMessage("start"); - _lastUpdateTime = lastWrite; - _logService.Info($"Changes detected: {_lastUpdateTime}"); - - var cmd = new MxLint(currentApp, _logService); - await cmd.Lint(); - - _webView?.PostMessage("end"); - _webView?.PostMessage("refreshData"); - return true; - } - - private string? GetMprFile(string directoryPath) - { - var mprFile = Directory.GetFiles(directoryPath, "*.mpr", SearchOption.TopDirectoryOnly).FirstOrDefault(); - if (mprFile == null) - { - _logService.Error("No mpr file found"); - } - return mprFile; - } -} diff --git a/MxLintWebServerExtension.cs b/MxLintWebServerExtension.cs deleted file mode 100644 index 4822e79..0000000 --- a/MxLintWebServerExtension.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System.ComponentModel.Composition; -using System.Net; -using System.Text; -using System.Text.Json; -using Mendix.StudioPro.ExtensionsAPI.Services; -using Mendix.StudioPro.ExtensionsAPI.UI.WebServer; - -namespace com.cinaq.MxLintExtension; - -[Export(typeof(WebServerExtension))] -public class MxLintWebServerExtension : WebServerExtension -{ - private readonly IExtensionFileService _extensionFileService; - private readonly ILogService _logService; - - [ImportingConstructor] - public MxLintWebServerExtension(IExtensionFileService extensionFileService, ILogService logService) - { - _extensionFileService = extensionFileService; - _logService = logService; - } - - public override void InitializeWebServer(IWebServer webServer) - { - var wwwrootPath = _extensionFileService.ResolvePath("wwwroot"); - var files = Directory.GetFiles(wwwrootPath); - - foreach (var file in files) - { - var route = Path.GetFileName(file); - webServer.AddRoute(route, (request, response, ct) => ServeFile(file, response, ct)); - } - - webServer.AddRoute("api", ServeAPI); - } - - private async Task ServeFile(string filePath, HttpListenerResponse response, CancellationToken ct) - { - var mimeType = GetMimeType(filePath); - await response.SendFileAndClose(mimeType, filePath, ct); - } - - private string GetMimeType(string filePath) - { - var extension = Path.GetExtension(filePath); - return extension switch - { - ".html" => "text/html", - ".js" => "text/javascript", - ".css" => "text/css", - _ => "application/octet-stream" - }; - } - - private async Task ServeAPI(HttpListenerRequest request, HttpListenerResponse response, CancellationToken ct) - { - if (CurrentApp == null) - { - response.SendNoBodyAndClose(404); - return; - } - - // read json file - var jsonPath = Path.Combine(CurrentApp.Root.DirectoryPath, ".mendix-cache", "lint-results.json"); - var data = await File.ReadAllTextAsync(jsonPath, ct); - var jsonStream = new MemoryStream(); - jsonStream.Write(Encoding.UTF8.GetBytes(data)); - response.SendJsonAndClose(jsonStream); - } -} \ No newline at end of file diff --git a/README.md b/README.md index b9f4570..c442431 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,80 @@ # MxLint Extension for Mendix Studio Pro -While [mxlint-cli](https://github.com/mxlint/mxlint-cli) is designed for pipeline automation, this extension is designed to be used in Mendix Studio Pro. It gives you quicker feedback to avoid surprises when you are ready to deploy your app. +This extension integrates MxLint into Mendix Studio Pro, allowing you to view lint results directly within the IDE. -> This is still early stage of development. Follow this project for future updates. +## Features -See the [official docs](https://mxlint.cinaq.com) \ No newline at end of file +- View lint results in a dedicated pane within Mendix Studio Pro +- Filter results by failures or skipped tests +- Configure server port and other settings +- Auto-refresh results + +## Installation + +1. Build the extension: + ``` + npm install + npm run build + ``` + +2. Install the extension in Mendix Studio Pro: + - Go to Menu > Extensions > Manage Extensions + - Click "Import" and select the built extension file + +## Usage + +### Running the MxLint Server + +The extension connects to a running mxlint-cli serve instance. To start the server: + +1. Open a terminal in your Mendix project directory +2. Run the following command: + ``` + mxlint-cli serve -i . -o modelsource -r rules -p 8084 + ``` + + Where: + - `-i .` specifies the input directory (current directory) + - `-o modelsource` specifies the output directory for exported model files + - `-r rules` specifies the directory containing lint rules + - `-p 8084` specifies the port to run the server on (must match the port in the extension settings) + +3. The server will watch for changes in your Mendix project and automatically update the lint results + +### Using the Extension + +1. Open the MxLint pane: + - Go to Menu > Extensions > MxLint > Open Pane + +2. Configure settings: + - Go to Menu > Extensions > MxLint > Settings + - Set the server port to match your mxlint-cli serve instance (default: 8084) + +3. View and filter lint results in the MxLint pane + +## Configuration + +In the Settings tab, you can configure: + +- Server port (default: 8084) +- Rules directory path +- Model source directory path +- JSON report path + +## Development + +This extension is built using: + +- React +- TypeScript +- Mendix Extensions API + +To develop: + +1. Clone the repository +2. Install dependencies: `npm install` +3. Build: `npm run build` + +## License + +This project is licensed under the AGPL-3.0 License - see the LICENSE file for details. \ No newline at end of file diff --git a/dev/build-windows.ps1 b/dev/build-windows.ps1 deleted file mode 100644 index be5c103..0000000 --- a/dev/build-windows.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -## build the solution -msbuild.exe .\MxLintExtension.sln /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" - -# remove the old extension -Remove-Item -Recurse .\resources\App\extensions\MxLintExtension\* -Force - -# copy the extension to the Mendix project -Copy-Item -Recurse .\bin\Release\net8.0\* .\resources\App\extensions\MxLintExtension\ -Force \ No newline at end of file diff --git a/dev/hotreload-windows.ps1 b/dev/hotreload-windows.ps1 deleted file mode 100644 index 395820b..0000000 --- a/dev/hotreload-windows.ps1 +++ /dev/null @@ -1,3 +0,0 @@ -cd wwwroot - -python -m http.server 8000 \ No newline at end of file diff --git a/manifest.json b/manifest.json deleted file mode 100644 index 98ca67a..0000000 --- a/manifest.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "mx_extensions": [ "MxLintExtension.dll" ], - "mx_build_extensions": [] -} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..48aa1e8 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1142 @@ +{ + "name": "@mxlint/mxlint-extension", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@mxlint/mxlint-extension", + "version": "0.1.0", + "license": "AGPL-3.0", + "dependencies": { + "@mendix/extensions-api": "^0.1.1-mendix.10.21.0", + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "@types/node": "^22.13.10", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", + "typescript": "^5.8.2", + "vite": "^6.2.2" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz", + "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz", + "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz", + "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz", + "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz", + "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz", + "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz", + "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz", + "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz", + "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz", + "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz", + "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz", + "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz", + "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz", + "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz", + "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz", + "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz", + "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz", + "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz", + "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz", + "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz", + "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz", + "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz", + "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz", + "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz", + "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@mendix/extensions-api": { + "version": "0.1.1-mendix.10.21.0", + "resolved": "https://registry.npmjs.org/@mendix/extensions-api/-/extensions-api-0.1.1-mendix.10.21.0.tgz", + "integrity": "sha512-inn7aZEbwh+DIK96XNvS1MlRGmmtHGre0irRp9I6qGhcSbuhs12azA68UlT4jauMx/c716vuE8qvn2B+rNn9NQ==", + "license": "UNLICENSED" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.43.0.tgz", + "integrity": "sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.43.0.tgz", + "integrity": "sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.43.0.tgz", + "integrity": "sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.43.0.tgz", + "integrity": "sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.43.0.tgz", + "integrity": "sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.43.0.tgz", + "integrity": "sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.43.0.tgz", + "integrity": "sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.43.0.tgz", + "integrity": "sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.43.0.tgz", + "integrity": "sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.43.0.tgz", + "integrity": "sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.43.0.tgz", + "integrity": "sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.43.0.tgz", + "integrity": "sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.43.0.tgz", + "integrity": "sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.43.0.tgz", + "integrity": "sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.43.0.tgz", + "integrity": "sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.43.0.tgz", + "integrity": "sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.43.0.tgz", + "integrity": "sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.43.0.tgz", + "integrity": "sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.43.0.tgz", + "integrity": "sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.43.0.tgz", + "integrity": "sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.15.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.31.tgz", + "integrity": "sha512-jnVe5ULKl6tijxUhvQeNbQG/84fHfg+yMak02cT8QVhBx/F05rAVxCGBYYTh2EKz22D6JF5ktXuNwdx7b9iEGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.23", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz", + "integrity": "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz", + "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.5", + "@esbuild/android-arm": "0.25.5", + "@esbuild/android-arm64": "0.25.5", + "@esbuild/android-x64": "0.25.5", + "@esbuild/darwin-arm64": "0.25.5", + "@esbuild/darwin-x64": "0.25.5", + "@esbuild/freebsd-arm64": "0.25.5", + "@esbuild/freebsd-x64": "0.25.5", + "@esbuild/linux-arm": "0.25.5", + "@esbuild/linux-arm64": "0.25.5", + "@esbuild/linux-ia32": "0.25.5", + "@esbuild/linux-loong64": "0.25.5", + "@esbuild/linux-mips64el": "0.25.5", + "@esbuild/linux-ppc64": "0.25.5", + "@esbuild/linux-riscv64": "0.25.5", + "@esbuild/linux-s390x": "0.25.5", + "@esbuild/linux-x64": "0.25.5", + "@esbuild/netbsd-arm64": "0.25.5", + "@esbuild/netbsd-x64": "0.25.5", + "@esbuild/openbsd-arm64": "0.25.5", + "@esbuild/openbsd-x64": "0.25.5", + "@esbuild/sunos-x64": "0.25.5", + "@esbuild/win32-arm64": "0.25.5", + "@esbuild/win32-ia32": "0.25.5", + "@esbuild/win32-x64": "0.25.5" + } + }, + "node_modules/fdir": { + "version": "6.4.6", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", + "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.5.tgz", + "integrity": "sha512-d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/rollup": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.43.0.tgz", + "integrity": "sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.7" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.43.0", + "@rollup/rollup-android-arm64": "4.43.0", + "@rollup/rollup-darwin-arm64": "4.43.0", + "@rollup/rollup-darwin-x64": "4.43.0", + "@rollup/rollup-freebsd-arm64": "4.43.0", + "@rollup/rollup-freebsd-x64": "4.43.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.43.0", + "@rollup/rollup-linux-arm-musleabihf": "4.43.0", + "@rollup/rollup-linux-arm64-gnu": "4.43.0", + "@rollup/rollup-linux-arm64-musl": "4.43.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.43.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.43.0", + "@rollup/rollup-linux-riscv64-gnu": "4.43.0", + "@rollup/rollup-linux-riscv64-musl": "4.43.0", + "@rollup/rollup-linux-s390x-gnu": "4.43.0", + "@rollup/rollup-linux-x64-gnu": "4.43.0", + "@rollup/rollup-linux-x64-musl": "4.43.0", + "@rollup/rollup-win32-arm64-msvc": "4.43.0", + "@rollup/rollup-win32-ia32-msvc": "4.43.0", + "@rollup/rollup-win32-x64-msvc": "4.43.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", + "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.4.4", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "6.3.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", + "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..da7dca9 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "@mxlint/mxlint-extension", + "version": "0.1.0", + "type": "module", + "description": "Mxlint Extension for Mendix Studio Pro", + "license": "AGPL-3.0", + "scripts": { + "build": "tsc --noEmit && vite build --config vite.config.ts" + }, + "dependencies": { + "@mendix/extensions-api": "^0.1.1-mendix.10.21.0", + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "@types/node": "^22.13.10", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", + "typescript": "^5.8.2", + "vite": "^6.2.2" + } +} diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..227d2e7 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,11 @@ +{ + "mendixComponent": { + "entryPoints": { + "main": "main.js", + "ui": { + "settingsTab": "settingsTab.js", + "mainDock": "mainDock.js" + } + } + } +} diff --git a/resources/App/App.mpr b/resources/App/App.mpr index 7e1e847..61b98d2 100644 Binary files a/resources/App/App.mpr and b/resources/App/App.mpr differ diff --git a/resources/App/extensions/MxLintExtension/.keep b/resources/App/extensions/MxLintExtension/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/resources/App/modelsource/Administration/DomainModels$DomainModel.yaml b/resources/App/modelsource/Administration/DomainModels$DomainModel.yaml deleted file mode 100644 index cf802ba..0000000 --- a/resources/App/modelsource/Administration/DomainModels$DomainModel.yaml +++ /dev/null @@ -1,208 +0,0 @@ -$Type: DomainModels$DomainModel -Annotations: null -Associations: -- $Type: DomainModels$Association - ChildConnection: 100;54 - ChildPointer: - Data: bV7FA1/u9k+4rTjdpcLniw== - Subtype: 0 - DeleteBehavior: - $Type: DomainModels$DeleteBehavior - ChildDeleteBehavior: DeleteMeButKeepReferences - ChildErrorMessage: null - ParentDeleteBehavior: DeleteMeButKeepReferences - ParentErrorMessage: null - Documentation: "" - ExportLevel: Hidden - Name: AccountPasswordData_Account - Owner: Default - ParentConnection: 0;54 - ParentPointer: - Data: omcpzaYuiE2EDAHeCtPmig== - Subtype: 0 - Source: null -CrossAssociations: null -Documentation: "" -Entities: -- $Type: DomainModels$EntityImpl - AccessRules: - - $Type: DomainModels$AccessRule - AllowCreate: true - AllowDelete: true - AllowedModuleRoles: - - Administration.Administrator - DefaultMemberAccessRights: None - Documentation: "" - MemberAccesses: - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: Administration.Account.FullName - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: Administration.Account.Email - - $Type: DomainModels$MemberAccess - AccessRights: ReadOnly - Association: "" - Attribute: Administration.Account.IsLocalUser - XPathConstraint: "" - XPathConstraintCaption: "" - - $Type: DomainModels$AccessRule - AllowCreate: false - AllowDelete: false - AllowedModuleRoles: - - Administration.User - DefaultMemberAccessRights: ReadOnly - Documentation: "" - MemberAccesses: - - $Type: DomainModels$MemberAccess - AccessRights: ReadOnly - Association: "" - Attribute: Administration.Account.FullName - - $Type: DomainModels$MemberAccess - AccessRights: ReadOnly - Association: "" - Attribute: Administration.Account.Email - - $Type: DomainModels$MemberAccess - AccessRights: None - Association: "" - Attribute: Administration.Account.IsLocalUser - XPathConstraint: "" - XPathConstraintCaption: "" - - $Type: DomainModels$AccessRule - AllowCreate: false - AllowDelete: false - AllowedModuleRoles: - - Administration.User - DefaultMemberAccessRights: None - Documentation: "" - MemberAccesses: - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: Administration.Account.FullName - - $Type: DomainModels$MemberAccess - AccessRights: None - Association: "" - Attribute: Administration.Account.Email - - $Type: DomainModels$MemberAccess - AccessRights: None - Association: "" - Attribute: Administration.Account.IsLocalUser - XPathConstraint: '[id=''[%CurrentUser%]'']' - XPathConstraintCaption: "" - Attributes: - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: FullName - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Email - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: IsLocalUser - NewType: - $Type: DomainModels$BooleanAttributeType - Value: - $Type: DomainModels$StoredValue - DefaultValue: "true" - Documentation: "" - Events: null - ExportLevel: Hidden - Indexes: null - MaybeGeneralization: - $Type: DomainModels$Generalization - Generalization: System.User - Name: Account - Source: null - ValidationRules: null -- $Type: DomainModels$EntityImpl - AccessRules: - - $Type: DomainModels$AccessRule - AllowCreate: false - AllowDelete: false - AllowedModuleRoles: - - Administration.Administrator - - Administration.User - DefaultMemberAccessRights: ReadWrite - Documentation: "" - MemberAccesses: - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: Administration.AccountPasswordData.OldPassword - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: Administration.AccountPasswordData.NewPassword - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: Administration.AccountPasswordData.ConfirmPassword - - $Type: DomainModels$MemberAccess - AccessRights: ReadOnly - Association: Administration.AccountPasswordData_Account - Attribute: "" - XPathConstraint: "" - XPathConstraintCaption: "" - Attributes: - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: OldPassword - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: NewPassword - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: ConfirmPassword - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - Documentation: "" - Events: null - ExportLevel: Hidden - Indexes: null - MaybeGeneralization: - $Type: DomainModels$NoGeneralization - HasChangedByAttr: false - HasChangedDateAttr: false - HasCreatedDateAttr: false - HasOwnerAttr: false - Persistable: false - Name: AccountPasswordData - Source: null - ValidationRules: null diff --git a/resources/App/modelsource/Administration/Projects$ModuleSettings.yaml b/resources/App/modelsource/Administration/Projects$ModuleSettings.yaml deleted file mode 100644 index f6ae021..0000000 --- a/resources/App/modelsource/Administration/Projects$ModuleSettings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Projects$ModuleSettings -BasedOnVersion: "" -ExportLevel: Source -ExtensionName: "" -JarDependencies: null -ProtectedModuleType: AddOn -SolutionIdentifier: "" -Version: 1.0.0 diff --git a/resources/App/modelsource/Administration/Security$ModuleSecurity.yaml b/resources/App/modelsource/Administration/Security$ModuleSecurity.yaml deleted file mode 100644 index 1b58b29..0000000 --- a/resources/App/modelsource/Administration/Security$ModuleSecurity.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Security$ModuleSecurity -ModuleRoles: -- $Type: Security$ModuleRole - Description: "" - Name: Administrator -- $Type: Security$ModuleRole - Description: "" - Name: User diff --git a/resources/App/modelsource/Administration/System Administration/ActiveSessions.Forms$Page.yaml b/resources/App/modelsource/Administration/System Administration/ActiveSessions.Forms$Page.yaml deleted file mode 100644 index 0dcb32e..0000000 --- a/resources/App/modelsource/Administration/System Administration/ActiveSessions.Forms$Page.yaml +++ /dev/null @@ -1,3873 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: -- Administration.Administrator -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: 'pageheader pageheader-fullwidth ' - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Active Sessions - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Actieve sessies - Name: label1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H2 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dataGrid21 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ovJrcieynkKyWWPv8wVgpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VBv+RNIwsUaAo43pK3sfNw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SApAGl3qT0C9YwkWwNMRRQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.Session - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Name - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.Session_User - DestinationEntity: System.User - SortOrder: Ascending - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Fcue3kWEK0i/U21Kean1gw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 60tFwJy12kWohR1JrjMBcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fHuyodGtAUGTlfE1lKf7Nw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q6hWk6Yjr0GZ9u3D3f5HrA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NFvUPCwvQEWw3XnsRsmAlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VPC/PzHTLEKeWa9RSrnJpA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: f5kJAoD2yEi+915CjXftDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: od42Z7gJJE+VHbOhJA8Y1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcZID4x/dUGu/Jgo1zVePQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dN0tLiyJVE2q0HButoXPIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c0LMjX2jek2e3lN9beQIjw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1ec5ycU960y7jhq3725WsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: raBW+xO76Uq+xYI+KO1gWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Name - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.Session_User - DestinationEntity: System.User - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /zqrYc1V8kuEW4mSnfy5SA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: raGWMWdDjEWLEC30/T/9GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fMbpb860sEqGVgCszRgb4Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: spaP6r2Kq0G+8DAEIUJl8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: qYMQ/TMgYUGuFnHnQJY8fA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rKzUMYapYUi0KLCkzEeBpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: User name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruikersnaam - TranslatableValue: null - TypePointer: - Data: cegCtaQOGkuystMHRcHtnw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uX4cQ7MFYECtRzTQltuhrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: BdFrcGlV30uc8zyoxxkz5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: spGTv8e6NUyNds+9ez7DcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pSvC8nWWRk6WLhDutmkWTg== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: textFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: L2j809Hq0U+adzNTgd2r+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7oeWtbPntEu3ZchDeONcGA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4WJLrWcmIEa1nRIZKP490w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wR8IwgBvz0K3obNXMnTENw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: F6U8GhP1Xk2Vs869lsWfVg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zzWeblamNU2wvV+wLExa3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NIq84x/RxUGbbMMcR4SAnw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: mcAZOB24lk66MUdzH3r8Qw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NGAeHF5aa02zbM2XuPcd7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SVmzH87sHkqur5LNK7Fflw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: d9A8Dt6nf02YaAazgHEBSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "500" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eFfJICwEXUipL7899Gaw5g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OqTDzjZCNEmlhQTEb4cTrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lt5dsuMTCUSdGw/hP9PKJw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W0UHBp5By0uj258LB9Fyyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xDd1fqD3sk+pNFMti13kdw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bLuPemTb90+64cC85ZA1rA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: hHY1DYP8P0Oe5jc5ygNiBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OYep/3oPFEOnN1uG5jjF5A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: CC3892K3okemn4r47CHyEQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: AicPYrEDp06AaqqRPXjYtg== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZnmcNi7tf0+YEg117RsrIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ogEjr2xfPUWEYclYfFQHwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j4Bs4usYq02Q3gzB7579RA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9NYjncqFzEas7zzDBVPfmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R8IZqx1qzke8agQcW2onUw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8HiVb6ULMEiFwVJWcbcGdw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eSuhKxX/1EyF2xYA+QNmCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GaVPXiMhG0q6zlYhQimB6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GEhOc4uPr0yu1CWOZgdYIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6rctFjkGbUiyPi0dsvi1fA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZA6qi8ZO3UiYWybDHru2qg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FGOIvjUbh0iu+5Tvz+Y+5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g+cQVxYHZUe24lrucSZidw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0KPiLHU7dk6WDpWb11ZPOw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: p67LdYlvyUulb0XbsteWug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: guCpMV3pn0eW5+clP+GuwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vbM+Uh9ICEKfIXoWLXsewQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nGctQRxaMkaNPBcxnb249w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QuBmFsBK+kO4tZsRuv4ngQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7B1OvMZnMEWmTEFtezs1SQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CaJql2sb9UGIHtKcs1JATw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dzB1b4BSGkmZ3mVSu0rSJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BLnSXlXezkO4s3kfob3iDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ot2Zx+nQuk+QM0e0eXZTMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jSZNO2anik+J3D0jZPOigw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8X4ZL1QsOEqmjo+RP3X+UQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j7z9NvrU4U+6wAIKZpcGXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FdF0TsyRRUOs6g3NrDyggQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sndh/K1L6kORrXkz+VXCyQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZdTH0CqLnEebNJ8odzTOMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: f2mSvc2mvk+I/ySAKknj7Q== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c0LMjX2jek2e3lN9beQIjw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dynamicText - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1ec5ycU960y7jhq3725WsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: raBW+xO76Uq+xYI+KO1gWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.Session.LastActive - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /zqrYc1V8kuEW4mSnfy5SA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: raGWMWdDjEWLEC30/T/9GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fMbpb860sEqGVgCszRgb4Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: spaP6r2Kq0G+8DAEIUJl8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.Session.LastActive - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: DateTime - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: '{1}' - TranslatableValue: null - TypePointer: - Data: qYMQ/TMgYUGuFnHnQJY8fA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rKzUMYapYUi0KLCkzEeBpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Last active - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Laatst actief - TranslatableValue: null - TypePointer: - Data: cegCtaQOGkuystMHRcHtnw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uX4cQ7MFYECtRzTQltuhrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: BdFrcGlV30uc8zyoxxkz5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: spGTv8e6NUyNds+9ez7DcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pSvC8nWWRk6WLhDutmkWTg== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dateFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pNhw3Jg1FEuLw0pJwD5Nag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BLNfOUEsl0a9IJorcdvzmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JYq8efjno06I7xt1A26uyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: awhvGyKhLkyjhHjjOq57Lg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ndrrTqJ2u0ahUGBfsjevDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OJoDZQZRoUiYtPlx1FIiYA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: u9ijMswza0ScKSue4DLtLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UoDaDxPamUGGrCMg2jPjhw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8fytJegJ7kCDRzYO0vFQqw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: equal - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OgbJmvcydUGybR4q7zpTUg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MaZr+NMyzUOdHbgz835neA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: /DVswscx1ESnPI/BpYz8rg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TVU/wL7By0q47Tv5giuvrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 12hg4ipi9UCTl/o+RVpc0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: x6Nd8ChdZkm0jA04yxO/sg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +FaLrxsNAUa3m07BSK/Nrg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GxT0M5WVQ02NF5sZ6ZusNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cD5vU8RkvUKmqP9wq9dYNA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9KyCsKEZLEm/hxkN7T/Y9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7GqS0C4M+0a3PI/7Va+NBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NDfa8Os6pkakkeiygv54AA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JG4c2tJDR0O8m5l1i++RdQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1dU3JVJOhEuneZh0kqxslQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: OLFDPxauCEmrRqquEAPGTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S1H0T14m8kue2lYJcj6GYw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: GnAn9HBqZUiArU4eympEUA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +9N7WyJ85069ZLNYTjnvnA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: tZCt2V6Wf0WJovtaq4u+RA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: v2pqsjGNnUOt0xJ21RVnow== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZnmcNi7tf0+YEg117RsrIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ogEjr2xfPUWEYclYfFQHwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j4Bs4usYq02Q3gzB7579RA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9NYjncqFzEas7zzDBVPfmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R8IZqx1qzke8agQcW2onUw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8HiVb6ULMEiFwVJWcbcGdw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eSuhKxX/1EyF2xYA+QNmCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GaVPXiMhG0q6zlYhQimB6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GEhOc4uPr0yu1CWOZgdYIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6rctFjkGbUiyPi0dsvi1fA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZA6qi8ZO3UiYWybDHru2qg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FGOIvjUbh0iu+5Tvz+Y+5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g+cQVxYHZUe24lrucSZidw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0KPiLHU7dk6WDpWb11ZPOw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: p67LdYlvyUulb0XbsteWug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: guCpMV3pn0eW5+clP+GuwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vbM+Uh9ICEKfIXoWLXsewQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nGctQRxaMkaNPBcxnb249w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QuBmFsBK+kO4tZsRuv4ngQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7B1OvMZnMEWmTEFtezs1SQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CaJql2sb9UGIHtKcs1JATw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dzB1b4BSGkmZ3mVSu0rSJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BLnSXlXezkO4s3kfob3iDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ot2Zx+nQuk+QM0e0eXZTMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jSZNO2anik+J3D0jZPOigw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8X4ZL1QsOEqmjo+RP3X+UQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j7z9NvrU4U+6wAIKZpcGXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FdF0TsyRRUOs6g3NrDyggQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sndh/K1L6kORrXkz+VXCyQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZdTH0CqLnEebNJ8odzTOMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: f2mSvc2mvk+I/ySAKknj7Q== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c0LMjX2jek2e3lN9beQIjw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: customContent - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1ec5ycU960y7jhq3725WsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: raBW+xO76Uq+xYI+KO1gWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.Session.LastActive - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /zqrYc1V8kuEW4mSnfy5SA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: raGWMWdDjEWLEC30/T/9GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fMbpb860sEqGVgCszRgb4Q== - Subtype: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$DeleteClientAction - ClosePage: false - DisabledDuringExecution: true - SourceVariable: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: spaP6r2Kq0G+8DAEIUJl8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: qYMQ/TMgYUGuFnHnQJY8fA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rKzUMYapYUi0KLCkzEeBpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: ' ' - TranslatableValue: null - TypePointer: - Data: cegCtaQOGkuystMHRcHtnw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uX4cQ7MFYECtRzTQltuhrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: BdFrcGlV30uc8zyoxxkz5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: spGTv8e6NUyNds+9ez7DcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pSvC8nWWRk6WLhDutmkWTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZnmcNi7tf0+YEg117RsrIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ogEjr2xfPUWEYclYfFQHwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j4Bs4usYq02Q3gzB7579RA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9NYjncqFzEas7zzDBVPfmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R8IZqx1qzke8agQcW2onUw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8HiVb6ULMEiFwVJWcbcGdw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eSuhKxX/1EyF2xYA+QNmCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GaVPXiMhG0q6zlYhQimB6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GEhOc4uPr0yu1CWOZgdYIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6rctFjkGbUiyPi0dsvi1fA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZA6qi8ZO3UiYWybDHru2qg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FGOIvjUbh0iu+5Tvz+Y+5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g+cQVxYHZUe24lrucSZidw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0KPiLHU7dk6WDpWb11ZPOw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: p67LdYlvyUulb0XbsteWug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: guCpMV3pn0eW5+clP+GuwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vbM+Uh9ICEKfIXoWLXsewQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFit - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nGctQRxaMkaNPBcxnb249w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QuBmFsBK+kO4tZsRuv4ngQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7B1OvMZnMEWmTEFtezs1SQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CaJql2sb9UGIHtKcs1JATw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dzB1b4BSGkmZ3mVSu0rSJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BLnSXlXezkO4s3kfob3iDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ot2Zx+nQuk+QM0e0eXZTMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jSZNO2anik+J3D0jZPOigw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8X4ZL1QsOEqmjo+RP3X+UQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j7z9NvrU4U+6wAIKZpcGXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FdF0TsyRRUOs6g3NrDyggQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sndh/K1L6kORrXkz+VXCyQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZdTH0CqLnEebNJ8odzTOMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: f2mSvc2mvk+I/ySAKknj7Q== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ncM1/zaYRUmiHXWJ8Y71Dw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5zPkFd3eF0icdFSnKG0lXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dFskwuKsakaFMvRY57gDpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2UNd+Bq+bEeFx7AH3lmxTw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y1Kn/zRqHkq5f6KpZLpHnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iNaWIXILhE2vaj5z6zOKeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JwuxibGfrkq8322EV9smiw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f8Kpqjn/SUKXfCsmG7aXGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7aznVCzhTUyCt6pCHDn2RA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 80DslpWpwU6+1X7Fbq+lmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Vwijvm4lqkSW85+pVItSQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kXAJWvQqjkyqy4Rjhv1urQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nAHvTzPsF0upfHQ93plQ/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Vq4bd+iRV0+Xp16juMCsXA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ogbCy2SsCkGICTfHwh+wMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jq6ZxuDgs0WuVhK8OV/XJg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zsnVRTUTqkS+3VAi9FzBOg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ViTv3lrXpUKlPeCeF9TCcw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6NW+3jd8lUOuuIPQdhzjtw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: t1zQ2+j1N0SRHwbe/t6Hzg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: b5bNBRcsbUyauElZHGSHMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S9l42cmG4ESE/oCW9V2QDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iwLADZcPkUmatrWrV4p5Lg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SciSH9r2Lk6Nnyg7720chw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: u/2e3TUOcUu+y61FCwdbjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 69P7uwvZHUG0HUSY+AFQ4Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: d/k7PaQs4UWkB8GFgL1ppA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: k38mGyn+vUm0IvqXq8SPYw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: E4xZEImF/ke1gaUYwI58Sw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EozwJ/qUQkm9+KlehkObWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cMfcWkOjtk65g02wiJgPXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eOkS7L/+a0mtKljZjzf7WA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: m5KFs7DsqkaVRPg9ridf9Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HkvJWBqZQEOjYQMxqYOwMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dE6USINwmk+esonNStrMJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PmzgsGUFsUm0pijNCbFG1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yXLvzksiOkWDnIvZsuluMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dqycSyFAtkStNVsebpbupw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 9Qjo969FukeorB3QAAeQLA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dST1VFFYRUOiFbmhYBXT4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: S3Sso0nq5kqVp7HLXFzu+A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mrVf6nlDVE2wQs15O46/Jw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: M6XE46B6xkeKh1JayQ1AVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LX6f65AccEaex1i/6S/lpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: 8LU/KcUjIkGvtG2plxXfzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aaR5Qc/eVEWgBxOhKRdIxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UQjm0gsZTkaLAxDhpP4ZTQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: s4LyQqLTGUad+iWxC1AGnw== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -MarkAsUsed: false -Name: ActiveSessions -Parameters: null -PopupCloseAction: "" -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Active Sessions - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Actieve sessies -Url: "" diff --git a/resources/App/modelsource/Administration/System Administration/RuntimeInstances.Forms$Page.yaml b/resources/App/modelsource/Administration/System Administration/RuntimeInstances.Forms$Page.yaml deleted file mode 100644 index 2cbe401..0000000 --- a/resources/App/modelsource/Administration/System Administration/RuntimeInstances.Forms$Page.yaml +++ /dev/null @@ -1,4360 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: -- Administration.Administrator -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: 'pageheader pageheader-fullwidth ' - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Runtime Instances - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Runtime-instanties - Name: label1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H2 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dataGrid21 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xgeZPaGKFUaglc1XJjs9QQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gSCufO18WkqSXIrn27UmSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tneJZad7U0mrXWSpP9x+fQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.XASInstance - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.XASInstance.XASId - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iAsQPMde90e5+/ydlTtt5g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 74QbAfVdpECtkW2JB6i7Kg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Bs5/1Af0DUyTzPzF9HtFYQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2MH0qUki2UuxZfEWHOBN6Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LBYZRhwsdUWv14YRG79qWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6BsZp99hUkaUTTL2wWAeWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2frsc3tg0USNH9muKrVfrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kuyeogjN5k2x6XO2tlq1CA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VDDN76LUR0yixi7hwrV77A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KdTSl9NEPkimzgDIvvRSgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uY99OHyQ1kKm9XcWqOSwWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gkEbaFwIVUWZGaW84EfuxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hZY6o7ZcMkqcCkNoCJrTiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.XASInstance.XASId - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Q4oKgrvoKEO8oH3PmmX8Ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OGzx7B0YK0CKZaDrB7jwPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pz2kgSTicEO6Xh5t/ajLSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +h/nhiVGAEGN/7IEG4orXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: KFk14M1L0UOvxtDlQoyfJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wNJ+yrTCqkCtZGB5BQvfiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Runtime ID - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Runtime ID - TranslatableValue: null - TypePointer: - Data: Jyfor2ytCU2HsD3Ppy7sfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UZgiOclQpE+i002LLAy+QQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: G/8xZGTlQUWpB/RySEz5Ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1JSmm+Cs7Eq0qWV+M2TXlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nED+Kq1EO0uYCADQT4o4jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O4r5jm202Ey1PbbvcgvOFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5xY50cz65U2KsoMlebGzWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5+gE5j9TpkKgC8wveRvbSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VVuwoupUrEKJloib9iIugg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PuZH8JT5pkiYub82v/HRLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0r8uL29m3kCRPusiQFDe2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fogR6VMfhEGniJd7Pk+iQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xVzyk+I9g0a4ukSOyU+ZeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7nDuqq4FEEa1Y1jmLgR/6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XMmUIqjTBEe7jUCcCgtYeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FBHyI+CulkKcudvYui4pVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mVcJ8qWDUE2IBVHlbMi5nQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ARgopHguvEaasS7Ruk9QRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eo/aV6AohUyvorY0HeYSxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cPN17likjUyoqnSJ+bStDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SZCbz2defESMJcbG6n5Rgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: clRp/zOoH0KzjKyvY2Qkvw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WgLyLuvyJECmqO9BUpNpaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fP7t+9lUtEiM+J2FodbGkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QkLbPePZtU6D9tAsah3/0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nk0DoJVbikWH0uXJWWAI7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QCU6Ac5pwEyc1ODaL/eRhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ryOiWkFB6kaUgMMgns4c/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FCv8UE4XVEG7hS/5kpWCqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IX/aEKEDWU2NjhO19boBMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W4NKAShCBkeKmEUDbB6ZdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UxRF+QQJjUCXJvp7VNhUsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: swL5s5LS00uVrdz2hHbvSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vf3PWgwNh0C3owYtmaYE3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xftErjOF6kK61KqiKKoA1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: DDkKCVEj40WMfLfqFESRCA== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uY99OHyQ1kKm9XcWqOSwWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dynamicText - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gkEbaFwIVUWZGaW84EfuxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hZY6o7ZcMkqcCkNoCJrTiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.XASInstance.createdDate - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Q4oKgrvoKEO8oH3PmmX8Ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OGzx7B0YK0CKZaDrB7jwPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pz2kgSTicEO6Xh5t/ajLSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +h/nhiVGAEGN/7IEG4orXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.XASInstance.createdDate - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: DateTime - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - TranslatableValue: null - TypePointer: - Data: KFk14M1L0UOvxtDlQoyfJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wNJ+yrTCqkCtZGB5BQvfiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Created - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Aangemaakt - TranslatableValue: null - TypePointer: - Data: Jyfor2ytCU2HsD3Ppy7sfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UZgiOclQpE+i002LLAy+QQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: G/8xZGTlQUWpB/RySEz5Ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1JSmm+Cs7Eq0qWV+M2TXlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nED+Kq1EO0uYCADQT4o4jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O4r5jm202Ey1PbbvcgvOFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5xY50cz65U2KsoMlebGzWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5+gE5j9TpkKgC8wveRvbSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VVuwoupUrEKJloib9iIugg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PuZH8JT5pkiYub82v/HRLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0r8uL29m3kCRPusiQFDe2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fogR6VMfhEGniJd7Pk+iQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xVzyk+I9g0a4ukSOyU+ZeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7nDuqq4FEEa1Y1jmLgR/6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XMmUIqjTBEe7jUCcCgtYeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FBHyI+CulkKcudvYui4pVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mVcJ8qWDUE2IBVHlbMi5nQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ARgopHguvEaasS7Ruk9QRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eo/aV6AohUyvorY0HeYSxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cPN17likjUyoqnSJ+bStDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SZCbz2defESMJcbG6n5Rgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: clRp/zOoH0KzjKyvY2Qkvw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WgLyLuvyJECmqO9BUpNpaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fP7t+9lUtEiM+J2FodbGkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QkLbPePZtU6D9tAsah3/0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nk0DoJVbikWH0uXJWWAI7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QCU6Ac5pwEyc1ODaL/eRhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ryOiWkFB6kaUgMMgns4c/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FCv8UE4XVEG7hS/5kpWCqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IX/aEKEDWU2NjhO19boBMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W4NKAShCBkeKmEUDbB6ZdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UxRF+QQJjUCXJvp7VNhUsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: swL5s5LS00uVrdz2hHbvSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vf3PWgwNh0C3owYtmaYE3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xftErjOF6kK61KqiKKoA1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: DDkKCVEj40WMfLfqFESRCA== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uY99OHyQ1kKm9XcWqOSwWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gkEbaFwIVUWZGaW84EfuxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hZY6o7ZcMkqcCkNoCJrTiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.XASInstance.AllowedNumberOfConcurrentUsers - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Q4oKgrvoKEO8oH3PmmX8Ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OGzx7B0YK0CKZaDrB7jwPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pz2kgSTicEO6Xh5t/ajLSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +h/nhiVGAEGN/7IEG4orXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: KFk14M1L0UOvxtDlQoyfJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wNJ+yrTCqkCtZGB5BQvfiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Allowed concurrent users - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Toegestaan aantal gelijktijdige gebruikers - TranslatableValue: null - TypePointer: - Data: Jyfor2ytCU2HsD3Ppy7sfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UZgiOclQpE+i002LLAy+QQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: G/8xZGTlQUWpB/RySEz5Ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1JSmm+Cs7Eq0qWV+M2TXlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nED+Kq1EO0uYCADQT4o4jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O4r5jm202Ey1PbbvcgvOFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5xY50cz65U2KsoMlebGzWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5+gE5j9TpkKgC8wveRvbSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VVuwoupUrEKJloib9iIugg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PuZH8JT5pkiYub82v/HRLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0r8uL29m3kCRPusiQFDe2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fogR6VMfhEGniJd7Pk+iQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xVzyk+I9g0a4ukSOyU+ZeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7nDuqq4FEEa1Y1jmLgR/6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XMmUIqjTBEe7jUCcCgtYeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FBHyI+CulkKcudvYui4pVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mVcJ8qWDUE2IBVHlbMi5nQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ARgopHguvEaasS7Ruk9QRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eo/aV6AohUyvorY0HeYSxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cPN17likjUyoqnSJ+bStDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SZCbz2defESMJcbG6n5Rgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: clRp/zOoH0KzjKyvY2Qkvw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WgLyLuvyJECmqO9BUpNpaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fP7t+9lUtEiM+J2FodbGkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QkLbPePZtU6D9tAsah3/0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nk0DoJVbikWH0uXJWWAI7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QCU6Ac5pwEyc1ODaL/eRhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ryOiWkFB6kaUgMMgns4c/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FCv8UE4XVEG7hS/5kpWCqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IX/aEKEDWU2NjhO19boBMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W4NKAShCBkeKmEUDbB6ZdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UxRF+QQJjUCXJvp7VNhUsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: swL5s5LS00uVrdz2hHbvSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vf3PWgwNh0C3owYtmaYE3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xftErjOF6kK61KqiKKoA1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: DDkKCVEj40WMfLfqFESRCA== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uY99OHyQ1kKm9XcWqOSwWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gkEbaFwIVUWZGaW84EfuxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hZY6o7ZcMkqcCkNoCJrTiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.XASInstance.PartnerName - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Q4oKgrvoKEO8oH3PmmX8Ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OGzx7B0YK0CKZaDrB7jwPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pz2kgSTicEO6Xh5t/ajLSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +h/nhiVGAEGN/7IEG4orXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: KFk14M1L0UOvxtDlQoyfJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wNJ+yrTCqkCtZGB5BQvfiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Partner - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Partner - TranslatableValue: null - TypePointer: - Data: Jyfor2ytCU2HsD3Ppy7sfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UZgiOclQpE+i002LLAy+QQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: G/8xZGTlQUWpB/RySEz5Ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1JSmm+Cs7Eq0qWV+M2TXlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nED+Kq1EO0uYCADQT4o4jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O4r5jm202Ey1PbbvcgvOFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5xY50cz65U2KsoMlebGzWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5+gE5j9TpkKgC8wveRvbSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VVuwoupUrEKJloib9iIugg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PuZH8JT5pkiYub82v/HRLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0r8uL29m3kCRPusiQFDe2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fogR6VMfhEGniJd7Pk+iQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xVzyk+I9g0a4ukSOyU+ZeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7nDuqq4FEEa1Y1jmLgR/6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XMmUIqjTBEe7jUCcCgtYeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FBHyI+CulkKcudvYui4pVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mVcJ8qWDUE2IBVHlbMi5nQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ARgopHguvEaasS7Ruk9QRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eo/aV6AohUyvorY0HeYSxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cPN17likjUyoqnSJ+bStDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SZCbz2defESMJcbG6n5Rgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: clRp/zOoH0KzjKyvY2Qkvw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WgLyLuvyJECmqO9BUpNpaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fP7t+9lUtEiM+J2FodbGkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QkLbPePZtU6D9tAsah3/0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nk0DoJVbikWH0uXJWWAI7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QCU6Ac5pwEyc1ODaL/eRhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ryOiWkFB6kaUgMMgns4c/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FCv8UE4XVEG7hS/5kpWCqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IX/aEKEDWU2NjhO19boBMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W4NKAShCBkeKmEUDbB6ZdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UxRF+QQJjUCXJvp7VNhUsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: swL5s5LS00uVrdz2hHbvSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vf3PWgwNh0C3owYtmaYE3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xftErjOF6kK61KqiKKoA1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: DDkKCVEj40WMfLfqFESRCA== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uY99OHyQ1kKm9XcWqOSwWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gkEbaFwIVUWZGaW84EfuxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hZY6o7ZcMkqcCkNoCJrTiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.XASInstance.CustomerName - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Q4oKgrvoKEO8oH3PmmX8Ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OGzx7B0YK0CKZaDrB7jwPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pz2kgSTicEO6Xh5t/ajLSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +h/nhiVGAEGN/7IEG4orXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: KFk14M1L0UOvxtDlQoyfJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wNJ+yrTCqkCtZGB5BQvfiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Customer - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Klant - TranslatableValue: null - TypePointer: - Data: Jyfor2ytCU2HsD3Ppy7sfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UZgiOclQpE+i002LLAy+QQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: G/8xZGTlQUWpB/RySEz5Ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1JSmm+Cs7Eq0qWV+M2TXlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nED+Kq1EO0uYCADQT4o4jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O4r5jm202Ey1PbbvcgvOFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5xY50cz65U2KsoMlebGzWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5+gE5j9TpkKgC8wveRvbSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VVuwoupUrEKJloib9iIugg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PuZH8JT5pkiYub82v/HRLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0r8uL29m3kCRPusiQFDe2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fogR6VMfhEGniJd7Pk+iQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xVzyk+I9g0a4ukSOyU+ZeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7nDuqq4FEEa1Y1jmLgR/6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XMmUIqjTBEe7jUCcCgtYeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FBHyI+CulkKcudvYui4pVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mVcJ8qWDUE2IBVHlbMi5nQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ARgopHguvEaasS7Ruk9QRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eo/aV6AohUyvorY0HeYSxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cPN17likjUyoqnSJ+bStDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SZCbz2defESMJcbG6n5Rgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: clRp/zOoH0KzjKyvY2Qkvw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WgLyLuvyJECmqO9BUpNpaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fP7t+9lUtEiM+J2FodbGkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QkLbPePZtU6D9tAsah3/0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nk0DoJVbikWH0uXJWWAI7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QCU6Ac5pwEyc1ODaL/eRhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ryOiWkFB6kaUgMMgns4c/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FCv8UE4XVEG7hS/5kpWCqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IX/aEKEDWU2NjhO19boBMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W4NKAShCBkeKmEUDbB6ZdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UxRF+QQJjUCXJvp7VNhUsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: swL5s5LS00uVrdz2hHbvSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vf3PWgwNh0C3owYtmaYE3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xftErjOF6kK61KqiKKoA1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: DDkKCVEj40WMfLfqFESRCA== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BJucjGLGzEmWW6WheBcJvA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eh/03Nm7HE2KBew+q0ZAlw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Myx16QdDhkaENHZm5QH9eg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HMNzdtb+7Eq2RUNfHn1KQg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 57VTA87rUkecdKGXvfnAFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GdeKoNWWnUKvYXWuqj2f+g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ipD0UBv2vESmnr4lm3fo5w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +xrAK+UfaEm67CdyFV46Nw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: InmUurqNfkSkjPsT8N3SeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heBdAQgkuk2uhhdgBzNZFA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EnlnXa4F00ad0HoOmQNIow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CJxaw7WCCUeaxem7J6y6pA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 45mSQFzW5k2K+hiiQNyeAw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jPXFLm5OEEWSx4icVrj/kg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: L2NpP4kEK0qOlbe8DDJLRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q248wlVo5kaBByyNtr3ILQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OJ7ksP6OM0uAG+H0cTNngw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uFwaoomGx02IsqRcpXv7lw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QyB89dOn7kKW6oSACb3guA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NurWo2rB70S2g+/Sg+awAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a5QZ0unA+0akC0kHjQuQuQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ai0y8rBRxU6RpJG1iZw7yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 83fmt0XAW06sAtUFPFU59A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KZV8XgQ9t0+XWVwhNSEjzg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 36i7uvVI8kyhvy7613K1Mw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZG4Rd2Wrf0aK9xEoiq3ZcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: idkseaPCWEWuTp9HdyPFJQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Rjag31m2Dk2SdJS9GmiVnA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ne7vcn4UDkWEMgvRTthvrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RI4NqsWFVEeg8nIKv7qc5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iNXDdFJDE0enpEYaQAsLFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LPi+vGsT9UKWP1fg8aDQyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QLZjq0xTF0GGpGm8sg70eQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZR3ZTqRhUUSgMFACPnlhZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JItjh4E/NkCbTBdKHiOvBQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ghe+jqk5WEaEfkIZMe3y+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: C2CXb64kVEywPSjWrJYmjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MoFnEMi4R0q23N+iHcKkDA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: N6HIfUJdVk2mm+1eBavPtQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vs3B4Ztkjkm24AVwA2zMQg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: BQeHvYlbE0Waw5Zi1RxNXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q8fOdILl7Eezi7155QSY8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: 8jrgg6RMNUaSpOyhgHhglQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J+fbhClqaESoweMLqnIFZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: NxFqc0rNZEytKTcypDpLgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cnqndgLacUujw6yX7Z0bHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pZuAuUiaVkm3ps1BVgBprw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: Cm4YT3MCW0eTLVWSCC0GFA== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -MarkAsUsed: false -Name: RuntimeInstances -Parameters: null -PopupCloseAction: "" -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Runtime Instances - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Runtime-instanties -Url: "" diff --git a/resources/App/modelsource/Administration/System Administration/ScheduledEvents.Forms$Page.yaml b/resources/App/modelsource/Administration/System Administration/ScheduledEvents.Forms$Page.yaml deleted file mode 100644 index 759cf11..0000000 --- a/resources/App/modelsource/Administration/System Administration/ScheduledEvents.Forms$Page.yaml +++ /dev/null @@ -1,6402 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: -- Administration.Administrator -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: 'pageheader pageheader-fullwidth ' - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Scheduled Events - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Geplande gebeurtenissen - Name: label1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H2 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dataGrid21 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: slzWaWHB6Ue19sr4TAt2RA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SmyUZHzlVUejYVlcFN0C1w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: a3qFU5jVcU646gCpZFzjPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.ScheduledEventInformation - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.StartTime - EntityRef: null - SortOrder: Descending - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MhHZnvg7YEuDlS8i0bWoCQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lWCmK/7pxEK4dgOXRSj8qA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 79on0vvteEm+Het3/yfMxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ob5XqVc4fEK5L46XKRofpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xoEP5htb00OZc/GUSN6CYg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VyxvPrktw06nlWvxlKCGig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: soXTwcI1h0yxAO2Xbo/UQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4W0b4ROMTE+n5wob8AqxXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /Foi+K/joUWmwcJLEZx9kA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qk1Xg+PNK0C6mZR0gS/NJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7leeSiKtz0usijcTSarNpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O6QRvfoF5k2rZg0WmRvAoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hNkOh7GjrU6jpHEoMIupWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.Name - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: svUVrjFJH0yFesBfA8dcmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: koGQSUGyBkK13GNmBEJJyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fQFcxJqeuU+bhhJR7ybxAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ow1m/ZmeX0GInJPml9XRkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 1cKatGMD2EuJyfnHdhPe+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Xnuc+oxI6U6KvGNVYdZ5Zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Naam - TranslatableValue: null - TypePointer: - Data: wWVgpjDaIkeNnXZxIge95g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0NN1xTh6GEWxyGb/edfpMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: taVtyhNI10GY/Y+3pWmoDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SIsHkTrBfE+77iQOeSvE7A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOE3h+meckeuQMSBQCfnaA== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: textFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mrbVQyA8ik2zbnETsDkykg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ziM6Yl0Psk6H0Au7SDj3BA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +/h8KyLvd0e5Nj4U/EMocw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JhGPykmGmkOvC3TzdN3EjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /2u5dfAxuUiWrTqciCC2rg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O/aBg3EpYk6HAIS0/L6uSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25ESv9Uj5Eyq6SFQ+UqOeA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: /bJRXEUM1UenW5tM7Cwgag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EsnWohcBokWuGY4leTg00Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: q4k8/93t0E6RnsmOyqTg5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jdAhTn+zsUuVYHVol0ex3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "500" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ESKi/gHDJE2vFWCpZbca0Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QJGA/nKn1kGE5JXG/201Sw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gN2K9xv9C0OQutrCZHzqxg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XvYo2BsfA0+CPZdr5gQ58g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Aik6M8gSB0qp+i/UisY4Mw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KiFIoTUP/0eE3pznhJ84cQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: jsXu9q411USF8EKPZ+9B2w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5qK2BxjdGkenoBAFeEvswg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: p5+c2hftHE+Mh/1wbHrDNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: t83a4sx750+58rDjuoJsIg== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gyT0AgsWZkyGiXLvuDx9ag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jdi5LBOVrESStbscw7P8TQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2zXT+QgcF0u9hGgLu8+txA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aB5hD5vDKUeaVirP93YKaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VCP9e5DNj0uJEuHOiaSfWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UW3naVGmb0WE4exjssBUXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DsJGAU5Rrky1mj6/UGhYPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hRWB2Od7oUmwLTQFxeS33g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cJ6wGHbTzUeLt17dkoXpRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RJSb/8h7MUqsW83/Cl0Fng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dz3OVclzVk+KBEHi7wiCRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fsKlqBmnWUWR/Q9Mp5Pxig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5uWcuknZBU2rXjWAYVcckw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ovBGVZD69kG2rBfsZ+9vIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eJNlfjKnU2puJ5tmRn7zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ejqWck3rUkSQwYuqSamtIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xrf+Mt8CN0OxfYBrRBecfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOboUwrz30SYmIi0eSQcww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zyo/RTjBIEKJBU5iy2LpNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yMHMesVlnUmDSE52SLDtQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mkTCoFKEt0eZt6SP1SSuSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o8Hy3lBA9kGkO+/qyc/EbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kvUNwRK8Q0yUpQ2x9x8DfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4d6O0UlMU06QrG7VsNAT+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QrXqS14eU0mr9Is5k14fzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 311N4mbLZ0m5dcNCugMREw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KpcrDV1N7UaClje/+R016A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GwIAfQ6pOUK0BHtyzXhiig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mP7+BfJWl066bZkkS8Rf5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: asstNbX3fUGFAkn4toHLpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 967sx1VznEink8YV5uTc7A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7leeSiKtz0usijcTSarNpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O6QRvfoF5k2rZg0WmRvAoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hNkOh7GjrU6jpHEoMIupWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.Description - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: svUVrjFJH0yFesBfA8dcmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: koGQSUGyBkK13GNmBEJJyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fQFcxJqeuU+bhhJR7ybxAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ow1m/ZmeX0GInJPml9XRkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 1cKatGMD2EuJyfnHdhPe+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Xnuc+oxI6U6KvGNVYdZ5Zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Description - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Omschrijving - TranslatableValue: null - TypePointer: - Data: wWVgpjDaIkeNnXZxIge95g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0NN1xTh6GEWxyGb/edfpMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: taVtyhNI10GY/Y+3pWmoDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SIsHkTrBfE+77iQOeSvE7A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOE3h+meckeuQMSBQCfnaA== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: textFilter2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: m96bI9JDqUilK4V6rSm16A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: f4tL+8DyU0Czq28VQf/t7Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8TcEmHW0LU+UPRbOpTvjoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iX7Q+4ObDUW5Z0lSoOTlGg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TVWKRWdvc0iekC3nkshMjg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4zrN1XPyKUOD4hvjASX3ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eZc9v2/ogkGZwc/Y+DnoAA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: lvufb6odmEO4nImiknZd2w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +tkEABDkSkKgseDWcqVsTQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rXeZ7jysmkWxA3jLHPi/qQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TVjbdGt6tE69JxN0OSiBng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "500" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9cg6DaNQpkiu3lthF8ZD3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B2suEmXCnE6YO2DhQTU6SQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: S9z2iw5OwkONsOGcY0zqsA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LsrWCWLce0uw5TTiafdrqg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BknPT5rXBkqdCXyBGKD8LQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bus4L2zPWk6u1XmVoyzFMQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: qcobiZHUsEye19yfFFDe6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aHhmxKPHs0ugrNzM9pE2vA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: io5PT7MiJE2N5HAQPPzc8A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: Yk7+Kk2ZWkS4qlbK/E/DFA== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gyT0AgsWZkyGiXLvuDx9ag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jdi5LBOVrESStbscw7P8TQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2zXT+QgcF0u9hGgLu8+txA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aB5hD5vDKUeaVirP93YKaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VCP9e5DNj0uJEuHOiaSfWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UW3naVGmb0WE4exjssBUXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DsJGAU5Rrky1mj6/UGhYPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hRWB2Od7oUmwLTQFxeS33g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cJ6wGHbTzUeLt17dkoXpRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RJSb/8h7MUqsW83/Cl0Fng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dz3OVclzVk+KBEHi7wiCRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fsKlqBmnWUWR/Q9Mp5Pxig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5uWcuknZBU2rXjWAYVcckw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ovBGVZD69kG2rBfsZ+9vIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eJNlfjKnU2puJ5tmRn7zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ejqWck3rUkSQwYuqSamtIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xrf+Mt8CN0OxfYBrRBecfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOboUwrz30SYmIi0eSQcww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zyo/RTjBIEKJBU5iy2LpNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yMHMesVlnUmDSE52SLDtQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mkTCoFKEt0eZt6SP1SSuSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o8Hy3lBA9kGkO+/qyc/EbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kvUNwRK8Q0yUpQ2x9x8DfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4d6O0UlMU06QrG7VsNAT+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QrXqS14eU0mr9Is5k14fzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 311N4mbLZ0m5dcNCugMREw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KpcrDV1N7UaClje/+R016A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GwIAfQ6pOUK0BHtyzXhiig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mP7+BfJWl066bZkkS8Rf5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: asstNbX3fUGFAkn4toHLpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 967sx1VznEink8YV5uTc7A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7leeSiKtz0usijcTSarNpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dynamicText - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O6QRvfoF5k2rZg0WmRvAoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hNkOh7GjrU6jpHEoMIupWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.StartTime - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: svUVrjFJH0yFesBfA8dcmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: koGQSUGyBkK13GNmBEJJyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fQFcxJqeuU+bhhJR7ybxAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ow1m/ZmeX0GInJPml9XRkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.StartTime - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: DateTime - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: '{1}' - TranslatableValue: null - TypePointer: - Data: 1cKatGMD2EuJyfnHdhPe+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Xnuc+oxI6U6KvGNVYdZ5Zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Start time - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Starttijd - TranslatableValue: null - TypePointer: - Data: wWVgpjDaIkeNnXZxIge95g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0NN1xTh6GEWxyGb/edfpMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: taVtyhNI10GY/Y+3pWmoDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SIsHkTrBfE+77iQOeSvE7A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOE3h+meckeuQMSBQCfnaA== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dateFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dzBQg7PEA0a7bmQ/efBItg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IsguuMBFhU2eDNsCt+y9mQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Zu0mqSwLeUepRTUS5T2a/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LHYG/cyJa0mPFSFLkE8DEw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bC4Ygq0I/kmgWtyA000B6g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UJMh4FbnAkmQQAKtsA3n2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: v51i3Oue/E6qJUhbsjlxWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qhhW3cJwaEOBX/kD0SANyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y0iIn6uIXUmrnUJXyjhkXg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: equal - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: r4ByZTu3gkebhlJoZSo6xQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7GH4sSh5qkqwOn7Iz8bDvw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: NpVVLq8fMkawn4Nf2j2z9Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nvLHJ3qlpEKlJPtUEzTLkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: R6D/nCzcZku6+QkxLQeHXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5OSbmb+y2Uixpykrpu7r/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Fxte3j0FOkaWHkzOH0w0pQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6zf+c+Hz20W3PgUDG0hxMg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0w/sWnTF1Ee9PRd3o4t9MA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xXYaEexFx0uOr17i28Pxjw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FLd6qr2uiU+n/nH2QTyzYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nuTl8IPjGkyNPbRizgDEsg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M3sXLAmqNkiUmpncE9KkkQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P4HbWD8Vak6HydX88WNHEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: fmN4FrxX+UGDnLPyqumyMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mV88wxYpekC/mA5+GrgVRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: /XUpgNlKmUOfMHe+6wdYdQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wDx6TdYtl0OFeBu/CTMhTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: F/HZ1pECGUC5Io5rTuXkSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: p8nA2qbNCUqJ+SEzXoa3lw== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gyT0AgsWZkyGiXLvuDx9ag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jdi5LBOVrESStbscw7P8TQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2zXT+QgcF0u9hGgLu8+txA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aB5hD5vDKUeaVirP93YKaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VCP9e5DNj0uJEuHOiaSfWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UW3naVGmb0WE4exjssBUXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DsJGAU5Rrky1mj6/UGhYPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hRWB2Od7oUmwLTQFxeS33g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cJ6wGHbTzUeLt17dkoXpRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RJSb/8h7MUqsW83/Cl0Fng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dz3OVclzVk+KBEHi7wiCRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fsKlqBmnWUWR/Q9Mp5Pxig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5uWcuknZBU2rXjWAYVcckw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ovBGVZD69kG2rBfsZ+9vIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eJNlfjKnU2puJ5tmRn7zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ejqWck3rUkSQwYuqSamtIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xrf+Mt8CN0OxfYBrRBecfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOboUwrz30SYmIi0eSQcww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zyo/RTjBIEKJBU5iy2LpNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yMHMesVlnUmDSE52SLDtQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mkTCoFKEt0eZt6SP1SSuSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o8Hy3lBA9kGkO+/qyc/EbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kvUNwRK8Q0yUpQ2x9x8DfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4d6O0UlMU06QrG7VsNAT+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QrXqS14eU0mr9Is5k14fzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 311N4mbLZ0m5dcNCugMREw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KpcrDV1N7UaClje/+R016A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GwIAfQ6pOUK0BHtyzXhiig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mP7+BfJWl066bZkkS8Rf5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: asstNbX3fUGFAkn4toHLpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 967sx1VznEink8YV5uTc7A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7leeSiKtz0usijcTSarNpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: customContent - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O6QRvfoF5k2rZg0WmRvAoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hNkOh7GjrU6jpHEoMIupWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.Status - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: svUVrjFJH0yFesBfA8dcmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: koGQSUGyBkK13GNmBEJJyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fQFcxJqeuU+bhhJR7ybxAg== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: badge label-primary - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: System.ScheduledEventInformation.Status - Conditions: - - $Type: Enumerations$Condition - AttributeValue: Running - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: Completed - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Error - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Stopped - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: (empty) - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Running - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Bezig - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: badge label-success - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: System.ScheduledEventInformation.Status - Conditions: - - $Type: Enumerations$Condition - AttributeValue: Running - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Completed - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: Error - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Stopped - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: (empty) - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Completed - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Voltooid - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: badge label-danger - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: System.ScheduledEventInformation.Status - Conditions: - - $Type: Enumerations$Condition - AttributeValue: Running - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Completed - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Error - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: Stopped - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: (empty) - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Error - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Fout - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: badge label-secondary - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: System.ScheduledEventInformation.Status - Conditions: - - $Type: Enumerations$Condition - AttributeValue: Running - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Completed - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Error - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: Stopped - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: (empty) - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Stopped - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gestopt - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ow1m/ZmeX0GInJPml9XRkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 1cKatGMD2EuJyfnHdhPe+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Xnuc+oxI6U6KvGNVYdZ5Zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Status - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Status - TranslatableValue: null - TypePointer: - Data: wWVgpjDaIkeNnXZxIge95g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0NN1xTh6GEWxyGb/edfpMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: taVtyhNI10GY/Y+3pWmoDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SIsHkTrBfE+77iQOeSvE7A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOE3h+meckeuQMSBQCfnaA== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: drop_downFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Bn1GQXqjPUqfQPMNPvfROA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +UxNDNazek21Cfjyvtr7Rg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7ImWFfnM7USQ2j1czcG/jQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: t5h17TEuKEa4I5KvLpLvqg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FsCU1R51rkaCGCmN/4g0mg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TGLTPf5B3U+0SJPX9yfnQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hXH3yDC8/UG3WqjfQsHpPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pA+6H6WeVkqTI+VEz9ThQw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: a5m/IUTiP0+4SVc2VC6NHw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: m4tSAIBGVE6t0TyTcTDNgQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FmNvp/8Xy0izMFw5l1mpRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kjTFh1q2tkOqy8nDkq9OkQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xtJNTfWXJkCdBTH78GnIZA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: acuAbbuH40mYiHfEd17DDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FN+d+UXISUKSnYLesDT9Fg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MWdasGLinUSX2OAEg4RocQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Bb0MhUMu0k+ukIIdYz0OnQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: j8Ov1arJm0qKi3Ho4Tt+ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 2JFVBnXhhkOmFAwrlHzFrg== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gyT0AgsWZkyGiXLvuDx9ag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jdi5LBOVrESStbscw7P8TQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2zXT+QgcF0u9hGgLu8+txA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aB5hD5vDKUeaVirP93YKaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VCP9e5DNj0uJEuHOiaSfWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UW3naVGmb0WE4exjssBUXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DsJGAU5Rrky1mj6/UGhYPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hRWB2Od7oUmwLTQFxeS33g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cJ6wGHbTzUeLt17dkoXpRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RJSb/8h7MUqsW83/Cl0Fng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dz3OVclzVk+KBEHi7wiCRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fsKlqBmnWUWR/Q9Mp5Pxig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5uWcuknZBU2rXjWAYVcckw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ovBGVZD69kG2rBfsZ+9vIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eJNlfjKnU2puJ5tmRn7zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ejqWck3rUkSQwYuqSamtIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xrf+Mt8CN0OxfYBrRBecfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOboUwrz30SYmIi0eSQcww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zyo/RTjBIEKJBU5iy2LpNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yMHMesVlnUmDSE52SLDtQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mkTCoFKEt0eZt6SP1SSuSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o8Hy3lBA9kGkO+/qyc/EbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kvUNwRK8Q0yUpQ2x9x8DfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4d6O0UlMU06QrG7VsNAT+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QrXqS14eU0mr9Is5k14fzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 311N4mbLZ0m5dcNCugMREw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KpcrDV1N7UaClje/+R016A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GwIAfQ6pOUK0BHtyzXhiig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mP7+BfJWl066bZkkS8Rf5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: asstNbX3fUGFAkn4toHLpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 967sx1VznEink8YV5uTc7A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7leeSiKtz0usijcTSarNpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dynamicText - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O6QRvfoF5k2rZg0WmRvAoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hNkOh7GjrU6jpHEoMIupWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.EndTime - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: svUVrjFJH0yFesBfA8dcmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: koGQSUGyBkK13GNmBEJJyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fQFcxJqeuU+bhhJR7ybxAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ow1m/ZmeX0GInJPml9XRkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.ScheduledEventInformation.EndTime - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: DateTime - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: '{1}' - TranslatableValue: null - TypePointer: - Data: 1cKatGMD2EuJyfnHdhPe+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Xnuc+oxI6U6KvGNVYdZ5Zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: End time - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Eindtijd - TranslatableValue: null - TypePointer: - Data: wWVgpjDaIkeNnXZxIge95g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0NN1xTh6GEWxyGb/edfpMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: taVtyhNI10GY/Y+3pWmoDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SIsHkTrBfE+77iQOeSvE7A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOE3h+meckeuQMSBQCfnaA== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dateFilter2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HIvnh1mzkEOXiZoMY3JUkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +jO/SbR+JkmgjJUg3tCM+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mNbhj8cvH0ioPMMuzRrrTw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: q/bvJ5o2m0uxsxelFPyYTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jkwIQ2eObUyoyOY0j8SF+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NjkPyM8doUSgy0S5u8T/QQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JAVk+mMTOkakcpWbqpi7jw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4dOKDYMp/EegAb+gI1NFSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: orCoVsoBmECQ4dmNksyonA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: equal - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0HRCxLJ/QECcH2OxX4bkbQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yQTmyMTZZUCPa1CZRp+fcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 87V244RbA0Cw/UbevRisag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iXpMzola00OwQTBHaEMJBg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Fog7e6T1pUKRMIsC0oit3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: T2ggepYsW02iChtzITvBiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UWCvQCwavUew3Uqoaytt+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YLsPuJR0DEKfFlWDGM6pGg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CZS0yGAlCk+1GIVtvypZyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jyYxG/kR3Eixqpg6xJj0fg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FtG7/U35oEudBMNVozyBPg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HLoz5fUjnk2QhsxBybJU0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EvmGJzaS20akvysTMO7pDA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LsefrQXcwUGZt+GgPQZk0A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 4OsTFVYdDUigVJVmMcgHGg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lSv0q4b63kKcRG16lohBIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: FmRFxAyAyk26UMBWoelpbw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wslMa9u26kSpRd9pI84+fQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: WoL4J+AcPkeSIjOuTIiJ/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: WOibdAba2EuXYNvQDBN6+g== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gyT0AgsWZkyGiXLvuDx9ag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jdi5LBOVrESStbscw7P8TQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2zXT+QgcF0u9hGgLu8+txA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aB5hD5vDKUeaVirP93YKaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VCP9e5DNj0uJEuHOiaSfWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UW3naVGmb0WE4exjssBUXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DsJGAU5Rrky1mj6/UGhYPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hRWB2Od7oUmwLTQFxeS33g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cJ6wGHbTzUeLt17dkoXpRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RJSb/8h7MUqsW83/Cl0Fng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dz3OVclzVk+KBEHi7wiCRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fsKlqBmnWUWR/Q9Mp5Pxig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5uWcuknZBU2rXjWAYVcckw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ovBGVZD69kG2rBfsZ+9vIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eJNlfjKnU2puJ5tmRn7zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ejqWck3rUkSQwYuqSamtIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xrf+Mt8CN0OxfYBrRBecfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JOboUwrz30SYmIi0eSQcww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zyo/RTjBIEKJBU5iy2LpNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yMHMesVlnUmDSE52SLDtQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mkTCoFKEt0eZt6SP1SSuSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o8Hy3lBA9kGkO+/qyc/EbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kvUNwRK8Q0yUpQ2x9x8DfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4d6O0UlMU06QrG7VsNAT+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QrXqS14eU0mr9Is5k14fzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 311N4mbLZ0m5dcNCugMREw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KpcrDV1N7UaClje/+R016A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GwIAfQ6pOUK0BHtyzXhiig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mP7+BfJWl066bZkkS8Rf5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: asstNbX3fUGFAkn4toHLpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 967sx1VznEink8YV5uTc7A== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +NsgjuIdLUWwVrmbQgncIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FDOe2uwRDEeG/gTCAKj84g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: I4phhNP5A0K0TetMgqoWDA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VzJD2waapEaQwIva7IbuuQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mQ/wEA/SqU2a2ZShSHhRMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0OqcmNoVbUez7t0O1iS4fw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: w2ELwxxzFUaAwGIvM91ujA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8tCzk/nmykCw3+bntqivTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rmXklyFwqUyKkBhnM+jfkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Eq+6qv2d4kyeRv+8SzTGRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5OUkUdQjak+5shudHF7F2w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Asq4FDAD6EqDy4BrJPufNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: juBJ85YfxUu26snz/5lTcQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OFiTOzRVWE+58Xc5dqxGRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JlY3RMuMGkm45eeJDqxBCw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZrSrahfTAEiC2fJWeEugtg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1BpwSAgfZEikjlzhkial5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ESjJGbAuEkGVsDTibFqTrg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: u0qa5/owt0KRttykgd+MXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GpnNlyVps0ip6Ti0ZSmSWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: u2qQbZZYs0q7dthb7em8Qg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 18I7K+JAEk6WEbR1ZeBqzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sGcI082SLE2LESztet9XNA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vZBHt3q860u/7encne2HGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eb7QRnW99Eierr4vzU5lRw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +r5QgZmAGU6AMqyRfy/SsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XbJaYKGMfUObKtHlh0P80Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R+4BhafigkiC6D0Eq1ARaQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KsEHm/6qOkaQLFmKEA90Kw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Rkj0F/CGz0mTcHZuX4+Vog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fS1vXMqAv0KWpYVCyyGKaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6fEmpjpBJEiqKHolsSzLAQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dxkvAV3hj0amsfim1JT7Fg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4bIR4ye/d0qlWWo+fTZA/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vw9YjjGtPUiu2Q0SSf0AbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ct8nWRmKXUuL0+7cGvK/TQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HvIjbJ0w40+djw3sFVJPwA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mlc8zJw0XUmkAMMGt/RXug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: kp8Onf9smUO+3H6udAjS0g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nOuxuUWc8UCZ1a8ACjM3/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: CQhtcm/cT0SsoBfZ/SVwyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VvcpVzPCikCOpkKM448Scg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: YOytCKlE+Eq8ouhis+aljQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6QbA9AfeJUiw8A9LVk69Lg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: 3JanYgFR7Uyo7hq90unNmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aQJnl+P7cUat2KlGMk835w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lYvEYyaC3U2Ii+n/vaN9Jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: tSIjPtPOj0ymjXSG9keklQ== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -MarkAsUsed: false -Name: ScheduledEvents -Parameters: null -PopupCloseAction: "" -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Scheduled Events - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Geplande gebeurtenissen -Url: "" diff --git a/resources/App/modelsource/Administration/User Management/Admin/Account_Edit.Forms$Page.yaml b/resources/App/modelsource/Administration/User Management/Admin/Account_Edit.Forms$Page.yaml deleted file mode 100644 index d85623c..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/Account_Edit.Forms$Page.yaml +++ /dev/null @@ -1,3612 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: -- Administration.Administrator -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: Administration.Account - ForceFullObjects: false - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: "" - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Opslaan - ConditionalVisibilitySettings: null - Icon: null - Name: saveButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Annuleren - ConditionalVisibilitySettings: null - Icon: null - Name: cancelButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView1 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$Label - Appearance: - $Type: Forms$Appearance - Class: alert alert-warning - DesignProperties: null - DynamicClasses: "" - Style: width:100%; - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Mendix AppCloud users are provisioned by the AppCloudServices - module, any changes made in this form might get overwritten. ' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Mendix SSO gebruikers worden vanuit de MendixSSO module aangemaakt - en in de Developer Portal beheerd. Eventuele aanpassingen in dit - scherm kunnen automatisch overschreven worden. - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: Administration.Account.IsLocalUser - Conditions: - - $Type: Enumerations$Condition - AttributeValue: "true" - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: "false" - EditableVisible: true - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Name: label4 - TabIndex: 0 - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.Account.FullName - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Full name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Volledige naam - MaxLengthCode: -1 - Name: textBox6 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: dataView1 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Name - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: Administration.Account.IsLocalUser - Conditions: - - $Type: Enumerations$Condition - AttributeValue: "true" - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: "false" - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: User name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruikersnaam - MaxLengthCode: -1 - Name: textBox9 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: dataView1 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Name - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: Administration.Account.IsLocalUser - Conditions: - - $Type: Enumerations$Condition - AttributeValue: "true" - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: "false" - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Editable: Never - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: OpenID - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: OpenID - MaxLengthCode: -1 - Name: textBox92 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: dataView1 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: User role(s) - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Rollen - Name: comboBox2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0qaytLO9F0iy5y+8yCPHLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: association - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0RkgZmAbf0mM3Rvyxyw+sw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z5Zy0RzrB0aOZ+tBY534Eg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O3jg6Q0qIkqXkShb6Udfxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Hn46NVjMpk6GInSK+SUtrw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NysEBdg0fU6ggku/Ofvqlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: a0i+aEOLHUi0GDBnojfGgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.UserRoles - DestinationEntity: System.UserRole - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eHiM34GgX0qCyWrgw2Hhrg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SQDbtXLmpk2JFI9zo3P83w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.UserRole - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.UserRole.Name - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: '[System.grantableRoles[reversed()]/System.UserRole/System.UserRoles - = ''[%CurrentUser%]'']' - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Tf6rqmKhjk22EVoQk0CfZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SHZo2U5EjEW/BVzSqXVDmA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: coXpahgw80WvHb/2MlSd8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CZUqdzheM0CYxlkBLajVww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.UserRole.Name - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: j5Gy+FJhWEG47Q6cjySsCQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ysqwqGpo+EiRtejo7AxyiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xB7w6Ri2+0mXMc09FIXdtA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QBNlhTPqEUKbBkfnQTa0KQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: dRo1Sac0t0qEoO1Zyz+DtQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: olhOiiuYXUyiCTxLMZoLWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qpxoa5/HQUi51Fjcs2ov6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /RpttbI5TEuE3dhlb/ewjg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: vmNdQeA2ikSqVHZ/fk+cgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MsQLaMkyRUSYpyZwhHGW+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Tqs+6Yqoe0OpqDwigJuVxQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S6SeDG4OEke1VwROZ4sBQg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AyaHz5/NBEadVHSGfdWGDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oLSD70h4YkajcKu3IvkuEQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6M4cwV4sV0mXQbDNyT06og== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bjU6g+Zvck2a7jHYqp1JLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +lVQz+D8/ky8OZEZTEUBUA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: U0mU+UC2qkiV/US/H2YoLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TVb44boWgEG7ELgSdvi+2Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KCKwCXHGvU6JaXkDt6HUZA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: b4NFQVXuqkCVYa8GWRl9NA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aOXCjpwUv0eb2GRR0dkggQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ecEvKgvDz0Ka4MuHdWGLxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3ZXdDNo2LkWFngab95GiqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: f0Len4psw0SQsXJLbT+5lg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Z15SUnhG3ESbts7SqeuITQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select all - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selecteer alles - TranslatableValue: null - TypePointer: - Data: PH37WTvEPESHor3R9BiZLg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: T5KWtb4ZMUyv0U5c27ctRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RF73dzjzaUyaMbkax7Oizw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5lCTYldgGE+dycqwVPWeKQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +LpqwP6EhkeFzqvg+Rf3/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rVINLruk3kS7C0H5wgiYjQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8epo46VMP0KIoQVB1nVm6Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AtMxkhnE0EyobwpEgQb0TQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bB2Ze6rsh0yJuVwKM6XVXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZGg9HyEiPECT2bN23chUZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Clear selection - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selectie wissen - TranslatableValue: null - TypePointer: - Data: zZegUbzcwkCfvqVwSlTiww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5SlqR2zlXUyzUcveQ4yAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Remove value - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Waarde verwijderen - TranslatableValue: null - TypePointer: - Data: 6/DvJ/CqRky4M0DUt63anA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dFRgcWeXdU+1I8Y0PhlNfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Selected value:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Geselecteerde waarde:' - TranslatableValue: null - TypePointer: - Data: YPQg6DCtIUK7JlYLPrYgkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ESu8w96Rvk+jFwGmb7A6Zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Number of options available:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Aantal beschikbare opties:' - TranslatableValue: null - TypePointer: - Data: MfmyXDPAb0mNVP08AXZ+DA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lFNiho7y5UWBTJ6iqT4CvA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use up and down arrow keys to navigate. Press Enter - or Space Bar keys to select. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruik de pijltjestoetsen (omhoog en omlaag) om te - navigeren. Druk op Enter of de spatiebalk om de waarde - te selecteren. - TranslatableValue: null - TypePointer: - Data: wWmTPE61HEuHn/lCpXSFVg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 1fJg7kACPk2gK0NYgun3KA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$CheckBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Blocked - EntityRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelPosition: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Blocked - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Geblokkeerd - Name: checkBox1 - NativeAccessibilitySettings: null - NativeRenderMode: Switch - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: dataView1 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: Forms$CheckBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Active - EntityRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelPosition: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Active - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Actief - Name: checkBox2 - NativeAccessibilitySettings: null - NativeRenderMode: Switch - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: dataView1 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Language - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Taal - Name: comboBox3 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RwmZaMU4S0OpgHTLovttDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: association - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YeifFHMySUWdSMR2hUGVwA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5iW+ghUMN06UTjdqTdRXfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2PTQGWZC20CWjtAVUweIMw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MGwoVb2TEUuRt5+YJjUqIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cY9mSqhc7UGOhUGGL7tuVw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5qFHJWiqD0C/QO6pdzxajw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.User_Language - DestinationEntity: System.Language - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2rrZB+2OLE2rN9WRBBT9rA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Fz9YFUSPxEaK588lqWlP/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.Language - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 68KG2pq57kuN+uoLvfm6zA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w38tnphjoEO9S3g1qX0x+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5tkpWG8s3U+5hxTYUwFm3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ieJlan11IUiHP50T5yobww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.Language.Description - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cLplMouKN0qIvN4NUJ+RHw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BAxJggVJQEa2jYwrmvhkkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jWfL4lcInUiPLFWW3+YDIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yRpzD8K89kOFCkTmRUNT5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 2Oz/Q4SmJkKfxk15v6aPig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RxOozErocka6UA1E7AndCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5LhR1SC+ME2iFBlmpvIj8A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +O9XmtbxYUeraXZtUAok/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 5MwPtSRTQEed/ATysOGyeQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q3vWZa9HRkC7ZuFwVJ2hIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xfetCNxSx0+9qxT6jx7UBw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kGNcXhPX2UKYqWCkX1+5Vg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rtgfgWtEDUqfZE/JygnbsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IC90/BuqW0yNRRTC8eO7aQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vg/eOtmzwUaVXo7pn2Q5WA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: L0/CI/R6DUGYLickpOol3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AUCOdoFF20mGoTzr38GZ1Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 74wuczyqGU+myIzvKaf8Cg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zABW/OA/m06DIhXjUOLU9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ueF15ccIaUCwJm+NDX5Yew== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UGOVZnPhD0KIwszY/UGSuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pJHBiUE3vkWkCHUujv3ldg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hPW3FNiPLES2IE9pY4gHqg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lQrt+EZOYEaOGf5P4Cry4g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hCoRjX9qo0OCWXuvruEgWQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: n0mpqfqUVkCSAFhbN5bb0A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select all - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selecteer alles - TranslatableValue: null - TypePointer: - Data: ZePaxCq4zEO1tm8boByCRw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8ZozXKo21kuOZr4Ik1tNlw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tcWkHXks2EOX6VFVj4KHiQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ePLckY5AcEy73tT3VOnfDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VuwvwhyDo0mR2kdoy+sX3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Yqlkg17Nok6cX2Gf0Qo83w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 36RCfYYxlUuY6MmMFaN0xQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +EAaZYZgaEaJvsZQlgiyrw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pRYnuiF7KUCS8OTr0Nnk1Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yE12VRDro0C7+GUK/rVQ/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Clear selection - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selectie wissen - TranslatableValue: null - TypePointer: - Data: 8S3iCeWA7ECbQgqsstS9CQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qwy+JM8ajUeIuM+wbWVvRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Remove value - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Waarde verwijderen - TranslatableValue: null - TypePointer: - Data: pR7JxZBocUClSujiuv8g7w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: t1zfrJ/3rECmcFEGVWvXQA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Selected value:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Geselecteerde waarde:' - TranslatableValue: null - TypePointer: - Data: HFIkZ5q59UyC+HzMyYVhDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uNOXvKHv9kOimvJULLXB+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Number of options available:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Aantal beschikbare opties:' - TranslatableValue: null - TypePointer: - Data: Fh07rXQla0aokEdcUM02BA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dmmDXwUqwkCkDgcDm7tZdw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use up and down arrow keys to navigate. Press Enter - or Space Bar keys to select. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruik de pijltjestoetsen (omhoog en omlaag) om te - navigeren. Druk op Enter of de spatiebalk om de waarde - te selecteren. - TranslatableValue: null - TypePointer: - Data: ZNwQLeMkQUO5EPzTx1rZxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: ZuY9b8bRu0qZ6VWuSdKFjw== - Subtype: 0 - TabIndex: 0 - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Time zone - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tijdzone - Name: comboBox4 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aSK0bsv9t0qghi1YFaS87Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: association - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: etu+67tmy06zB3FhQSkJDA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q6gOFXJPtUCIsiKmoY6XHg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WqBqoVsYR0CL6kkCKrlqTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mDk4HHDtkEGb3WIy5KUKrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yAKsILhcMkmqvnMo4wslWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: isOubEhSSkmuwd4zzHGCOQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.User_TimeZone - DestinationEntity: System.TimeZone - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AIX9QCqEa067oN9cpwxiTQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iTbnNVXBEkOqL5LQvqD8Yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.TimeZone - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.TimeZone.RawOffset - EntityRef: null - SortOrder: Ascending - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.TimeZone.Description - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zhfCPUT5j06MWleLKOL3FQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZRg1uTlhNkWGNlEj0K4hdQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: expression - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Djq2EvDHzUSrX9h6ebQaXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zGzGdhlTrUOptup0aJeANw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: u+Xw1ToV2UCBh0RBvCpm7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zAdMBbq3VkCBLjtT2BQmWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: $currentObject/Description - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FscwA5LslkaNNUtUQVkJNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DsrSjzrO/E6oi6lS57I++w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: bNH3wcVjpEqf5oJoTlqlhA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: igprrne3ckCCKYdIr9Pl9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: az9sVoRxiEGN5G79egb5IQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kj5YM5h+00iCecGcP4Ib7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: u8vq0ozPEUe5CFAlS6OCYA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O2yK5EvDDUmxA4KYLy5j1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: P47L+k++Wki8mTUY+2eoVw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HlAhw/9bHkKD7Uvo6DmLYQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VHtipMNW8EqzZcYoX4HvMw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GcEPhD1c1ECTf/JwG2zG9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FbQZsxm2MkeaIVKb7bYJbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XJorklXkGUKBxjjACv79OQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LdO/aQ8wKUSU5XAIRmF4cw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PdQdbF1YNkyGoroXXZzGdg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ifamFPh83kuuPq/wju3pFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UGvC0HQixke4IEE03URUKg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2liWW5v+i06LUnRHdyL2LA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +IN7zdtLJ0KiTdz3a7zRkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: e69pT6W/ikSYZHH7hY4UaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4oiojbuy5E+TSVtKd4aM3w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WjlE7FizrE6nN9dpUW0vxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l10lrgJatEmk9t7QKdPyAA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select all - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selecteer alles - TranslatableValue: null - TypePointer: - Data: 21Q+uru9sE2A4N/t3Fwdhw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GIBs/vzAYUqlktEu+2ZSZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UNaOPOwH90SNRckzny8BOw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5kmF6ICqeEqRlNnjiCG7iQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: z0xAf2JxrUqKhFc6DBI7Og== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: D1GzXKGHg06Y8dCORSyo6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 60Vz4XIbMUii0RH9Bhfr1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FD+nMGLLw0m5I0FTDZLQtQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hAOeq2AmOEucdtz2nFCr6Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GF02+8AivE+yQfi9GBBrwA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Clear selection - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selectie wissen - TranslatableValue: null - TypePointer: - Data: aqQWA7zBbUiiafLtGUiKkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Aoy4rAkYnkWjWtyXc6JbgA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Remove value - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Waarde verwijderen - TranslatableValue: null - TypePointer: - Data: Yw269tx8aUa4dTXQ+CMKPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 60sCDVJ8QUyVhpiyhsUkEg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Selected value:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Geselecteerde waarde:' - TranslatableValue: null - TypePointer: - Data: EAOFpBGP+EW/TdkJCBglrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UlZpZTH7LU6BeyxXvHNPfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Number of options available:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Aantal beschikbare opties:' - TranslatableValue: null - TypePointer: - Data: 4WFbMg/yq0KB7BCqGEg0uA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tnrNe9lQP0qgAITkO2gNuA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use up and down arrow keys to navigate. Press Enter - or Space Bar keys to select. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruik de pijltjestoetsen (omhoog en omlaag) om te - navigeren. Druk op Enter of de spatiebalk om de waarde - te selecteren. - TranslatableValue: null - TypePointer: - Data: YZnv8a41UkeSRakhgWBqvw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: ycz/UfnbHkKIziNCmmtVRQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$ActionButton - Action: - $Type: Forms$MicroflowAction - DisabledDuringExecution: false - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: None - Microflow: Administration.ShowPasswordForm - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Change password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Wachtwoord veranderen - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: Administration.Account.IsLocalUser - Conditions: - - $Type: Enumerations$Condition - AttributeValue: "true" - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: "false" - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Icon: null - Name: microflowTrigger1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.PopupLayout -MarkAsUsed: false -Name: Account_Edit -Parameters: -- $Type: Forms$PageParameter - Name: Account - ParameterType: - $Type: DataTypes$ObjectType - Entity: Administration.Account -PopupCloseAction: cancelButton1 -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Edit Account - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruiker aanpassen -Url: "" diff --git a/resources/App/modelsource/Administration/User Management/Admin/Account_New.Forms$Page.yaml b/resources/App/modelsource/Administration/User Management/Admin/Account_New.Forms$Page.yaml deleted file mode 100644 index dbe4a83..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/Account_New.Forms$Page.yaml +++ /dev/null @@ -1,3606 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: -- Administration.Administrator -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: Administration.AccountPasswordData - ForceFullObjects: false - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: "" - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$MicroflowAction - DisabledDuringExecution: false - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: All - Microflow: Administration.SaveNewAccount - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Opslaan - ConditionalVisibilitySettings: null - Icon: null - Name: microflowButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Annuleren - ConditionalVisibilitySettings: null - Icon: null - Name: cancelButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView2 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: Administration.AccountPasswordData_Account - DestinationEntity: Administration.Account - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 3 - Name: dataView1 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.Account.FullName - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Full name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Volledige naam - MaxLengthCode: -1 - Name: textBox6 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Name - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: User name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruikersnaam - MaxLengthCode: -1 - Name: textBox9 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: User role(s) - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Rollen - Name: comboBox1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rm8NSTpjcUONF8WIWDgyhw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: association - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GN0uHlYwXkmGCa60lkDVfQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RH3yictKf0OYpDYBs+GmbA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JXhvBYxu3U+u2V2s4yqTmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R7nRxh9QEUmt2RlYaTKvag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dG/EAXhghkWc2kGmepYkPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AuCGJBM7iUCHAXiGfLjDQA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.UserRoles - DestinationEntity: System.UserRole - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mqI+7HNURUqknQD8YZuWgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FCIFq/vlWEq/hO0OLp1uYA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.UserRole - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.UserRole.Name - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: '[System.grantableRoles[reversed()]/System.UserRole/System.UserRoles - = ''[%CurrentUser%]'']' - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fbwZ4cTi50C0cyXjtU74tQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qpz72EDYL0miLF8i2Kr9fg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IMmXod6nQEGN07RtEcKofw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FniODJD5pk20vwQK26yoSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.UserRole.Name - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zMLuXK2XTk+vtmBAQ7BWVA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nsgJ0yi740+0CWoaTPA34Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: New2jy4YHUi2c9EVzPVUAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TJoSUNCHOUeqAuCRxVO7zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: cvhcGC+JOES/iJ654T+uKA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9fau3Sm4CkCe7y0aIxYiWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: giFujfB7FU+Q57qcnyl4BA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Rn3ZDmpVx0yTmxDsDdWQtQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: eVxsZ8GevUuyNXUSyWvW7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GmnqwaHgfk+YN4aHda6vvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ljk6KvfayUOYOOby70SicA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3xF0IO+Uk0mOuUNxaP7C9Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: egrp9D8v+US0TIn3ooQ6Xg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HtG3I9UAB0CynJtp3qo6ig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qPGvGPXjB0ewroGlnU55Dg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CdK+HjZqEkqiNz9M9VPw1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6lKWybxlSEG7+lEiul+YYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5dlAEtqR1EGoo1NuEGEwjA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7IQmfZ0YRkOw0Yf2QgV4GQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: itg6zwY6BEijdgYq+ErFUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ya+hs8ibG0aVfSMpviaoKQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xWKE5PAt+Uu/6/UxieCeWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EgvL0PB2wUaTyyHNjn1Rhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ye9CvvKt0E+rHLVhuedNJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xIy/2UYNNU20hgqjCFns2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: emQNfoyJCUyY10jEbhLf7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select all - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selecteer alles - TranslatableValue: null - TypePointer: - Data: 07z2eD9p8Um67d4E9UI7lg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HOiLerFJh0KSint/6w6uLg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bc2ORka+AU6CVoqZe6MZFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0FIXBLOvQkux4nUIIvI6LA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W4J1Y8NM7UqPcl2uKxu5fA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 02zjheH0/0OufxbaG9DNhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XQwnN9giUkeEytP0qsEDpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PLZOZQBXMkeCW+u1oWYtfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wrWJ5JGVY0ivdxaEqWvcFw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q1isPtT0Xka+GuBy4F74Mw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Clear selection - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selectie wissen - TranslatableValue: null - TypePointer: - Data: CpsYt6Q5iEGA6HNbIMGAjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: k4aIxoQbykKfXQBnUhdPJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Remove value - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Waarde verwijderen - TranslatableValue: null - TypePointer: - Data: fIHe2c3glkyAJScs2H+IeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wZvwAHNYRUKUwHz7DoFRRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Selected value:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Geselecteerde waarde:' - TranslatableValue: null - TypePointer: - Data: MywH0brhHki4Hw7U1KjD4A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nGTS+OM36kKa5sK2nG2xKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Number of options available:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Aantal beschikbare opties:' - TranslatableValue: null - TypePointer: - Data: LqPMypp+vkCe+GLfB2XYkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aHVltzlfnkq4P1gRWrSN2Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use up and down arrow keys to navigate. Press Enter - or Space Bar keys to select. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruik de pijltjestoetsen (omhoog en omlaag) om - te navigeren. Druk op Enter of de spatiebalk om de waarde - te selecteren. - TranslatableValue: null - TypePointer: - Data: wt37mwiLSUmKT/Mei2BsJQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 3pLJxQbwlUCwheKqtBhgOw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$CheckBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Blocked - EntityRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelPosition: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Blocked - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Geblokkeerd - Name: checkBox1 - NativeAccessibilitySettings: null - NativeRenderMode: Switch - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: Forms$CheckBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Active - EntityRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelPosition: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Active - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Actief - Name: checkBox2 - NativeAccessibilitySettings: null - NativeRenderMode: Switch - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Language - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Taal - Name: comboBox3 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mY94JN7mE0amSziFAqejAA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: association - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 119jPvrME0mKl6QXsd2EPQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2t26ICqQnkqsYpLTkFcpWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cVce5XW9P0eXt3WlCmwQuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YwzVBNE6TEac/UKOJfW1TQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RePfxg+5J0ClOWPkTd7cjQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +/XRyLjoW0isf+bs7yClbw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.User_Language - DestinationEntity: System.Language - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ESCDXMnuf0K9hBLMWRB8sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kDxOX+e3t0uRPdHAZyBFWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.Language - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CADQo/nqpUa/hZVhw2E6FQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: n2zmfglthkSB6SOBatHuTw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gS9UIzou0kGJtdEiqPlG4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pPHc8aobVUiNjvwSPmRvFQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.Language.Description - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LL7MTZMju0WKYTgwmVs/8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g9Xh5t3QBkCBG2UlhaqWRQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xPGXpjg1Skm2pKSBDgPu7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VgMxi6NSYESqujDcRNISGg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ecNd++tIakaRwQjuVf0+Ww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R1CPYdbPcUiJz9/J/AgN6w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fo/+XsAxNUaJKO0aBcLS+A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LcTKQ9xIGEGMlOv2w9KIug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ybYgoY4Xz0yv4pi+NoXQqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JLJQlYpnzUOd3eXRC0IoeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qGOnSPCzmEyC2o5NAMVZyg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8BTMsFIAC0mElQ3UM+VhVQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mBJerRP6XkiFgFY+//8OTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tHekVv+MHUS2yu93WNjJRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WtWvWRRrzE+rjbbqTWyNRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j2d20X9WDE2rb7YIVdlN0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3DRIrrOZkEevpqvAUXl7Yw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EbRjQ3+w20OVSE+vvYuRcg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NCMRKFB2x0G8xnJWrcQc1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wQLW7YBt2kavh/RU2Ll6yQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SU48GkSIukeo4EombKrx5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qtWkSlBSm0WNLy4TcpqJNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZFExUo0040uQJgbl+w2kfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jnUamUki50moSha5NSY8Og== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9Qst8F34DUSxMq17L+1HnQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: n3HSYiVAAEy9ZuSMiQ3SSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select all - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selecteer alles - TranslatableValue: null - TypePointer: - Data: BPgnYOjmKUWscicW6o80yA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MgfMyKbYQkyMMXn6te8xaA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6XTM2AfaEkKBDHXc5+asBw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lwKRHiS9d0WmPmk1qKJRcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B43SlaULZ0mbze+N3In6jA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mrzFOFoE8EeWEE5c7Wx/Wg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JdwIU8x1DUW34cd8pflrQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uFgVi7SA0UK6Cpp8rlaAZA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jdV8RQCgDEWwh+vAGS4Bkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w+5LEByhm0KL+3zmW9tdvw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Clear selection - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selectie wissen - TranslatableValue: null - TypePointer: - Data: gCyrcBLjREOitMf+ND1eWQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hZSqVZUK9029xMMjLgnMPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Remove value - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Waarde verwijderen - TranslatableValue: null - TypePointer: - Data: s5lgy6MN6UC6Cx1IgW7wzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NIEKQ9NW806wXWv8rTA0Mw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Selected value:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Geselecteerde waarde:' - TranslatableValue: null - TypePointer: - Data: kkTfcu1vFE6yVlWzmD/fYg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y4zSdJnocUOWrChZTUhVUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Number of options available:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Aantal beschikbare opties:' - TranslatableValue: null - TypePointer: - Data: DYy9kkpN3kSRucdJGEV23w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uiDSu85/PE6Lr04ayNSFxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use up and down arrow keys to navigate. Press Enter - or Space Bar keys to select. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruik de pijltjestoetsen (omhoog en omlaag) om - te navigeren. Druk op Enter of de spatiebalk om de waarde - te selecteren. - TranslatableValue: null - TypePointer: - Data: WwuGNXAE/EGlAoKw+RyALg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: NqgEukmNOUeVK4DAF2YByQ== - Subtype: 0 - TabIndex: 0 - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Time zone - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tijdzone - Name: comboBox2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Z5wvX64kFE6YAeXkyZnEDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: association - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uUsmudM95kWRKAPx1cCaZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A45WbFHswUGX6T77FZ43Tg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dQ54LjYLQU+TfB1wxVLqrg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lZjfPVNkbkGrBIGbFVTEEg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qb7kbJLJ/kev7O9ol9oxcQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zmK5n0q65keIzoL543vksg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.User_TimeZone - DestinationEntity: System.TimeZone - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1ChucY3btE6yokBvMn12zw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Gi3A1meTn0qYvNy4LZeJBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.TimeZone - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.TimeZone.RawOffset - EntityRef: null - SortOrder: Ascending - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.TimeZone.Description - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CoJx7yGfmEGUzIoJW/HLFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LAxctqKXHkeifw8m31jRdg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: expression - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YBkcVICIj0WclDcXWxVfzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5nuIMr4rWk+4d2Afn+S+3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2NWtripf4U6Vk5RtayoEIQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sAde4hEi8ESRWKJy5G61QQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: $currentObject/Description - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jI8PLf9zZUO3Lb9hyrO2Eg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2N5kHiDJAUGYTsjU+u06ig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 0Q0N4uDYc0WKjjM9Q4N27w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mt00YF3Z2kCG5S3OBSweWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lSTbi7NnzUSxvD/Fi3K5aQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kvqipwUOzUiZxafm5eeJMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: h6+O6UvjLUayL3IHST/akg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SY8m8KHO/0S2S6mT0R2Qxg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EEuktiY8VUSoltExHnwUMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: o9zHuRZLD0OEY8WrxJni2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nlK+4G3zBUSlqyXgrDNwUg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pWhV4uMEl0O7yTNPbJ1EvA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GPLjQ/G310e4HV5v4yd/Xw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LwOLVUMfb0en9Bi0snl7tg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0+8BGpzI/Em16eXDzi6Bsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eRHKsTJSqEuM9Imjz/TgLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MjYDq/SVXkCwbd2JrGfI1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AI5TNyE+FEK55TV2QUiXpA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ae2A9pg/kkCxXX7FThs2Rg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +SMxS/kkmUGqcIcwMMDMxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MxoU7b9mh0GtiNqPSg1Tqw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hre6cT36eUGCyYVBPMvojA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: exn8AzAuUUqEOqVYUtddOg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wC+hC1S+QUCT0UVCEXiJpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select all - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selecteer alles - TranslatableValue: null - TypePointer: - Data: AQz1L1+3sEiW3PzkvVT+uQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NKk+rZmuIEGOrKI1/DIDnw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IRdm04oV10SfnKm1E1eo3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QJQtSEdZRkWxz5HahKVueQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7jjZAlDhj0qMJqa6FEjoiQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lC5UV/wHnU+EwvBjH4ATTQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: U+mNTdhtMkSQdO+g6Re/aA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +NvMBOtHg0uUQftvp7liYQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tkVSOQacWkOsna4FhvuRsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: faVmmJkLkEiE177VYliu+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Clear selection - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selectie wissen - TranslatableValue: null - TypePointer: - Data: KkCVy05eJUmhtbPjxFQubg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: r8NDO9bsbky/mGHI2N2ZHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Remove value - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Waarde verwijderen - TranslatableValue: null - TypePointer: - Data: QsJ2KzmHDUG3ZU6wOssLug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jHpPNAkl50ixPCl0VZW2bQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Selected value:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Geselecteerde waarde:' - TranslatableValue: null - TypePointer: - Data: SoW1ZuJ5UEaoCjnWKqb0dg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J1C1LL8+X0mQ5X3FPBC/ew== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Number of options available:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Aantal beschikbare opties:' - TranslatableValue: null - TypePointer: - Data: U46RT+zFikC0n7RFSn/UVw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5fY9DankBEqWQY8V9NJRnQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use up and down arrow keys to navigate. Press Enter - or Space Bar keys to select. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruik de pijltjestoetsen (omhoog en omlaag) om - te navigeren. Druk op Enter of de spatiebalk om de waarde - te selecteren. - TranslatableValue: null - TypePointer: - Data: nwDTolc/DU2yDOU8UqXryw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: nnuzg7HmcU20fIf1nNdWrA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.AccountPasswordData.NewPassword - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: true - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: New password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Nieuw wachtwoord - MaxLengthCode: -1 - Name: textBox5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: dataView2 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: $value != empty - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: The password cannot be empty. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord mag niet leeg zijn. - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.AccountPasswordData.ConfirmPassword - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: true - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Confirm password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Bevestig wachtwoord - MaxLengthCode: -1 - Name: textBox7 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: dataView2 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: $value != empty - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: The password cannot be empty. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord mag niet leeg zijn. - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.PopupLayout -MarkAsUsed: false -Name: Account_New -Parameters: -- $Type: Forms$PageParameter - Name: AccountPasswordData - ParameterType: - $Type: DataTypes$ObjectType - Entity: Administration.AccountPasswordData -PopupCloseAction: cancelButton1 -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: New Account - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Nieuwe gebruiker -Url: "" diff --git a/resources/App/modelsource/Administration/User Management/Admin/Account_Overview.Forms$Page.yaml b/resources/App/modelsource/Administration/User Management/Admin/Account_Overview.Forms$Page.yaml deleted file mode 100644 index c769c74..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/Account_Overview.Forms$Page.yaml +++ /dev/null @@ -1,9027 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: -- Administration.Administrator -Appearance: - $Type: Forms$Appearance - Class: page-tabs page-tabs-fullwidth - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: 'pageheader pageheader-fullwidth ' - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Account Overview - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruikers - Name: label1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H2 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: These are the local users of your app. Please note that - only these users should be managed in this app. MendixSSO users - are provisioned by the MendixSSO module and should be managed - from the App User Management screen (Developer Portal > General - Settings > Manage App Users). - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Dit overzicht toont de Mendix gebruikers die ten minste - éénmaal in deze app zijn ingelogd. Beheer alleen de 'Lokale' - gebruikers in deze app. Mendix SSO gebruikers worden vanuit - de MendixSSO module aangemaakt en worden beheerd in de Developer - Portal (Developer Portal > General Settings > Manage App Users). - Name: label2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: tabsfullwidth - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 - Name: tabControl - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Local Users - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Lokale gebruikers - - $Type: Texts$Translation - LanguageCode: ar_DZ - Text: Local Users - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dataGrid21 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AqZEIw0+NUWy4wihm/31xA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CpbGhyxC4EeOJCEcBuBpOg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rqyinF+eekGYTYHf0oYExQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: Administration.Account - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.Account.FullName - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: '[(System.UserRoles/System.UserRole/System.grantableRoles[reversed()]/System.UserRole/System.UserRoles - = ''[%CurrentUser%]'' or not(System.UserRoles/System.UserRole)) - and Name != empty]' - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TivLjc9/DEmdDwZ4vQHyyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oNrGwfsQs0qo5L8VwHn0fQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UcjULE3hPUy38nzNwWiJ2Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cY/j7KptL0OAopCNYiUzbw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7CSxMq3JZkiLfDKkzCyhBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mWJQlvERzkalCPvIxqAskw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CSdhx4TO10SezMqBQGFtbg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JTtiSMexYEOOHTSil1yY5g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5kXif3HHoUi7WMSomXha9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZKqhdleLU0iEzXVkrbPLuQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.Account.FullName - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Full name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Volledige naam - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: textFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tZDUZ50epEaHnTvNBafxxg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: krv58y0FZk6yyCklEk22Zw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uSa5uaW5G0O6XhHw8NZLSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3u7G5MDkU0GEtP/QwkmHnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XHDJN3R6pU+OCZqOG9YEEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BUl/otbRVUOZgfo25mzssg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rOtInTmkdE6Wh/5idjxhzQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: HjraXUDuIEmH7ME2stt80g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: igOPvDiCzUe4Ihmx1LgzRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KrSRn+/5MEus4HKy+udttA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: osM2WUr0CESINOlfdPJRKg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "500" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /S64Nhu1TkelG5Yq1YEdJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fuoPUc0ZWk6LIGfl2ZsD9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QQnoXNu/VEuJzhh2Mhz1iA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oTu8F6H1vkaQAj1B1DBS7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0jRWUqbu80GOUGo3yqEvQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sIiQ3kaQckKN0ygk8XxGHw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 2aHaRhY+6Ea7fk09/INM+A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c2WkI+zLz0Cf4JOn0WS7Mw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: d4vcs2uT+kmeZDCtMLcM4Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 3z8aYCMm60m2kQYOoceMKg== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Name - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Login - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruikersnaam - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: textFilter2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qZHYTC1R+kON20oGGQ5Vfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9TsdLwwzT0KlF4ZDlBnkAQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bYa9rgoHNUe4V0tD8W2wmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +7q/yEv3P0CVdSG1nqF0xQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6uVk6p4YkkOgofZkWoSq3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dSMrKKCOYUmUYHoKz//lhQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mr1MxoxioEWml6uyUBcVZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: yO6cjW9pgE6PgLQPC7Y6GQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lBbyilf9dESHG7mFI/DUKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: poPkzSl29ESi5JOf1/nBxg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HUApqWfv7kyqSeF78/0cvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "500" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CQl6TmeOIEqQVOu/QWOhPg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jN+OALkkVU+lGsuAwpeOVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dKhd9beqz0W8Xxk7eu+cQw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XKdJNhTz4U21awmr2Duqzg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 94CQ3M3md0q9SFfGLkHMrQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OqVhRzyo0EKzbyUFMOlu2w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: iMIC1oOKdUaVNmlAKO5Qcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FRcR/x9A3UyI8eTDz8H+IQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: E+izUiPyuEKy/2E0hYSJoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: be6OfiboLEayPGKm1Z32iA== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: customContent - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: mx-administration-lv-dg-list - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: No styling - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$AssociationSource - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.UserRoles - DestinationEntity: System.UserRole - ForceFullObjects: false - SourceVariable: null - Editable: false - Name: listView1 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.UserRole.Name - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: '{1}' - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Roles - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Rollen - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: drop_downFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5DtTfxpV/kGR6d9WaYcXqg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jk7PS6sv3EyX1r7U1VtvYQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iNt1vFeyBUS4HLhC2l36pQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UUrKCA3/gECdAfj+Ee5lhA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J5VL/5urYUq28eAfEKVaYA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PF0JYIhM7U+aBGxAaciqzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nFfvSyD2ZE6vB+55MAyEAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Sx6NDU/7HkSaF63lr6tFFg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MzlJ9eTK60qxhAlUfpQvdg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: N5x22JL7fE2PN3hWQp3/KQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tM4aOJpAc0qtFyD9ELcK0A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vNoWZpAX/UanhOIxqhqJFw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BJk/jZm2BECzWeZWowzEQA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: itYzcmEEYkWrv7qx72cioA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: V48B8g5Fq0OFqHxSa5xmrg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1tgIMkRjHES7TvuTJjNtlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FTvTVWbpvU2Z/bntkZHbTQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 0Xj2234qBkufo/hwmTx2xA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 10LCyL0+wkqnPNO3px3ksA== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.UserRoles - DestinationEntity: System.UserRole - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.UserRole - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.UserRole.Name - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: $currentObject/Name - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dynamicText - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.LastLogin - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.LastLogin - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: DateTime - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: '{1}' - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Last login - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Laatst aangemeld - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: dateFilter1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rq2+PxAaq0u4voSErUnCzQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IEoPa//8+EqrAZUahPgpzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qQ7ryExilUK7T/MW5vz6Ew== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hK3TzzXjb0qjyBnMTzwQWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +XnTEVYSP0WkhcMBO9IlMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EnJjcOoyxkuELi3/aBb0aw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kcmKiUo4vkmLqBzaeBpD3w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8UQ2Pdxo8026szWJjVWb4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bq/DyXfLbEG71i6h+OEOlA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: equal - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BSu+A8CKG0G4Un69oiWmPg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4z7jpEkx20Kdx8oz6nagow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: vOK1c3RhRU6XTsiaKgYtkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Py5J7VRXiUiVniSQ9wbKLg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /HAtLj8FB06ATnaAGayVPA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3xNXOb04p0qxeksySdVy+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dJUWzN0Skk+QY0K5sd7Mmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JLuaXy8yIkiS98gcSsu3hg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BONezsjEBE+jcRD7xELEbg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +kyubd4/eEWRybnOstleIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BxAtuKIda0ypGhsw5vSWWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yK+6SPbVbkq/5SgH6s9JOw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 24fO9bWf6EuALUwCPSG0QQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z1UN+1ql7UWLUbkZ9wRAeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: a0Q1EpS6oE23Lopmu2Ed/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OM8I2lmQpECwWegrFhzX8A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: RvZ/hEpYGEKikAglhwGlxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RVp8XGBCmUGtgB9HiA9UVg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: RF6IQ6rm1UmokVO5HXHriw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: oDLiz4AoaE2anEjJ5LCQpg== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: customContent - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Active - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: badge label-success - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: System.User.Active - Conditions: - - $Type: Enumerations$Condition - AttributeValue: "true" - EditableVisible: true - - $Type: Enumerations$Condition - AttributeValue: "false" - EditableVisible: false - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Active - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Actief - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: badge label-secondary - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: System.User.Active - Conditions: - - $Type: Enumerations$Condition - AttributeValue: "true" - EditableVisible: false - - $Type: Enumerations$Condition - AttributeValue: "false" - EditableVisible: true - Expression: "" - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Inactive - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Inactief - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Active - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Actief - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: drop_downFilter2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BEK9IIoNg063TRPIovBTlA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gW0PGXpuJ0aMsI+kY/w+dQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g+gy0k7mHUKusYEbN331AQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: U/GE0WteqkemA02JpC8U7Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GvX5DmrJrkCLbo7oZW3tKg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JovtmYk/tkOnTQvovFhMXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oYf5crLcxkCw1EnOCia5ng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 17dChyXQDUqZdW8cfMH+lg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hrnCrqVva0qLkpiH6zqHxg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: aDeM/aITIkmL8R9DA9YVuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kpyMpiLbg0uCQ2MDXpwlLw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3ky/XHItLEGsgD0xpBkLLQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: koBrrnb/mU2ZJdBA85/8Dg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tpONp7IMGUmdt/vQycfbCQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: n7wzju86xk6rTbl1IQT4JA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iCtGrmYZNEmW/+ULfNjCHw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ea4N1hmuBU6QtAfwWbG1MQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Uh2efxDvgUejOHnRF4DpCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: bhhduCgBT0mHOImbFqYSTw== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.WebServiceUser - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Web service user - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Webservice gebruiker - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: drop_downFilter3 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BGdiW14MF0+FHt4trRCK7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NvRE9BUPakqrh4oQVnFX+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AXG5IlGUR0uzntOzSygPSw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JzI6968td0SnI2lintNzNA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6qnSmpLF10uvaXtFq4HN1Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: V+fJ9V+FJUuKe0QMD+jh7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9KbXhhHM60ys7k0722qwKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3kJPbjVSrkyt2Qgoq86+vg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: keR7l2y+7kWZFhTL5Ofjeg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: hBdX0nEkS0eDVlK4NwpkUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gClFYTRx/UqcICArR8eZ/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YJG7YS0EQkuFYhw8G8/LOA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tPagiHqQeku8rXnN4OBAQA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fWD0B0hAq0qoQCBQU0B+hQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: il7XfrZ7cUufJwLqCzSbyQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 57qks/Xn2EKM9HIJJI4+yQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: r68fD+ZSmU6IAaIvSWhTkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: CS4yBmXxck+RZUc887uKGw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: G9nvvo5/7EG+aEnFBpJ27w== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.Account.IsLocalUser - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Local - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Lokaal - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: drop_downFilter4 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O+XdCBs0rUC3nJZhaVwYig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MtbJS3ocMUqNge+hYu99cA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 70X7P7d4iku7MFUB1wp8jQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PCQqJgNtLE2tWifH9833Hw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Dbxh47UayEmDI3k7kIAwNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BxGSMf7jPkeUB/Ttbtshyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MDYHctZB/EyR+y2AIRCWGQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2pE9b+qIvkmXd4WynflOow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3qFvxNb5zUKLjgoCfdYOxg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: i4we5etn3kuSWvVgjKW8cA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4/7VYmHE/EqlACMmeFrdcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SEgA6jcxc06BSoX+8Pr7gg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MxdhqS8hdkKyZMt1f0yv0A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EF3fzG4/AEanvNj7Pqz+qA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /weWeokQT0SgCJbTZjDLmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pmhDihR5qUue4N7tJjEgkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TNXdg48wC0+oNfr3EQ8PHA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: GvvVqJ6OJ0mK3w3Dv3dciA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: pZ23M8a/7kiUGk3+/8/G7w== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6lBd/usCvkCL/8n1GqpoiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: customContent - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p4rXZGDc606qd1ZtCMQoVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B48OcYywBkupiU2Z3vXGVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.Account.FullName - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8sRZUEiHS0uzSwM6qX7fNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQYuVMVtikGz7su2bcYRIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fcFlRNxSYkWl0wbroY0WRg== - Subtype: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$FormAction - DisabledDuringExecution: true - FormSettings: - $Type: Forms$FormSettings - Form: Administration.Account_Edit - ParameterMappings: null - TitleOverride: null - NumberOfPagesToClose2: "" - PagesForSpecializations: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$DeleteClientAction - ClosePage: false - DisabledDuringExecution: true - SourceVariable: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czC1YqewikmP7xrRElFAKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SnqvBRzZBkuCUpzFfgKNuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Emo6K6zgk0i1tf/2QuWvoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: ' ' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: ' ' - TranslatableValue: null - TypePointer: - Data: FzwmYcl3CkGwgZVSPOuVWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EKwzC23wW0qXfwUqNdpGwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JkoHrKn6vUC0AfBYN58q0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zksmKgwScUed3OFnMzdV7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TaqbU9VcD0+FFWTWTS7Irw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naDTKmxmsUyIdekLzVahng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Kh98dp23kq+ANbFSX57Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6XdxqN7V0WYxVER3qtoWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IHuKfXI6RUSo8OqlA3x/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ekTmI314CEaNbKQH8thWlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0hl4C/CZ1k2WrpzKXxIUsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: heLb95sOwU6eP8tTSrin0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0BVkGFkGUSna2u4hRwxuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P625Mehgb0mt9nuzEYwz/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jnz9jD8c+EScEpwTYrjClA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEfKF6AIIESubyDVmIUQpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZS0bF3k6pUiUijIa4xzNzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 25mk210Ni0WX2mcuIK4oyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yUcIh1ORyka8v2Ch5z9Qsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sl4nuHwQwku8w12WAleBzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEhUZQ/0J0+32nSmA/xoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9NpBo9/UE+1hTQzH+wxZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFit - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qO58FyhEKkq3yTa2hT9VCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5KiXyW1aoU6tq9SwxbawNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XYlYnubNJ0umfeWbch3SVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vTPcnP7bcEiSvPi8ci8hLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rlObh+zvXUygXe4LIJ36fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aIcMHK7f00WQhtCj8i7VSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lxgSZc2EvkyLhlPImiSxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mAbxyG9XNEGrpLZ/cR8Cpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3qVF2dPvm0eAIj+Ndfu3sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LP0IhJV40mr3Qkc453ghA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qJzOotDv6kuMt2aFPfluXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vh5UShTSZUauvM8eUKOYLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZMQq2d7I5kGNzM7ieeQVrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 9ZajBLAdOE2xJRYOP9lm2A== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hhpUQHVow0makjRBhpL1Yw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y7zvsRSB5UyZRwwUVIOkZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eJy51knz/UG5elTNeRmHHw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4HAEXl8HHUKR+bnlr/QpxQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gGuNEth0DU+iR7TECehp4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9hhyXgTZMUqxDW7GatL9uw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Uoh3twXcukSUFXQ6EdL01Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DCQCzxiPt0KyzF//WwFqgA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3+BlPlXhI0SQOvJ+Gy1DyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: e8Y0m/4ItE6zZ/JfD2yXng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ytUHA3RNdkikBegq70ur+Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hey/1RtsakCQSnjlB+bSNA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3/UKm/Sf8EOTX8jfwayHig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gyXOg7B1sE2E0pr2honLSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: q0uOTXbvUEuXD1ZbhbxVeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f4vb2fOpnE6M39/7xAGA7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kZIjg1lkx0ibDKu1FCyEOw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9Vadi4Gyvk2tHgxmTnwEng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4UuVJMuhsEiKDSZ2Eke3Qg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BKTJKTTCAEmBrZlC+OwWog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +s9ER204nkiDUo0Ji8tDPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tTGH56t+rkWRP5qarHvYDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 11kJQcYbJk2vkR+BSnBw+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y1uwwOp8IUWkDpij5kuRhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A7GRhbIc+kynLj08ZvBveA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4w5+WkiWpUeSXwSNTgkrzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7RovkYBx1k6+hqE9kDbboQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ka43XlmozUi42VtzwO1cTw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vCP9G5bycUSvkpDtArXhxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CE6ofSBEZ0KXmqsZEvOnvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hIjVNv2D60OdnrMU+ROoSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0/1gLra/Z0ieL3PT7Ypyng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JFNF+6n4VkmkaKMYpZLpsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0FPH5PAVKkGpPYYRo55g+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OKRtOXzbBUiM591g+HBtfQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tUXgv0nlwkSVyJOhHCYL2w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hGZ9T+8c202/isg2Z5lU4Q== - Subtype: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$MicroflowAction - DisabledDuringExecution: true - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: All - Microflow: Administration.NewAccount - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: New local user - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Nieuwe gebruiker - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$MicroflowAction - DisabledDuringExecution: true - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: All - Microflow: Administration.NewWebServiceAccount - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: New web service user - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Nieuwe webservice gebruiker - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vYIE2m86GkCdHeH4hlO5Fg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 58SVyiulVkK+Yx8bCj86rA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BdyRkKysQUG9tU+GLMebUg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: HbxuRdhSZke0pQfVwpQSIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: U0tehjYAbUiUas8ZyXWf+Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: 3lY/X8j9AU+Yro6q0BmkaA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Kh8hoN2/vkK4pBK0nRhmtA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: 399DNM8jpEWkPKmN46W9/A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BLcdRGsfmUSmqligiUHTIA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3m7vk3/SV0m/PD5IAwYIFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: JknAVj3CHU6ZFV/1OPgJ7w== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -MarkAsUsed: false -Name: Account_Overview -Parameters: null -PopupCloseAction: "" -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Accounts - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruikers -Url: "" diff --git a/resources/App/modelsource/Administration/User Management/Admin/ChangePassword.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/Admin/ChangePassword.Microflows$Microflow.yaml deleted file mode 100644 index 6e438f4..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/ChangePassword.Microflows$Microflow.yaml +++ /dev/null @@ -1,218 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.Administrator -ApplyEntityAccess: true -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: oaCvx6V+Ek6apqPCdgdhTg== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: Lewhp/mtY0WRM2GGMZgjnw== -- Attributes: - $Type: Microflows$ExclusiveSplit - Caption: Passwords equal? - Documentation: "" - ErrorHandlingType: Rollback - SplitCondition: - $Type: Microflows$ExpressionSplitCondition - Expression: $AccountPasswordData/NewPassword = $AccountPasswordData/ConfirmPassword - ID: ph7wLkpjbk+2RSBbHzQvdA== - Splits: - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "true" - ID: +ce5i0zICkmSNSAPQMG/fQ== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$RetrieveAction - ErrorHandlingType: Rollback - ResultVariableName: Account - RetrieveSource: - $Type: Microflows$AssociationRetrieveSource - AssociationId: Administration.AccountPasswordData_Account - StartVariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: IDhDyYLwuUKMHOGXHkASyA== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: gSuUaJ2ee02dy1kavS1yzg== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ChangeAction - ChangeVariableName: Account - Commit: "Yes" - ErrorHandlingType: Rollback - Items: - - $ID: 9WFo7eFobU2/cgQ6sx+MeA== - $Type: Microflows$ChangeActionItem - Association: "" - Attribute: System.User.Password - Type: Set - Value: $AccountPasswordData/NewPassword - RefreshInClient: true - AutoGenerateCaption: false - BackgroundColor: Default - Caption: Save password - Disabled: false - Documentation: "" - ID: 9sLxxlLgsU2/V2xky73GcA== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 1gVJwtPM40CEvrXIZ3551w== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowMessageAction - Blocking: true - ErrorHandlingType: Rollback - Template: - $Type: Microflows$TextTemplate - Parameters: null - Text: - $Type: Texts$Text - Items: - - $ID: wc4/RFfzP0Ws9crclapzpw== - $Type: Texts$Translation - LanguageCode: en_US - Text: The password has been updated. - - $ID: NLuXQwyyZUGluUQXyM7hVQ== - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord is aangepast. - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: wNp1ROHb/Eq122BN5e92Ig== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: e5XDMXgB306OJRxxMXsJ0g== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$DeleteAction - DeleteVariableName: AccountPasswordData - ErrorHandlingType: Rollback - RefreshInClient: false - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: TI18/YJeD0iYOY5rgIyeJg== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: A7hKv8GMx0qWV39fMWkwOA== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CloseFormAction - ErrorHandlingType: Rollback - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: YUnJQCbYjEyMMDKNYcI1vg== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: vxmdMMeyu0GYQ1SmHYVBwQ== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: 2d2crnesB0q5m/orosO08A== - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "false" - ID: FmwUuR+6c0el3n/7OhWBBQ== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowMessageAction - Blocking: true - ErrorHandlingType: Rollback - Template: - $Type: Microflows$TextTemplate - Parameters: null - Text: - $Type: Texts$Text - Items: - - $ID: 2SQKkRHuCE2S0n3uBq/Bpw== - $Type: Texts$Translation - LanguageCode: en_US - Text: The new passwords do not match. - - $ID: 2o4mhLaS2U258ElieZv/Cg== - $Type: Texts$Translation - LanguageCode: nl_NL - Text: De nieuwe wachtwoorden komen niet overeen. - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: 2QM8p13r006MrpQQdziMZA== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 3KHsbD02OEuj5/W0Pi/5Hw== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: B1cPqV3m80+s2UGJBVuM8Q== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: ChangePassword -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/User Management/Admin/ChangePasswordForm.Forms$Page.yaml b/resources/App/modelsource/Administration/User Management/Admin/ChangePasswordForm.Forms$Page.yaml deleted file mode 100644 index b27c794..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/ChangePasswordForm.Forms$Page.yaml +++ /dev/null @@ -1,342 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: null -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: Administration.AccountPasswordData - ForceFullObjects: false - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: "" - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$MicroflowAction - DisabledDuringExecution: false - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: All - Microflow: Administration.ChangePassword - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Change - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Aanpassen - ConditionalVisibilitySettings: null - Icon: null - Name: microflowButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Annuleren - ConditionalVisibilitySettings: null - Icon: null - Name: cancelButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView2 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.AccountPasswordData.NewPassword - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: true - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: New password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Nieuw wachtwoord - MaxLengthCode: -1 - Name: textBox3 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: dataView2 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: $value != empty - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: The password cannot be empty. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord mag niet leeg zijn. - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.AccountPasswordData.ConfirmPassword - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: true - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Confirm password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Bevestig wachtwoord - MaxLengthCode: -1 - Name: textBox1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: dataView2 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: $value != empty - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: The password cannot be empty. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord mag niet leeg zijn. - Form: Atlas_Core.PopupLayout -MarkAsUsed: false -Name: ChangePasswordForm -Parameters: -- $Type: Forms$PageParameter - Name: AccountPasswordData - ParameterType: - $Type: DataTypes$ObjectType - Entity: Administration.AccountPasswordData -PopupCloseAction: cancelButton1 -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Change Password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Wachtwoord veranderen -Url: "" diff --git a/resources/App/modelsource/Administration/User Management/Admin/NewAccount.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/Admin/NewAccount.Microflows$Microflow.yaml deleted file mode 100644 index cf70025..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/NewAccount.Microflows$Microflow.yaml +++ /dev/null @@ -1,123 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.Administrator -ApplyEntityAccess: false -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: 8c2YGdcatE6sXeAUKYFK3g== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: tevQQDihi0iT44+4iRnwSg== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CreateChangeAction - Commit: "No" - Entity: Administration.Account - ErrorHandlingType: Rollback - Items: null - RefreshInClient: false - VariableName: NewAccount - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: xFPl5MVrR02awwVkWVo3pA== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: l3vSHZupW0+Xdb3GOmtnrg== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CreateChangeAction - Commit: "No" - Entity: Administration.AccountPasswordData - ErrorHandlingType: Rollback - Items: - - $ID: 940uQ+GcDkiQZVr7iKX58w== - $Type: Microflows$ChangeActionItem - Association: Administration.AccountPasswordData_Account - Attribute: "" - Type: Set - Value: $NewAccount - RefreshInClient: false - VariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: C6fmOd9O/U2MCz/6YjvrHQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: HMnv1at6mEe2UqeAkquIXA== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowFormAction - ErrorHandlingType: Rollback - FormSettings: - $Type: Forms$FormSettings - Form: Administration.Account_New - ParameterMappings: - - $ID: TVySyF5W9kaCUu4E6cx66w== - $Type: Forms$PageParameterMapping - Argument: $AccountPasswordData - Parameter: Administration.Account_New.AccountPasswordData - Variable: - $ID: Eu+1G/z1CUe4Cvl/l/0f1g== - $Type: Forms$PageVariable - PageParameter: "" - SnippetParameter: "" - UseAllPages: false - Widget: "" - TitleOverride: null - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: mGRFDJrJE0Cqx2XLvQYFdQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: lyebQ6NEmUiKv0pdcvPnBQ== -- Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: 1tVKVLawxEi2PKU8mEJ+1w== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: NewAccount -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/User Management/Admin/NewWebServiceAccount.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/Admin/NewWebServiceAccount.Microflows$Microflow.yaml deleted file mode 100644 index 4c41684..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/NewWebServiceAccount.Microflows$Microflow.yaml +++ /dev/null @@ -1,152 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.Administrator -ApplyEntityAccess: false -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "Create a new user object and change the default attribute values so - the user will be handled as a webservice user.\r\nFinally open the User_NewEdit - form so all remaing user information can be set." -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: Fg8wYp4xl06dlbUHWUDquA== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: X/ZMM2Hh2kyV4sxvgEtccQ== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CreateChangeAction - Commit: "No" - Entity: Administration.Account - ErrorHandlingType: Rollback - Items: null - RefreshInClient: false - VariableName: NewAccount - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: XPUqV0daDESCqYvUJUfDxA== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 7tfKanfO7keUewL8jjdA7g== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ChangeAction - ChangeVariableName: NewAccount - Commit: "No" - ErrorHandlingType: Rollback - Items: - - $ID: gT0fhMOI7kOGsR5CpO8sdw== - $Type: Microflows$ChangeActionItem - Association: "" - Attribute: System.User.WebServiceUser - Type: Set - Value: "true" - RefreshInClient: false - AutoGenerateCaption: false - BackgroundColor: Default - Caption: Mark as web service user - Disabled: false - Documentation: "" - ID: VNUg1P8jCku1nesX0ouxYQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: OeJWtSbdjUCBiVMJi2ELyQ== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CreateChangeAction - Commit: "No" - Entity: Administration.AccountPasswordData - ErrorHandlingType: Rollback - Items: - - $ID: Z4SpNgIigkeJh6nFQ9BW9w== - $Type: Microflows$ChangeActionItem - Association: Administration.AccountPasswordData_Account - Attribute: "" - Type: Set - Value: $NewAccount - RefreshInClient: false - VariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: ZNGWYDxdhkiW4BH/VgZ5/g== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: mxznauz1d0CKoN7Ge8bLfg== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowFormAction - ErrorHandlingType: Rollback - FormSettings: - $Type: Forms$FormSettings - Form: Administration.Account_New - ParameterMappings: - - $ID: TReBtXrQ806NuxzBLC3rGg== - $Type: Forms$PageParameterMapping - Argument: $AccountPasswordData - Parameter: Administration.Account_New.AccountPasswordData - Variable: - $ID: TbXANjxLu0yOAttsd91C2A== - $Type: Forms$PageVariable - PageParameter: "" - SnippetParameter: "" - UseAllPages: false - Widget: "" - TitleOverride: null - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: Udfc7BBiXUGDkZQ8xUF02A== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: Dmrz3cTXzEuHRxfZ8y/l4A== -- Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: VC3Rvdcvy0KLxc8fXeey8A== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: NewWebServiceAccount -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/User Management/Admin/SaveNewAccount.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/Admin/SaveNewAccount.Microflows$Microflow.yaml deleted file mode 100644 index d062679..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/SaveNewAccount.Microflows$Microflow.yaml +++ /dev/null @@ -1,186 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.Administrator -ApplyEntityAccess: true -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: mdk/bGAuGkWTsLTdER9ODg== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 96PTyNo6o0ykEJa03gwJYg== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$RetrieveAction - ErrorHandlingType: Rollback - ResultVariableName: Account - RetrieveSource: - $Type: Microflows$AssociationRetrieveSource - AssociationId: Administration.AccountPasswordData_Account - StartVariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: /YMtQC2nZ0+5cjanYDgfpQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: N2iK2bDI1U68F3v3jXB62w== -- Attributes: - $Type: Microflows$ExclusiveSplit - Caption: Passwords equal? - Documentation: "" - ErrorHandlingType: Rollback - SplitCondition: - $Type: Microflows$ExpressionSplitCondition - Expression: $AccountPasswordData/NewPassword = $AccountPasswordData/ConfirmPassword - ID: 0HFO3iM/O0KdWf5PIatlPQ== - Splits: - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "true" - ID: whEwm05WVEuvlxJbT/JXcA== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ChangeAction - ChangeVariableName: Account - Commit: "Yes" - ErrorHandlingType: Rollback - Items: - - $ID: kJebT5xzF0+WdG5rLtZphQ== - $Type: Microflows$ChangeActionItem - Association: "" - Attribute: System.User.Password - Type: Set - Value: $AccountPasswordData/NewPassword - RefreshInClient: true - AutoGenerateCaption: false - BackgroundColor: Default - Caption: Set password and save account - Disabled: false - Documentation: "" - ID: qZP61cEwuUWgoeOkLi+i0Q== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: XuV1g09U3Uq3YrF79fcSow== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$DeleteAction - DeleteVariableName: AccountPasswordData - ErrorHandlingType: Rollback - RefreshInClient: false - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: +FwH7ZfSckez4fNUsf0ETQ== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: guC/y5gqoUi9UJC9cgZxFA== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CloseFormAction - ErrorHandlingType: Rollback - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: I4ZcD/QiBEmqlUgmZDqJ0w== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: YmqfzFt1jUq5nqPk2q9HUg== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: ikVWHPBwEEib6lDhKO7Pqg== - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "false" - ID: QnQwycyd2EuRo/G3LEcD+g== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowMessageAction - Blocking: true - ErrorHandlingType: Rollback - Template: - $Type: Microflows$TextTemplate - Parameters: null - Text: - $Type: Texts$Text - Items: - - $ID: D8PPJCMA/U2m9QfQDhkcMQ== - $Type: Texts$Translation - LanguageCode: en_US - Text: The entered passwords do not match. - - $ID: lqGZWK9CtUSPCBQR2uhLTw== - $Type: Texts$Translation - LanguageCode: nl_NL - Text: De ingevoerde wachtwoorden zijn niet gelijk. - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: X6yvCFEwVkuWsRpNBpa9hA== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: /KfpTLKWyE2jB+1cEj2vjg== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: AdpXEmmkHk6LQAiaVBgpXQ== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: SaveNewAccount -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/User Management/Admin/ShowPasswordForm.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/Admin/ShowPasswordForm.Microflows$Microflow.yaml deleted file mode 100644 index 7f26d36..0000000 --- a/resources/App/modelsource/Administration/User Management/Admin/ShowPasswordForm.Microflows$Microflow.yaml +++ /dev/null @@ -1,101 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.Administrator -ApplyEntityAccess: false -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: LaRYBnSDgEmYB0KedqAM9w== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: Qyy0cll81EK+NtR1tXmA1w== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CreateChangeAction - Commit: "No" - Entity: Administration.AccountPasswordData - ErrorHandlingType: Rollback - Items: - - $ID: /9INxu/9EUCSIEC60fw18Q== - $Type: Microflows$ChangeActionItem - Association: Administration.AccountPasswordData_Account - Attribute: "" - Type: Set - Value: $Account - RefreshInClient: false - VariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: w0ShDIcyhEKbhry2IgqdAQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: tXGGDSAcpkq6NHzlDJqJcg== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowFormAction - ErrorHandlingType: Rollback - FormSettings: - $Type: Forms$FormSettings - Form: Administration.ChangePasswordForm - ParameterMappings: - - $ID: 9Zckx66uZ0CrBavvJlGo6Q== - $Type: Forms$PageParameterMapping - Argument: $AccountPasswordData - Parameter: Administration.ChangePasswordForm.AccountPasswordData - Variable: - $ID: NOoB/DfAOEKftyBZkTnJJQ== - $Type: Forms$PageVariable - PageParameter: "" - SnippetParameter: "" - UseAllPages: false - Widget: "" - TitleOverride: null - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: buolXKtKKk2kGlw8oWB7HA== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 23zTJL5+QUqlyW1/Cj4JoQ== -- Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: MiPwoKyHZU26GmolMx9eYg== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: ShowPasswordForm -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/User Management/User/ChangeMyPassword.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/User/ChangeMyPassword.Microflows$Microflow.yaml deleted file mode 100644 index 2c4d725..0000000 --- a/resources/App/modelsource/Administration/User Management/User/ChangeMyPassword.Microflows$Microflow.yaml +++ /dev/null @@ -1,318 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.Administrator -- Administration.User -ApplyEntityAccess: true -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: o2OCzaJ000CTdDeQagYIaw== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: WNTBsl7dzEiHRbEsg0Cw9w== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$RetrieveAction - ErrorHandlingType: Rollback - ResultVariableName: Account - RetrieveSource: - $Type: Microflows$AssociationRetrieveSource - AssociationId: Administration.AccountPasswordData_Account - StartVariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: 4d13yy9AxUmJybP3xu818w== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: gOdGDEbQ3EeTf7FcyC0xYg== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$JavaActionCallAction - ErrorHandlingType: Rollback - JavaAction: System.VerifyPassword - ParameterMappings: - - $ID: 0gnxAP9vTkaUeSlYttFCDw== - $Type: Microflows$JavaActionParameterMapping - Parameter: System.VerifyPassword.userName - Value: - $ID: QkUk26QqGkubzmBJ4fQ5Mw== - $Type: Microflows$BasicCodeActionParameterValue - Argument: $Account/Name - - $ID: lHyXPGR610iOcEZ6D9cI/Q== - $Type: Microflows$JavaActionParameterMapping - Parameter: System.VerifyPassword.password - Value: - $ID: jKFpllg41Uir+wlblm6OQQ== - $Type: Microflows$BasicCodeActionParameterValue - Argument: $AccountPasswordData/OldPassword - QueueSettings: null - ResultVariableName: OldPasswordOkay - UseReturnVariable: true - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: xGrYzYsLMU6OstDv1KXFUw== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: /KPkvRgmBkqYE1K5HufOpQ== -- Attributes: - $Type: Microflows$ExclusiveSplit - Caption: Old password okay? - Documentation: "" - ErrorHandlingType: Rollback - SplitCondition: - $Type: Microflows$ExpressionSplitCondition - Expression: $OldPasswordOkay - ID: 6BG59TSpJk2R5ykJ6T5fSg== - Splits: - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "true" - ID: 9LWzAl+Ldk+5XNAbht3raw== - - Attributes: - $Type: Microflows$ExclusiveSplit - Caption: Passwords equal? - Documentation: "" - ErrorHandlingType: Rollback - SplitCondition: - $Type: Microflows$ExpressionSplitCondition - Expression: $AccountPasswordData/NewPassword = $AccountPasswordData/ConfirmPassword - ID: aL3og5WNSkubjbeDD8F4ng== - Splits: - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "true" - ID: FKz7Z/HGKkye7YhuUu3fiw== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ChangeAction - ChangeVariableName: Account - Commit: "Yes" - ErrorHandlingType: Rollback - Items: - - $ID: nbGHq8sFJkiAqOL3A2G+UQ== - $Type: Microflows$ChangeActionItem - Association: "" - Attribute: System.User.Password - Type: Set - Value: $AccountPasswordData/NewPassword - RefreshInClient: true - AutoGenerateCaption: false - BackgroundColor: Default - Caption: Save password - Disabled: false - Documentation: "" - ID: 7kOwfj46xk+cilfWN8qw5g== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 46eegMEiWEy5DutJ9lhpxA== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowMessageAction - Blocking: true - ErrorHandlingType: Rollback - Template: - $Type: Microflows$TextTemplate - Parameters: null - Text: - $Type: Texts$Text - Items: - - $ID: Wk8Whh4kRku6J74BAyzmpg== - $Type: Texts$Translation - LanguageCode: en_US - Text: The password has been updated. - - $ID: VlXxaUr390u5vWOvfo/MMQ== - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord is aangepast. - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: 2smUqHiPXkOpUkh9s1xgfw== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 9q7FCpVTR02wV9JI+2Y6yw== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$DeleteAction - DeleteVariableName: AccountPasswordData - ErrorHandlingType: Rollback - RefreshInClient: false - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: cWzWii7LT0mjfHD8by02Fw== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 4B0aHxtd5kO38iKhIz80ww== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CloseFormAction - ErrorHandlingType: Rollback - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: B9C3dxH3XkW6ImokOMeaEg== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: UXRQeog/8UWU59lCDC1H+A== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: aB/T4EhlBEW6iD1HNtKDWw== - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "false" - ID: A4Zl5gsJUkamzMGzGxA+VA== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowMessageAction - Blocking: true - ErrorHandlingType: Rollback - Template: - $Type: Microflows$TextTemplate - Parameters: null - Text: - $Type: Texts$Text - Items: - - $ID: Cn4E+3CYYEmJJbVbv5fy2A== - $Type: Texts$Translation - LanguageCode: en_US - Text: The new passwords do not match. - - $ID: FOROwfIjq0+1MWMm4YRE3Q== - $Type: Texts$Translation - LanguageCode: nl_NL - Text: De nieuwe wachtwoorden komen niet overeen. - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: cK5/zajCJkyYXfO/b7zQSA== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: y7kRVS+FwUOKekOG4qE1Fw== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: YABUDyZ7Y0+o6xbhqLRydg== - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$EnumerationCase - Value: "false" - ID: Y4Z5BpzP70q6V3mRWb8Ecg== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ValidationFeedbackAction - Association: "" - Attribute: Administration.AccountPasswordData.OldPassword - ErrorHandlingType: Rollback - FeedbackTemplate: - $Type: Microflows$TextTemplate - Parameters: null - Text: - $Type: Texts$Text - Items: - - $ID: 5z/MxvJq1Ey3GYZRG3L6yQ== - $Type: Texts$Translation - LanguageCode: en_US - Text: The password is not correct. - - $ID: gbCvM3gBXEiPUrpWziGGmw== - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord is onjuist. - ValidationVariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: YRVTcGRl4kiNGH5oIFqq1Q== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: mQxImsMNu0qZKLWL7MzDhw== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: ScFHE3X7Z0Okb8qp7MHqDg== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: ChangeMyPassword -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/User Management/User/ChangeMyPasswordForm.Forms$Page.yaml b/resources/App/modelsource/Administration/User Management/User/ChangeMyPasswordForm.Forms$Page.yaml deleted file mode 100644 index e96eea3..0000000 --- a/resources/App/modelsource/Administration/User Management/User/ChangeMyPasswordForm.Forms$Page.yaml +++ /dev/null @@ -1,435 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: null -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: Administration.AccountPasswordData - ForceFullObjects: false - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: "" - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$MicroflowAction - DisabledDuringExecution: false - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: All - Microflow: Administration.ChangeMyPassword - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Change - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Aanpassen - ConditionalVisibilitySettings: null - Icon: null - Name: microflowButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Annuleren - ConditionalVisibilitySettings: null - Icon: null - Name: cancelButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView2 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.AccountPasswordData.OldPassword - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: true - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Old password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Huidig wachtwoord - MaxLengthCode: -1 - Name: textBox2 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: dataView2 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: $value != empty - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: The password cannot be empty. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord mag niet leeg zijn. - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.AccountPasswordData.NewPassword - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: true - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: New password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Nieuw wachtwoord - MaxLengthCode: -1 - Name: textBox3 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: dataView2 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: $value != empty - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: The password cannot be empty. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord mag niet leeg zijn. - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.AccountPasswordData.ConfirmPassword - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: true - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Confirm password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Bevestig wachtwoord - MaxLengthCode: -1 - Name: textBox1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: AccountPasswordData - SnippetParameter: "" - UseAllPages: false - Widget: dataView2 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: $value != empty - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: The password cannot be empty. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Het wachtwoord mag niet leeg zijn. - Form: Atlas_Core.PopupLayout -MarkAsUsed: false -Name: ChangeMyPasswordForm -Parameters: -- $Type: Forms$PageParameter - Name: AccountPasswordData - ParameterType: - $Type: DataTypes$ObjectType - Entity: Administration.AccountPasswordData -PopupCloseAction: cancelButton1 -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Change Password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Wachtwoord veranderen -Url: "" diff --git a/resources/App/modelsource/Administration/User Management/User/ManageMyAccount.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/User/ManageMyAccount.Microflows$Microflow.yaml deleted file mode 100644 index 71a0a89..0000000 --- a/resources/App/modelsource/Administration/User Management/User/ManageMyAccount.Microflows$Microflow.yaml +++ /dev/null @@ -1,168 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.User -ApplyEntityAccess: true -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: Vb0OchmUpUu9WEQ3ZL3seg== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: xFmOKmuh1UCIJ+qxjVE9nw== -- Attributes: - $Type: Microflows$InheritanceSplit - Caption: "" - Documentation: "" - SplitVariableName: currentUser - ID: jBrex3P5DkqeQ9T76U3Mqg== - Splits: - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$InheritanceCase - Value: Administration.Account - ID: NQXo7HFzLU23YLm5fDAb5g== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CastAction - ErrorHandlingType: Rollback - VariableName: Account - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: kpMHICq6SEqKeWwgNiuOag== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: /AkfuXXOc0eVv9qqNSDaKQ== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowFormAction - ErrorHandlingType: Rollback - FormSettings: - $Type: Forms$FormSettings - Form: Administration.MyAccount - ParameterMappings: - - $ID: RpPGqEYBAkmZpdyvXFCJlg== - $Type: Forms$PageParameterMapping - Argument: $Account - Parameter: Administration.MyAccount.Account - Variable: - $ID: VBhzxaGrCUmywgaWt7xiVg== - $Type: Forms$PageVariable - PageParameter: "" - SnippetParameter: "" - UseAllPages: false - Widget: "" - TitleOverride: null - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: 43BwKEQPgk6AnRnUM2ME2g== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: jAYWWKEftkaXsAZYnKs76g== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: rHe2R7msa0WbYFRgnEso1g== - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$InheritanceCase - Value: System.User - ID: f7njnImIe0aruIXsl5Thzg== - - Attributes: - $Type: Microflows$ExclusiveMerge - ID: s/sMzU+9jU6gYpEphukSwA== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: Fr61hRYx4UapWP695erL5w== - - Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowMessageAction - Blocking: true - ErrorHandlingType: Rollback - Template: - $Type: Microflows$TextTemplate - Parameters: null - Text: - $Type: Texts$Text - Items: - - $ID: L+rp15deWUqpnxV7xbZRhQ== - $Type: Texts$Translation - LanguageCode: en_US - Text: No account information is available for anonymous users. - - $ID: 1efvL4xzSUqWssDmUOQGzQ== - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Geen accountinformatie beschikbaar voor anonieme gebruikers. - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: Ym2XuXT4+E+dUUd7vGWx7Q== - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: VW94tAZmo0evwIp12udibg== - - Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: AaPW1Ryk7UShiogcvHW+Tw== - - - Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$InheritanceCase - Value: "" - ID: X9R98F6jbkGcLl542PLGQw== - - Attributes: - $Type: Microflows$ExclusiveMerge - ID: s/sMzU+9jU6gYpEphukSwA== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: ManageMyAccount -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/User Management/User/MyAccount.Forms$Page.yaml b/resources/App/modelsource/Administration/User Management/User/MyAccount.Forms$Page.yaml deleted file mode 100644 index 26af8c3..0000000 --- a/resources/App/modelsource/Administration/User Management/User/MyAccount.Forms$Page.yaml +++ /dev/null @@ -1,1339 +0,0 @@ -$Type: Forms$Page -AllowedModuleRoles: null -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -FormCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: Administration.Account - ForceFullObjects: false - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: "" - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Opslaan - ConditionalVisibilitySettings: null - Icon: null - Name: saveButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Annuleren - ConditionalVisibilitySettings: null - Icon: null - Name: cancelButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView1 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Administration.Account.FullName - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Full name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Volledige naam - MaxLengthCode: -1 - Name: textBox2 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: dataView1 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.User.Name - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: User name - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruikersnaam - MaxLengthCode: -1 - Name: textBox5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: - $Type: Forms$PageVariable - PageParameter: Account - SnippetParameter: "" - UseAllPages: false - Widget: dataView1 - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Language - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Taal - Name: comboBox3 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ih/GazSGLkmq6BDAG5paPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: association - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qj4euAjNE02GUhthfCWipw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: REP5GYxtQk+0om6KzpaqWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +DuAhO+4KE26fcXiN2invA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /L5E8BZT/kuFFkXK0wRH3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DjE4eCB5sUK9PozZO4E9qg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RPouph74n0KtpqmvMaPXeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: - $Type: DomainModels$IndirectEntityRef - Steps: - - $Type: DomainModels$EntityRefStep - Association: System.User_Language - DestinationEntity: System.Language - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5MUfh/4KVU6wntCQoH+dIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GYorUoCLS0icXqCdoJpC2Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.Language - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PejDcg43dkiWsgCLn/Gl1Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FQm+7bvxaEyYx0e58joCfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: grjHo3vX/UehWR2otEnpqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +rJYeGywJUG66HayVAp2QA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.Language.Description - EntityRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 44XAHIDUjECkk9taLFqgEA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R2IZLuLqvEu/MEzBiWf02g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Klmex0ybCE6QYeOkL9AKvw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RP5jfi1IoEmPTpCPglLzmQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: bHQpbBp9ekSC6edwtiHnDA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +BzMO7poeE+U6lPncrJORA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: contains - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6CdAY47QPEGWU9FSjM7Uvw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OCL6K5SO+U2j7H6CZTpJJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: wJzatZ+y8kmqSiggDWCO/A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ew+UxJwZ6U+l+Jnr+FJrxg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FGmhGzLO0kyuIUNPeuSgCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9S5z9VvrAUiJ1YkVs5NV3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MiKRCXvUKku0xAouMvD7LA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pqACYU4C206MyPl/RzN6Dg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0npTWg9lSker3CNH5xZFAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qnTVAQ5m6EuV1lmiA1V5PQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vBeNiz5t4EG6EgLuMAPJPA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AvlrtTyzokWyPs/hf4swOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OvpM4RRi2EWHnp0fyE78lQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +xT7Oeem60Gx2fvc9Mxehw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 87yZw92gPEipgGyj6YdeJw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WM6WAsDsJkKRvV08JVkbMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gGulYdrGWUWoDt73ALn7XA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XNWBYNxbKU+vFXRU2LTMQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JdQ+dQOaKUS1IsYabwoBpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5OL3zB7Rm0WRLuqPHKb23g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select all - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selecteer alles - TranslatableValue: null - TypePointer: - Data: 9pVp5q9THESvRPD7/PeOdQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wycBIMDeYEmFLN8zWj8DuQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Hw9RiKblZECeoU7QzGGXSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WrkwXO6MRUy6FPLA23Ochg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Wa1kI+8T8Ei5vC7EUw0Cdw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0bbJ5b+tJkCDjI5llke5LQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: d+jfRqxaNUq/InIfhMJY8A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rKMw36kRo0WIFGrJULZBSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GVtzxmpZRkqlCiVDLmRpag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0rQXx8MFnECSSUsxwZDu7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Clear selection - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Selectie wissen - TranslatableValue: null - TypePointer: - Data: xYn2CxkiUESDQMc3wedQqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LFi48at4j0Kfkwi5HHFw8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Remove value - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Waarde verwijderen - TranslatableValue: null - TypePointer: - Data: U76QzDkSM0atLJTgtNf0SQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RsZMytrq9EaAvvZQVgysXg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Selected value:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Geselecteerde waarde:' - TranslatableValue: null - TypePointer: - Data: MgZDPf/q00WlpA7qRcjQEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wjtBAm0HyE+aDgEkke5OQg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Number of options available:' - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: 'Aantal beschikbare opties:' - TranslatableValue: null - TypePointer: - Data: Avvm6jyf00OM+Uf6EQ9VJA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DdOaiIGuW0ShEbBu5MKTFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use up and down arrow keys to navigate. Press Enter or Space - Bar keys to select. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Gebruik de pijltjestoetsen (omhoog en omlaag) om te navigeren. - Druk op Enter of de spatiebalk om de waarde te selecteren. - TranslatableValue: null - TypePointer: - Data: qY2Lo1diH0WUEg1ziPSRkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: RfEnQefZGEmX5d/o/YFneg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$ActionButton - Action: - $Type: Forms$MicroflowAction - DisabledDuringExecution: false - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: None - Microflow: Administration.ShowMyPasswordForm - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Change password - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Wachtwoord veranderen - ConditionalVisibilitySettings: null - Icon: null - Name: microflowTrigger1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - Form: Atlas_Core.PopupLayout -MarkAsUsed: false -Name: MyAccount -Parameters: -- $Type: Forms$PageParameter - Name: Account - ParameterType: - $Type: DataTypes$ObjectType - Entity: Administration.Account -PopupCloseAction: cancelButton1 -PopupHeight: 0 -PopupResizable: true -PopupWidth: 0 -Title: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: My Account - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Mijn account -Url: "" diff --git a/resources/App/modelsource/Administration/User Management/User/ShowMyPasswordForm.Microflows$Microflow.yaml b/resources/App/modelsource/Administration/User Management/User/ShowMyPasswordForm.Microflows$Microflow.yaml deleted file mode 100644 index fe90559..0000000 --- a/resources/App/modelsource/Administration/User Management/User/ShowMyPasswordForm.Microflows$Microflow.yaml +++ /dev/null @@ -1,102 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: -- Administration.Administrator -- Administration.User -ApplyEntityAccess: false -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: lXfwBtN4K0WK7D9Lfz9SWA== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: ARKM165wP0WrXNH3fDx0Mw== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CreateChangeAction - Commit: "No" - Entity: Administration.AccountPasswordData - ErrorHandlingType: Rollback - Items: - - $ID: xA//qQXa6UahIOcWl5dYLg== - $Type: Microflows$ChangeActionItem - Association: Administration.AccountPasswordData_Account - Attribute: "" - Type: Set - Value: $Account - RefreshInClient: false - VariableName: AccountPasswordData - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: Tr4IM59Qjk6sJG2UnqHOVQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: da5gIryRaU6ctqALcJEomg== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$ShowFormAction - ErrorHandlingType: Rollback - FormSettings: - $Type: Forms$FormSettings - Form: Administration.ChangeMyPasswordForm - ParameterMappings: - - $ID: 8bWSvsO+uUOSJL5jpHL/rQ== - $Type: Forms$PageParameterMapping - Argument: $AccountPasswordData - Parameter: Administration.ChangeMyPasswordForm.AccountPasswordData - Variable: - $ID: bd08ZPXtXUCj0a69RjjNLw== - $Type: Forms$PageVariable - PageParameter: "" - SnippetParameter: "" - UseAllPages: false - Widget: "" - TitleOverride: null - NumberOfPagesToClose: "" - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: XL1UfYNNpkC3GsA1ayFcsg== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: bW/reCOUCky8K45EP1zmWg== -- Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: jNFYUBtrB0a0sdSuqYv8Xg== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: ShowMyPasswordForm -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/Administration/_Docs/ReadMe.Forms$Snippet.yaml b/resources/App/modelsource/Administration/_Docs/ReadMe.Forms$Snippet.yaml deleted file mode 100644 index f0078a4..0000000 --- a/resources/App/modelsource/Administration/_Docs/ReadMe.Forms$Snippet.yaml +++ /dev/null @@ -1,41 +0,0 @@ -$Type: Forms$Snippet -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: ReadMe -Parameters: null -Widgets: -- $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: This module contains administration functionalities to manage local - accounts and to see app statistics like runtime information, sessions and - scheduled events. - - $Type: Texts$Translation - LanguageCode: en_US - Text: This module contains administration functionalities to manage local - accounts and to see app statistics like runtime information, sessions and - scheduled events. - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Core/Atlas.CustomIcons$CustomIconCollection.yaml b/resources/App/modelsource/Atlas_Core/Atlas.CustomIcons$CustomIconCollection.yaml deleted file mode 100644 index 715901c..0000000 --- a/resources/App/modelsource/Atlas_Core/Atlas.CustomIcons$CustomIconCollection.yaml +++ /dev/null @@ -1,2087 +0,0 @@ -$Type: CustomIcons$CustomIconCollection -CollectionClass: mx-icon-lined -Documentation: "" -Excluded: false -ExportLevel: Hidden -FontData: - Data: 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BAAAeAQAAIAEAACgBAAAQAQAAHMEAABgBAAAbAQAAEAEAAAzBAAAQAQAAMAEAABABAAAQAQAASAEAABABAAAcwQAAIkEAACABAAAgAQAAGAEAABABAAAYAQAAFwEAAEABAAAcwQAAQkEAACABAAAYAQAAGAEAABABAAAZAQAAMAEAACgBAABAAQAAIAEAACABAAAgAQAAEAEAABgBAAAQAQAAEAEAABABAAAQAQAAGAEAACABAAAQAQAAEAEAABABAAAQAQAADgEAABeBAAANgQAAH8EAABABAAAQAQAAH8EAABABAAAgAQAAGAEAABgBAAAQAQAAKAEAACABAAAwAQAAI8EAACABAAAYAQAAGAEAABABAAAQAQAAIAEAACABAAAgAQAAIAEAACABAAAgAQAAIAEAACABAAAwgQAAEAEAABABAAAQAQAAIAEAADABAAAwAQAAEAEAACABAAAQAQAAIAEAABABAAAQAQAAOAEAACgBAAAQQQAAMcEAABgBAAAgAQAAEAEAABABAAAQAQAAEAEAACABAAAgAQAAEAEAACABAAA4AQAAEAEAABgBAAAYAQAAEAEAABgBAAAYAQAAIAEAABKBAAAgAQAAIAEAACABAAAgAQAAGAEAACABAAAQAQAAIAEAACABAAAgAQAAMAEAADABAAAgAQAAMAEAABABAAAQAQAAMAEAAB/BAAAaQQAAEAEAABABAAAYAQAAEAEAACABAAAgAQAAEwEAABABAAAYAQAAEAEAABJBAAAQAQAAEAEAAEABAAAfwQAAIAEAACABAAAgAQAAEAEAABgBAAAYAQAAIkEAABABAAAgAQAAGAEAACABAAAiQQAAGAEAAAgBAAAPwQAAOAEAABgBAAAgAQAAIAEAACABAAAgAQAAIAEAABgBAAAQAQAAIAEAACLBAAAiwQAAEAEAABABAABAAQAASAEAACJBAAAaQQAAGkEAABJBAAASQQAAIkEAACJBAAARAQAAIAEAACABAAAQAQAAEAEAABzBAAAYAQAAIAEAABABAAAgAQAAIAEAABgBAAAoAQAAKAEAACgBAAAoAQAAIAEAADgBAAAgAQAANEEAADgBAAASQQAAEAEAABABAABAAQAAEEEAACABAAAQAQAAJMEAABABAABgAQAAIAEAACABAAAQAQAAMAEAACgBAAAYAQAAKAEAABgBAAAgAQAAGAEAABgBAAAgAQAAIAEAACgBAAAQAQAAKAEAABABAAAQAQAAIAEAABABAAAQAQAAMAEAABABAAAGQQAABkEAAEgBAAAYAQAAGsEAADGBAAAgAQAAIAAAAAAAAoAFAAeADYAnAEKAVYBtgIkAnQCuAL+A0IDjAPQBBQEVASmBQwFcgXaBkAGWgZ0BooGoAa2Bs4G6gcaB0oHegeqB+4IOAiACMAI8gkmCVwJkAmqCegKDgqQCtALYguwDBIMZAzCDOQNPA1yDbwN+A5KDq4O6g9CD54P0hCEEPoRhhHQEeQSSBKcEs4S5BL6ExATJhN2E7wUHhSgFP4VbBXMFkgWmBb8F4IX2BhqGMgZPho8GsAbyBxcHOAdmB4GHlIewB9CIDQgcCDSIRgheCG2Ih4ihCLkIyQjWCPAI/wkNiRwJJQlDCVaJaYmLCZeJqYm5icyJ5ooCChGKHooxikoKWApvinqKlIqoCr+K0QraCuMK7Qr6iwqLFgspizqLTAtTi1sLZwuHC6ELtAvBC+yMAAwRDByMLAw7jEmMWIxoDHKMhgyXjLiMygzoDQiNOA1ojXWNiI29DdGN7Y4Ijh0OPA5MjmuOkg6sjr6OyY7ljv2PEw8uD0YPYw9xD40Px4/VD+sP+pAkEEYQjxCskMYQ2ZD6kQWRJJEzkUwRWRFzkYmRlpGxEcSR3hIFEhMSL5I6kkgSVZJxEoWSl5KnkraSzZLaku6S+hMPky+TQpNSk2uTeJN/k4cTjpOVk6sTsZPGk9kT7xQElBMUJRQ8lE+UW5RrFHuUjBSqFMmU3hT2FQ6VGZUtFUIVapWElbUVyZXlFgWWEJYpFjiWS5ZvlpIWpJa/lsgW4pb5lxEXGZciFyyXYBd3F4SXnRezl8iX5Zf7mAyYK5hGmFSYaRiCGJgYtBjJmNmY4pj3GQwZFxkimTEZP5lLmWaZahmBmaUZrhnIGdkZ5pn3GgqaH5ooGjAaOJpBGlKaYRpxmnuagZqMmpmappqsmr4ayhrVmuAa+ZsSmyobQhtam20bepuRm6abthu/G9Gb4BvqG/ccDRw6nFQcf5yknMSdEh1CnWGdgx2jncid5J3wHg4eGJ4zHkuAAAAAQAAAXIA4QASAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABABYAAAABAAAAAAACAAcA5wABAAAAAAADABYAYwABAAAAAAAEABYA/AABAAAAAAAFAAsAQgABAAAAAAAGABYApQABAAAAAAAKABoBPgADAAEECQABACwAFgADAAEECQACAA4A7gADAAEECQADACwAeQADAAEECQAEACwBEgADAAEECQAFABYATQADAAEECQAGACwAuwADAAEECQAKADQBWG14LWljb24tc2V0LWxpbmUtc2hhcGUAbQB4AC0AaQBjAG8AbgAtAHMAZQB0AC0AbABpAG4AZQAtAHMAaABhAHAAZVZlcnNpb24gMS4zAFYAZQByAHMAaQBvAG4AIAAxAC4AM214LWljb24tc2V0LWxpbmUtc2hhcGUAbQB4AC0AaQBjAG8AbgAtAHMAZQB0AC0AbABpAG4AZQAtAHMAaABhAHAAZW14LWljb24tc2V0LWxpbmUtc2hhcGUAbQB4AC0AaQBjAG8AbgAtAHMAZQB0AC0AbABpAG4AZQAtAHMAaABhAHAAZVJlZ3VsYXIAUgBlAGcAdQBsAGEAcm14LWljb24tc2V0LWxpbmUtc2hhcGUAbQB4AC0AaQBjAG8AbgAtAHMAZQB0AC0AbABpAG4AZQAtAHMAaABhAHAAZUZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= - Subtype: 0 -Icons: -- $Type: CustomIcons$CustomIcon - CharacterCode: 59648 - Name: add - Tags: - - plus - - new -- $Type: CustomIcons$CustomIcon - CharacterCode: 59649 - Name: add-circle - Tags: - - plus - - new -- $Type: CustomIcons$CustomIcon - CharacterCode: 59650 - Name: airplane - Tags: - - fly - - send - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59651 - Name: alarm-bell - Tags: - - alert -- $Type: CustomIcons$CustomIcon - CharacterCode: 59652 - Name: alarm-bell-off - Tags: - - alert -- $Type: CustomIcons$CustomIcon - CharacterCode: 59653 - Name: alert-circle - Tags: - - danger - - exclamation -- $Type: CustomIcons$CustomIcon - CharacterCode: 59654 - Name: alert-triangle - Tags: - - danger - - exclamation -- $Type: CustomIcons$CustomIcon - CharacterCode: 59655 - Name: align-bottom - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59656 - Name: align-center - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59657 - Name: align-left - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59658 - Name: align-middle - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59659 - Name: align-right - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59660 - Name: align-top - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59661 - Name: analytics-bars - Tags: - - statistics - - chart - - graph - - stats - - histogram -- $Type: CustomIcons$CustomIcon - CharacterCode: 59662 - Name: analytics-graph-bar - Tags: - - statistics - - chart - - graph - - stats - - histogram -- $Type: CustomIcons$CustomIcon - CharacterCode: 59663 - Name: arrow-circle-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59664 - Name: arrow-circle-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59665 - Name: arrow-circle-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59666 - Name: arrow-circle-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59667 - Name: arrow-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59668 - Name: arrow-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59669 - Name: arrow-narrow-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59670 - Name: arrow-narrow-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59671 - Name: arrow-narrow-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59672 - Name: arrow-narrow-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59673 - Name: arrow-right - Tags: - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59674 - Name: arrow-square-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59675 - Name: arrow-square-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59676 - Name: arrow-square-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59677 - Name: arrow-square-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59678 - Name: arrow-thick-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59679 - Name: arrow-thick-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59680 - Name: arrow-thick-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59681 - Name: arrow-thick-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59682 - Name: arrow-triangle-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59683 - Name: arrow-triangle-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59684 - Name: arrow-triangle-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59685 - Name: arrow-triangle-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59686 - Name: arrow-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59687 - Name: arrows-retweet - Tags: - - move - - repeat - - resend - - again -- $Type: CustomIcons$CustomIcon - CharacterCode: 59688 - Name: asterisk - Tags: - - star -- $Type: CustomIcons$CustomIcon - CharacterCode: 59689 - Name: badge - Tags: - - medal -- $Type: CustomIcons$CustomIcon - CharacterCode: 59690 - Name: barcode - Tags: - - scan -- $Type: CustomIcons$CustomIcon - CharacterCode: 59691 - Name: binoculars - Tags: - - zoom -- $Type: CustomIcons$CustomIcon - CharacterCode: 59692 - Name: bitcoin - Tags: - - money - - cripto currency - - blockchain -- $Type: CustomIcons$CustomIcon - CharacterCode: 59693 - Name: blocks - Tags: - - package -- $Type: CustomIcons$CustomIcon - CharacterCode: 59694 - Name: book-closed - Tags: - - read -- $Type: CustomIcons$CustomIcon - CharacterCode: 59695 - Name: book-open - Tags: - - read -- $Type: CustomIcons$CustomIcon - CharacterCode: 59696 - Name: bookmark - Tags: - - flag - - banner -- $Type: CustomIcons$CustomIcon - CharacterCode: 59697 - Name: briefcase - Tags: - - business - - toolbox -- $Type: CustomIcons$CustomIcon - CharacterCode: 59698 - Name: browser - Tags: - - window - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59699 - Name: browser-code - Tags: - - window - - program - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59700 - Name: browser-page-text - Tags: - - window - - progam - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59701 - Name: browser-search - Tags: - - magnifier - - zoom - - window - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59702 - Name: browser-trophy - Tags: - - window - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59703 - Name: calendar - Tags: - - appointment - - schedule -- $Type: CustomIcons$CustomIcon - CharacterCode: 59704 - Name: calendar-1 - Tags: - - appointment - - schedule -- $Type: CustomIcons$CustomIcon - CharacterCode: 59705 - Name: camera - Tags: - - picture - - photo - - record -- $Type: CustomIcons$CustomIcon - CharacterCode: 59706 - Name: camping-tent - Tags: - - tipi -- $Type: CustomIcons$CustomIcon - CharacterCode: 59707 - Name: cash-payment-bill - Tags: - - money - - dollar -- $Type: CustomIcons$CustomIcon - CharacterCode: 59708 - Name: cash-payment-bill-2 - Tags: - - money -- $Type: CustomIcons$CustomIcon - CharacterCode: 59709 - Name: cd - Tags: - - record -- $Type: CustomIcons$CustomIcon - CharacterCode: 59710 - Name: charger - Tags: - - electricity -- $Type: CustomIcons$CustomIcon - CharacterCode: 59711 - Name: checkmark - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59712 - Name: checkmark-circle - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59713 - Name: checkmark-shield - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59714 - Name: checkmark-square - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59715 - Name: chevron-down - Tags: - - download - - save - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59716 - Name: chevron-left - Tags: - - incoming - - arrow - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59717 - Name: chevron-right - Tags: - - outgoing - - arrow - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59718 - Name: chevron-up - Tags: - - upload - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59719 - Name: cloud - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59720 - Name: cloud-check - Tags: - - deploy - - ok - - accept - - mark - - box - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59721 - Name: cloud-data-transfer - Tags: - - deploy - - exchange - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59722 - Name: cloud-disable - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59723 - Name: cloud-download - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59724 - Name: cloud-lock - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59725 - Name: cloud-off - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59726 - Name: cloud-refresh - Tags: - - deploy - - repeat - - renew -- $Type: CustomIcons$CustomIcon - CharacterCode: 59727 - Name: cloud-remove - Tags: - - deploy - - minus -- $Type: CustomIcons$CustomIcon - CharacterCode: 59728 - Name: cloud-search - Tags: - - deploy - - magnifier - - zoom -- $Type: CustomIcons$CustomIcon - CharacterCode: 59729 - Name: cloud-settings - Tags: - - deploy - - cog - - options - - wrench -- $Type: CustomIcons$CustomIcon - CharacterCode: 59730 - Name: cloud-subtract - Tags: - - deploy - - minus - - remove -- $Type: CustomIcons$CustomIcon - CharacterCode: 59731 - Name: cloud-sync - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59732 - Name: cloud-upload - Tags: - - deploy - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59733 - Name: cloud-warning - Tags: - - deploy - - error -- $Type: CustomIcons$CustomIcon - CharacterCode: 59734 - Name: cog - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59735 - Name: cog-hand-give - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59736 - Name: cog-play - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59737 - Name: cog-shield - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59738 - Name: color-bucket-brush - Tags: - - tint - - drop - - ink - - font -- $Type: CustomIcons$CustomIcon - CharacterCode: 59739 - Name: color-painting-palette - Tags: - - tint - - drop - - ink - - font -- $Type: CustomIcons$CustomIcon - CharacterCode: 59740 - Name: compass-directions - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59741 - Name: compressed - Tags: - - zip -- $Type: CustomIcons$CustomIcon - CharacterCode: 59742 - Name: computer-chip - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59743 - Name: connect - Tags: - - link -- $Type: CustomIcons$CustomIcon - CharacterCode: 59744 - Name: connect-1 - Tags: - - link -- $Type: CustomIcons$CustomIcon - CharacterCode: 59745 - Name: console-terminal - Tags: - - prompt - - type -- $Type: CustomIcons$CustomIcon - CharacterCode: 59746 - Name: contacts - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59747 - Name: contrast - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59748 - Name: controls-backward - Tags: - - rewind -- $Type: CustomIcons$CustomIcon - CharacterCode: 59749 - Name: controls-eject - Tags: - - out -- $Type: CustomIcons$CustomIcon - CharacterCode: 59750 - Name: controls-fast-backward - Tags: - - rewind -- $Type: CustomIcons$CustomIcon - CharacterCode: 59751 - Name: controls-fast-forward - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59752 - Name: controls-forward - Tags: - - fast -- $Type: CustomIcons$CustomIcon - CharacterCode: 59753 - Name: controls-pause - Tags: - - wait -- $Type: CustomIcons$CustomIcon - CharacterCode: 59754 - Name: controls-play - Tags: - - start -- $Type: CustomIcons$CustomIcon - CharacterCode: 59755 - Name: controls-record - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59756 - Name: controls-shuffle - Tags: - - random -- $Type: CustomIcons$CustomIcon - CharacterCode: 59757 - Name: controls-step-backward - Tags: - - rewind -- $Type: CustomIcons$CustomIcon - CharacterCode: 59758 - Name: controls-step-forward - Tags: - - fast -- $Type: CustomIcons$CustomIcon - CharacterCode: 59759 - Name: controls-stop - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59760 - Name: controls-volume-full - Tags: - - eq -- $Type: CustomIcons$CustomIcon - CharacterCode: 59761 - Name: controls-volume-low - Tags: - - eq -- $Type: CustomIcons$CustomIcon - CharacterCode: 59762 - Name: controls-volume-off - Tags: - - eq -- $Type: CustomIcons$CustomIcon - CharacterCode: 59763 - Name: conversation-question-warning - Tags: - - speech - - bubble -- $Type: CustomIcons$CustomIcon - CharacterCode: 59764 - Name: copy - Tags: - - clipboard - - duplicate - - clone -- $Type: CustomIcons$CustomIcon - CharacterCode: 59765 - Name: credit-card - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59766 - Name: crossroad-sign - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59767 - Name: cube - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59768 - Name: cutlery - Tags: - - eat - - fork - - knife -- $Type: CustomIcons$CustomIcon - CharacterCode: 59769 - Name: dashboard - Tags: - - overview - - kpi - - okr -- $Type: CustomIcons$CustomIcon - CharacterCode: 59770 - Name: data-transfer - Tags: - - exchange - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59771 - Name: desktop - Tags: - - computer -- $Type: CustomIcons$CustomIcon - CharacterCode: 59772 - Name: diamond - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59773 - Name: direction-buttons - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59774 - Name: direction-buttons-arrows - Tags: - - move - - pan -- $Type: CustomIcons$CustomIcon - CharacterCode: 59775 - Name: disable - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59776 - Name: document - Tags: - - file - - new - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59777 - Name: document-open - Tags: - - file - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59778 - Name: document-save - Tags: - - file - - paper - - store -- $Type: CustomIcons$CustomIcon - CharacterCode: 59779 - Name: dollar - Tags: - - usd - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59780 - Name: double-bed - Tags: - - sleep -- $Type: CustomIcons$CustomIcon - CharacterCode: 59781 - Name: double-chevron-left - Tags: - - arrows - - incoming - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59782 - Name: double-chevron-right - Tags: - - arrows - - outgoing - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59783 - Name: download-bottom - Tags: - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59784 - Name: download-button - Tags: - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59785 - Name: duplicate - Tags: - - clone - - copy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59786 - Name: email - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59787 - Name: equalizer - Tags: - - audio -- $Type: CustomIcons$CustomIcon - CharacterCode: 59788 - Name: eraser - Tags: - - delete -- $Type: CustomIcons$CustomIcon - CharacterCode: 59789 - Name: euro - Tags: - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59790 - Name: expand-horizontal - Tags: - - fullscreen - - maximize -- $Type: CustomIcons$CustomIcon - CharacterCode: 59791 - Name: expand-vertical - Tags: - - fullscreen - - maximize -- $Type: CustomIcons$CustomIcon - CharacterCode: 59792 - Name: external - Tags: - - open -- $Type: CustomIcons$CustomIcon - CharacterCode: 59793 - Name: file-pdf - Tags: - - new - - document - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59794 - Name: file-zip - Tags: - - new - - document - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59795 - Name: film - Tags: - - movie - - video -- $Type: CustomIcons$CustomIcon - CharacterCode: 59796 - Name: filter - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59797 - Name: fire - Tags: - - flame -- $Type: CustomIcons$CustomIcon - CharacterCode: 59798 - Name: flag - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59799 - Name: flash - Tags: - - event - - lightning -- $Type: CustomIcons$CustomIcon - CharacterCode: 59800 - Name: floppy-disk - Tags: - - hdd - - drive - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59801 - Name: floppy-disk-arrow-down - Tags: - - hdd - - drive - - harddisk - - download - - save - - incoming - - import -- $Type: CustomIcons$CustomIcon - CharacterCode: 59802 - Name: floppy-disk-arrow-up - Tags: - - hdd - - drive - - harddisk - - upload - - outgoing - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59803 - Name: floppy-disk-checkmark - Tags: - - hdd - - drive - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59804 - Name: floppy-disk-group - Tags: - - hdd - - drive - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59805 - Name: floppy-disk-remove - Tags: - - hdd - - drive - - harddisk - - delete - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59806 - Name: folder-closed - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59807 - Name: folder-open - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59808 - Name: folder-upload - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59809 - Name: fruit-apple - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59810 - Name: fullscreen - Tags: - - stretch - - maximize - - expand -- $Type: CustomIcons$CustomIcon - CharacterCode: 59811 - Name: gift - Tags: - - box - - present - - christmas -- $Type: CustomIcons$CustomIcon - CharacterCode: 59812 - Name: github - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59813 - Name: globe - Tags: - - www - - web - - planet - - earth - - atlas - - world -- $Type: CustomIcons$CustomIcon - CharacterCode: 59814 - Name: globe-1 - Tags: - - www - - web - - planet - - earth - - atlas - - world -- $Type: CustomIcons$CustomIcon - CharacterCode: 59815 - Name: graduation-hat - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59816 - Name: hammer - Tags: - - tools - - toolbox -- $Type: CustomIcons$CustomIcon - CharacterCode: 59817 - Name: hammer-wench - Tags: - - tools - - toolbox -- $Type: CustomIcons$CustomIcon - CharacterCode: 59818 - Name: hand-down - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59819 - Name: hand-left - Tags: - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59820 - Name: hand-right - Tags: - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59821 - Name: hand-up - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59822 - Name: handshake-business - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59823 - Name: hard-drive - Tags: - - hdd - - disk - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59824 - Name: headphones - Tags: - - music - - listen - - audio -- $Type: CustomIcons$CustomIcon - CharacterCode: 59825 - Name: headphones-mic - Tags: - - music - - listen - - audio -- $Type: CustomIcons$CustomIcon - CharacterCode: 59826 - Name: heart - Tags: - - love -- $Type: CustomIcons$CustomIcon - CharacterCode: 59827 - Name: hierarchy-files - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59828 - Name: home - Tags: - - house -- $Type: CustomIcons$CustomIcon - CharacterCode: 59829 - Name: hourglass - Tags: - - wait - - patience -- $Type: CustomIcons$CustomIcon - CharacterCode: 59830 - Name: hyperlink - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59831 - Name: image - Tags: - - picture -- $Type: CustomIcons$CustomIcon - CharacterCode: 59832 - Name: image-collection - Tags: - - picture -- $Type: CustomIcons$CustomIcon - CharacterCode: 59833 - Name: images - Tags: - - picture -- $Type: CustomIcons$CustomIcon - CharacterCode: 59834 - Name: info-circle - Tags: - - information -- $Type: CustomIcons$CustomIcon - CharacterCode: 59835 - Name: laptop - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59836 - Name: layout - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59837 - Name: layout-1 - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59838 - Name: layout-2 - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59839 - Name: layout-column - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59840 - Name: layout-horizontal - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59841 - Name: layout-list - Tags: - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59842 - Name: layout-rounded - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59843 - Name: layout-rounded-1 - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59844 - Name: leaf - Tags: - - green -- $Type: CustomIcons$CustomIcon - CharacterCode: 59845 - Name: legal-certificate - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59846 - Name: lego-block-stack - Tags: - - build -- $Type: CustomIcons$CustomIcon - CharacterCode: 59847 - Name: light-bulb-shine - Tags: - - lamp -- $Type: CustomIcons$CustomIcon - CharacterCode: 59848 - Name: list-bullets - Tags: - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59849 - Name: location-pin - Tags: - - point -- $Type: CustomIcons$CustomIcon - CharacterCode: 59850 - Name: lock - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59851 - Name: lock-key - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59852 - Name: login - Tags: - - enter - - write -- $Type: CustomIcons$CustomIcon - CharacterCode: 59853 - Name: login-1 - Tags: - - enter - - write -- $Type: CustomIcons$CustomIcon - CharacterCode: 59854 - Name: login-2 - Tags: - - enter - - write -- $Type: CustomIcons$CustomIcon - CharacterCode: 59855 - Name: logout - Tags: - - exit -- $Type: CustomIcons$CustomIcon - CharacterCode: 59856 - Name: logout-1 - Tags: - - exit -- $Type: CustomIcons$CustomIcon - CharacterCode: 59857 - Name: luggage-travel - Tags: - - baggage -- $Type: CustomIcons$CustomIcon - CharacterCode: 59858 - Name: magnet - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59859 - Name: map-location-pin - Tags: - - point -- $Type: CustomIcons$CustomIcon - CharacterCode: 59860 - Name: martini - Tags: - - drink -- $Type: CustomIcons$CustomIcon - CharacterCode: 59861 - Name: megaphone - Tags: - - speaker -- $Type: CustomIcons$CustomIcon - CharacterCode: 59862 - Name: message-bubble - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59863 - Name: message-bubble-add - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59864 - Name: message-bubble-check - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59865 - Name: message-bubble-disable - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59866 - Name: message-bubble-edit - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59867 - Name: message-bubble-information - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59868 - Name: message-bubble-quotation - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59869 - Name: message-bubble-remove - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59870 - Name: message-bubble-typing - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59871 - Name: mobile-phone - Tags: - - call - - device - - telephone - - speak - - talk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59872 - Name: modal-window - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59873 - Name: monitor - Tags: - - screen -- $Type: CustomIcons$CustomIcon - CharacterCode: 59874 - Name: monitor-camera - Tags: - - screen - - video - - movei -- $Type: CustomIcons$CustomIcon - CharacterCode: 59875 - Name: monitor-cash - Tags: - - money -- $Type: CustomIcons$CustomIcon - CharacterCode: 59876 - Name: monitor-e-learning - Tags: - - training -- $Type: CustomIcons$CustomIcon - CharacterCode: 59877 - Name: monitor-pie-line-graph - Tags: - - charts - - stats - - histogram -- $Type: CustomIcons$CustomIcon - CharacterCode: 59878 - Name: moon-new - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59879 - Name: mountain-flag - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59880 - Name: move-down - Tags: - - arrows - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59881 - Name: move-left - Tags: - - back - - arrows - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59882 - Name: move-right - Tags: - - forward - - arrows - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59883 - Name: move-up - Tags: - - arrows - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59884 - Name: music-note - Tags: - - audio - - notes - - headphones - - listen -- $Type: CustomIcons$CustomIcon - CharacterCode: 59885 - Name: navigation-menu - Tags: - - list -- $Type: CustomIcons$CustomIcon - CharacterCode: 59886 - Name: navigation-next - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59887 - Name: notes-checklist - Tags: - - write - - todo -- $Type: CustomIcons$CustomIcon - CharacterCode: 59888 - Name: notes-checklist-flip - Tags: - - write - - todo -- $Type: CustomIcons$CustomIcon - CharacterCode: 59889 - Name: notes-paper-edit - Tags: - - pencil - - write - - page -- $Type: CustomIcons$CustomIcon - CharacterCode: 59890 - Name: notes-paper-text - Tags: - - write - - page -- $Type: CustomIcons$CustomIcon - CharacterCode: 59891 - Name: office-sheet - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59892 - Name: org-chart - Tags: - - graph -- $Type: CustomIcons$CustomIcon - CharacterCode: 59893 - Name: paper-clipboard - Tags: - - document - - paste -- $Type: CustomIcons$CustomIcon - CharacterCode: 59894 - Name: paper-holder - Tags: - - document -- $Type: CustomIcons$CustomIcon - CharacterCode: 59895 - Name: paper-holder-full - Tags: - - document -- $Type: CustomIcons$CustomIcon - CharacterCode: 59896 - Name: paper-list - Tags: - - document - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59897 - Name: paper-plane - Tags: - - document - - send - - airplane - - fly -- $Type: CustomIcons$CustomIcon - CharacterCode: 59898 - Name: paperclip - Tags: - - attachment -- $Type: CustomIcons$CustomIcon - CharacterCode: 59899 - Name: password-lock - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59900 - Name: password-type - Tags: - - console - - prompt -- $Type: CustomIcons$CustomIcon - CharacterCode: 59901 - Name: paste - Tags: - - clipboard -- $Type: CustomIcons$CustomIcon - CharacterCode: 59902 - Name: pen-write-paper - Tags: - - pencil - - notes -- $Type: CustomIcons$CustomIcon - CharacterCode: 59903 - Name: pencil - Tags: - - write - - notes -- $Type: CustomIcons$CustomIcon - CharacterCode: 59904 - Name: pencil-write-paper - Tags: - - notes - - edit -- $Type: CustomIcons$CustomIcon - CharacterCode: 59905 - Name: performance-graph-calculator - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59906 - Name: phone - Tags: - - call - - telephone - - dial - - speak - - talk - - hang -- $Type: CustomIcons$CustomIcon - CharacterCode: 59907 - Name: phone-handset - Tags: - - call - - telephone - - dial - - speak - - talk - - hang -- $Type: CustomIcons$CustomIcon - CharacterCode: 59908 - Name: piggy-bank - Tags: - - money -- $Type: CustomIcons$CustomIcon - CharacterCode: 59909 - Name: pin - Tags: - - point - - location -- $Type: CustomIcons$CustomIcon - CharacterCode: 59910 - Name: plane-ticket - Tags: - - fly - - airplane -- $Type: CustomIcons$CustomIcon - CharacterCode: 59911 - Name: play-circle - Tags: - - start -- $Type: CustomIcons$CustomIcon - CharacterCode: 59912 - Name: pound-sterling - Tags: - - gbp - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59913 - Name: power-button - Tags: - - shut down - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59914 - Name: print - Tags: - - printer -- $Type: CustomIcons$CustomIcon - CharacterCode: 59915 - Name: progress-bars - Tags: - - tasks - - todo - - list -- $Type: CustomIcons$CustomIcon - CharacterCode: 59916 - Name: qr-code - Tags: - - scan -- $Type: CustomIcons$CustomIcon - CharacterCode: 59917 - Name: question-circle - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59918 - Name: redo - Tags: - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59919 - Name: refresh - Tags: - - repeat - - continuous - - recycle - - renew -- $Type: CustomIcons$CustomIcon - CharacterCode: 59920 - Name: remove - Tags: - - delete - - cross - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59921 - Name: remove-circle - Tags: - - delete - - cross - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59922 - Name: remove-shield - Tags: - - delete - - cross - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59923 - Name: repeat - Tags: - - continuous - - refresh - - recycle - - renew -- $Type: CustomIcons$CustomIcon - CharacterCode: 59924 - Name: resize-full - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59925 - Name: resize-small - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59926 - Name: road - Tags: - - highway - - motorway -- $Type: CustomIcons$CustomIcon - CharacterCode: 59927 - Name: robot-head - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59928 - Name: rss-feed - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59929 - Name: ruble - Tags: - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59930 - Name: scissors - Tags: - - cut -- $Type: CustomIcons$CustomIcon - CharacterCode: 59931 - Name: search - Tags: - - magnifier - - zoom -- $Type: CustomIcons$CustomIcon - CharacterCode: 59932 - Name: server - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59933 - Name: settings-slider - Tags: - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59934 - Name: settings-slider-1 - Tags: - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59935 - Name: share - Tags: - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59936 - Name: share-1 - Tags: - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59937 - Name: share-arrow - Tags: - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59938 - Name: shipment-box - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59939 - Name: shopping-cart - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59940 - Name: shopping-cart-full - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59941 - Name: signal-full - Tags: - - wireless - - network - - volume - - charge - - battery - - reception -- $Type: CustomIcons$CustomIcon - CharacterCode: 59942 - Name: smart-house-garage - Tags: - - home - - remote -- $Type: CustomIcons$CustomIcon - CharacterCode: 59943 - Name: smart-watch-circle - Tags: - - gadget - - device -- $Type: CustomIcons$CustomIcon - CharacterCode: 59944 - Name: smart-watch-square - Tags: - - gadget - - device -- $Type: CustomIcons$CustomIcon - CharacterCode: 59945 - Name: sort - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59946 - Name: sort-alphabet-ascending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59947 - Name: sort-alphabet-descending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59948 - Name: sort-ascending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59949 - Name: sort-descending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59950 - Name: sort-numerical-ascending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59951 - Name: sort-numerical-descending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59952 - Name: star - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59953 - Name: stopwatch - Tags: - - time - - duration -- $Type: CustomIcons$CustomIcon - CharacterCode: 59954 - Name: substract - Tags: - - minus - - remove -- $Type: CustomIcons$CustomIcon - CharacterCode: 59955 - Name: subtract-circle - Tags: - - minus - - remove -- $Type: CustomIcons$CustomIcon - CharacterCode: 59956 - Name: sun - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59957 - Name: swap - Tags: - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59958 - Name: synchronize-arrow-clock - Tags: - - time -- $Type: CustomIcons$CustomIcon - CharacterCode: 59959 - Name: table-lamp - Tags: - - light - - bedlamp -- $Type: CustomIcons$CustomIcon - CharacterCode: 59960 - Name: tablet - Tags: - - device -- $Type: CustomIcons$CustomIcon - CharacterCode: 59961 - Name: tag - Tags: - - price -- $Type: CustomIcons$CustomIcon - CharacterCode: 59962 - Name: tag-group - Tags: - - price -- $Type: CustomIcons$CustomIcon - CharacterCode: 59963 - Name: task-list-multiple - Tags: - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59964 - Name: text-align-center - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59965 - Name: text-align-justify - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59966 - Name: text-align-left - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59967 - Name: text-align-right - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59968 - Name: text-background - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59969 - Name: text-bold - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59970 - Name: text-color - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59971 - Name: text-font - Tags: - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59972 - Name: text-header - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59973 - Name: text-height - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59974 - Name: text-indent-left - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59975 - Name: text-indent-right - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59976 - Name: text-italic - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59977 - Name: text-size - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59978 - Name: text-subscript - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59979 - Name: text-superscript - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59980 - Name: text-width - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59981 - Name: three-dots-menu-horizontal - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59982 - Name: three-dots-menu-vertical - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59983 - Name: thumbs-down - Tags: - - bad - - like - - decline -- $Type: CustomIcons$CustomIcon - CharacterCode: 59984 - Name: thumbs-up - Tags: - - good - - like - - accept -- $Type: CustomIcons$CustomIcon - CharacterCode: 59985 - Name: time-clock - Tags: - - duration -- $Type: CustomIcons$CustomIcon - CharacterCode: 59986 - Name: tint - Tags: - - drop - - color - - ink -- $Type: CustomIcons$CustomIcon - CharacterCode: 59987 - Name: trash-can - Tags: - - garbage - - delete - - bin -- $Type: CustomIcons$CustomIcon - CharacterCode: 59988 - Name: tree - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59989 - Name: trophy - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59990 - Name: ui-webpage-slider - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59991 - Name: unchecked - Tags: - - box -- $Type: CustomIcons$CustomIcon - CharacterCode: 59992 - Name: undo - Tags: - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59993 - Name: unlock - Tags: - - open -- $Type: CustomIcons$CustomIcon - CharacterCode: 59994 - Name: upload-bottom - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59995 - Name: upload-button - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59996 - Name: user - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 59997 - Name: user-3d-box - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 59998 - Name: user-man - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 59999 - Name: user-neutral-group - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60000 - Name: user-neutral-pair - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60001 - Name: user-neutral-shield - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60002 - Name: user-neutral-sync - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60003 - Name: user-pair - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60004 - Name: user-woman - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60005 - Name: video-camera - Tags: - - film - - movie - - picture - - photo - - record -- $Type: CustomIcons$CustomIcon - CharacterCode: 60006 - Name: view - Tags: - - eye - - visible -- $Type: CustomIcons$CustomIcon - CharacterCode: 60007 - Name: view-off - Tags: - - eye - - invisible -- $Type: CustomIcons$CustomIcon - CharacterCode: 60008 - Name: wheat - Tags: - - gluten -- $Type: CustomIcons$CustomIcon - CharacterCode: 60009 - Name: whiteboard - Tags: - - teach -- $Type: CustomIcons$CustomIcon - CharacterCode: 60010 - Name: wrench - Tags: - - settings - - tools -- $Type: CustomIcons$CustomIcon - CharacterCode: 60011 - Name: yen - Tags: - - money - - currency - - japan -- $Type: CustomIcons$CustomIcon - CharacterCode: 60012 - Name: zoom-in - Tags: - - search - - magnifier -- $Type: CustomIcons$CustomIcon - CharacterCode: 60013 - Name: zoom-out - Tags: - - search - - magnifier -Name: Atlas -Prefix: mx-icon diff --git a/resources/App/modelsource/Atlas_Core/Atlas_Filled.CustomIcons$CustomIconCollection.yaml b/resources/App/modelsource/Atlas_Core/Atlas_Filled.CustomIcons$CustomIconCollection.yaml deleted file mode 100644 index 16e8c12..0000000 --- a/resources/App/modelsource/Atlas_Core/Atlas_Filled.CustomIcons$CustomIconCollection.yaml +++ /dev/null @@ -1,2087 +0,0 @@ -$Type: CustomIcons$CustomIconCollection -CollectionClass: mx-icon-filled -Documentation: "" -Excluded: false -ExportLevel: Hidden -FontData: - Data: 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4yZZMUI6O1cZGRkZVzs6QkI6O1cZGRwZ4loBU4CAAAAAAQAAAAFMzbA0qSlfDzz1AAsEAAAAAADgJQ8JAAAAAOAlDwkAAP+uA/kDUAAAAAgAAgAAAAAAAAABAAADgP+AAAAEAAAAAAAD+QABAAAAAAAAAAAAAAAAAAABcgQAAAAAAAAAAAAAAAIAAAAEAACABAAAQAQAAIAEAACABAAASgQAAEAEAABJBAAAQAQAAKAEAACABAAAQAQAAIAEAABABAAAQAQAAD8EAABABAAAQAQAAEAEAABABAAAcwQAAGUEAADzBAAAZQQAAIAEAADzBAAAgAQAAIAEAACABAAAgAQAAIAEAAD5BAAAigQAAIAEAAD5BAAAhAQAAM0EAADABAAAhAQAAHMEAABCBAAAagQAAOAEAACABAAAPwQAAMAEAABgBAAAwAQAAEAEAADABAAAYAQAAEAEAABABAAAQAQAAEAEAABABAAAgAQAAIAEAABABAAAVgQAAEAEAAA7BAAAQAQAAGAEAABsBAAAQAQAAIMEAACABAAAcwQAAQUEAAETBAAAcwQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEgEAABABAAAPwQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAHgEAABABAAAeAQAAIMEAACgBAAAQAQAAEAEAACABAAAYAQAAHAEAABQBAAAQAQAAKAEAABABAAAcAQAAN8EAABABAAAQAQAAIAEAADABAABQAQAAEAEAABABAABAAQAAQAEAADABAAAYAQAAKAEAABgBAAAgAQAAIAEAABgBAAAgAQAAIAEAACgBAAAQAQAAEcEAABgBAAAZwQAAEAEAAA8BAAAQAQAAMAEAABABAAAQAQAAQAEAABABAAARQQAAHMEAABgBAAAYAQAAGAEAABABAAAQAQAAFwEAAEABAAARQQAAPMEAACABAAAYAQAAGAEAABABAAAgQQAAMAEAACgBAABDwQAAIAEAACABAAAgAQAAEAEAABgBAAAQAQAAEAEAABABAAAQAQAAGAEAABgBAAAQAQAAEAEAABABAAAQgQAAEAEAACLBAAAYgQAAKAEAABgBAAAQAQAAKAEAABABAAAgAQAAEAEAABABAAAQAQAAKAEAACABAAAwAQAAFMEAACABAAAYAQAAGAEAABABAAAQAQAAIAEAACABAAAgAQAAIAEAACABAAAgAQAAIAEAACABAAAwgQAAEAEAABABAAAQAQAAIAEAADABAAAwAQAAEAEAACGBAAAQAQAAIAEAABABAAAQAQAAOUEAACgBAAAQQQAAMcEAABgBAAAgAQAAEAEAABABAAAQAQAAEAEAACABAAAgAQAAEAEAACABAAA4AQAAEAEAABgBAAAYAQAAEAEAABcBAAAYAQAAIAEAABKBAAAgAQAAGAEAABABAAAgAQAAGAEAACABAAAQAQAAIAEAACABAAAgAQAAMAEAADABAAAgAQAAMAEAABABAAAQAQAAMAEAACOBAAAagQAAEAEAABABAAAYAQAAEAEAACABAAAgAQAAEwEAABABAAAbAQAAEAEAABJBAAAOwQAAEAEAAEABAAAXwQAAIAEAACABAAAgAQAAEAEAABABAAAPwQAAHMEAABABAAAgwQAAEAEAABgBAAAUwQAAGAEAABABAAAPgQAAOAEAABQBAAAYAQAAIAEAACABAAAgAQAAGAEAACABAAAYAQAAIAEAACLBAAAiwQAAEAEAABABAABAAQAASAEAACHBAAAZwQAAGcEAABnBAAAZwQAAIcEAACHBAAARAQAAIAEAACABAAAQAQAAEAEAABFBAAAQAQAAIAEAABABAAAgAQAAIAEAABgBAAAoAQAAKAEAACgBAAAoAQAAIAEAADABAAAgAQAALgEAADABAAASQQAAD4EAABABAABAAQAAAUEAACABAAAQAQAAJMEAABABAABgAQAAIAEAACABAAAQAQAAMAEAACgBAAAYAQAAKAEAABgBAAAgAQAAEAEAABgBAAAYAQAAGAEAACgBAAAUQQAAKAEAABABAAAQAQAAIAEAABABAAAQAQAAMAEAABABAAAGQQAABkEAAEgBAAAYAQAAKUEAACtBAAAgAQAAIAAAAAAAAoAFAAeADgAdgCuAN4BHAFoAaAB2AIUAkwCiALAAvgDJgNmA6YD5gQmBGYEfgSWBK4EyATiBPoFFAU+BWgFkgW8BeIGCAYuBlQGcAaMBqYGwAbYByQHSAeqB+oIVAigCOgJIglsCYYJ0gn2CjgKcArICxwLSAuOC+QMBgyoDPwNUA2ODaQN4A4WDkAOVA5qDoAOlA6+DwwPag/iEEAQphDmEWARuhIYEsAS8hOQE/YUcBT0FWwV8hakFvgXdhe0F/gYYBi0GUYZfBm0GfoaLBpMGoQavBruGx4bOBugG+gcDBwwHE4csBzmHRodkh28HfYeJh5mHqIfDh9cH5Af5CAmIFwguCDaITghgCHeIh4iQiJoIpIi2CMMIzYjkCPAJA4kMiRWJJAlECV6Jbwl2iZAJnYmribQJygnyigMKDooiiiqKOwpPimEKcoqNCq2KzAryivuLBIsXCyKLMIs+i0qLYgtyi44LsIu/i88L1gvqjAMMEgwnjDqMT4xaDHGMoAysjL2MyozrDP0NIY06jViNZg1+DZ4Nrw28jdYN5439Dg6OIA41DkWOVo50joEOkA6YDqUOsA7Mjt2O7I76jwuPH48rDz0PRo9aD3sPjI+aj6mPtI+8j8SPzI/UD98P8JADkBOQJZA4EESQUpBokHaQfxCLEJ2Qp5DFkOQQ9pEKER4RJpE2EUmRZpF4EZgRphG5kc4R2JHuEfsSCxIvEkeSXBJ6koOSlJKuEseS0BLYkuYTAZMUkyGTOZNQE2OTdpOFE5gTqZO2E8CT0pPpE/qUEhQlFDQURZRelHcUhhSVlKiUu5TDFNOU1xTklP4VCBUllTEVPJVNFWCVc5V8FYQVjJWVFaSVthXFFc6V1JXele+WAJYGlhcWIxYuljiWRpZUFmCWbRZ7Fo2WmRapFruWyRbSFuaW85b+Fw+XHRcvl0GXXZd0l4mXpxfMl+SX9xgImB6YLxg5GEeYUhhimHEAAAAAQAAAXIAkAAOAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABABIAAAABAAAAAAACAAcAwwABAAAAAAADABIAVwABAAAAAAAEABIA2AABAAAAAAAFAAsANgABAAAAAAAGABIAjQABAAAAAAAKABoBDgADAAEECQABACQAEgADAAEECQACAA4AygADAAEECQADACQAaQADAAEECQAEACQA6gADAAEECQAFABYAQQADAAEECQAGACQAnwADAAEECQAKADQBKG14LWljb24tc2V0LWZpbGxlZABtAHgALQBpAGMAbwBuAC0AcwBlAHQALQBmAGkAbABsAGUAZFZlcnNpb24gMS4zAFYAZQByAHMAaQBvAG4AIAAxAC4AM214LWljb24tc2V0LWZpbGxlZABtAHgALQBpAGMAbwBuAC0AcwBlAHQALQBmAGkAbABsAGUAZG14LWljb24tc2V0LWZpbGxlZABtAHgALQBpAGMAbwBuAC0AcwBlAHQALQBmAGkAbABsAGUAZFJlZ3VsYXIAUgBlAGcAdQBsAGEAcm14LWljb24tc2V0LWZpbGxlZABtAHgALQBpAGMAbwBuAC0AcwBlAHQALQBmAGkAbABsAGUAZEZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= - Subtype: 0 -Icons: -- $Type: CustomIcons$CustomIcon - CharacterCode: 59648 - Name: add - Tags: - - plus - - new -- $Type: CustomIcons$CustomIcon - CharacterCode: 59649 - Name: add-circle - Tags: - - plus - - new -- $Type: CustomIcons$CustomIcon - CharacterCode: 59650 - Name: airplane - Tags: - - fly - - send - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59651 - Name: alarm-bell - Tags: - - alert -- $Type: CustomIcons$CustomIcon - CharacterCode: 59652 - Name: alarm-bell-off - Tags: - - alert -- $Type: CustomIcons$CustomIcon - CharacterCode: 59653 - Name: alert-circle - Tags: - - danger - - exclamation -- $Type: CustomIcons$CustomIcon - CharacterCode: 59654 - Name: alert-triangle - Tags: - - danger - - exclamation -- $Type: CustomIcons$CustomIcon - CharacterCode: 59655 - Name: align-bottom - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59656 - Name: align-center - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59657 - Name: align-left - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59658 - Name: align-middle - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59659 - Name: align-right - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59660 - Name: align-top - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59661 - Name: analytics-bars - Tags: - - statistics - - chart - - graph - - stats - - histogram -- $Type: CustomIcons$CustomIcon - CharacterCode: 59662 - Name: analytics-graph-bar - Tags: - - statistics - - chart - - graph - - stats - - histogram -- $Type: CustomIcons$CustomIcon - CharacterCode: 59663 - Name: arrow-circle-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59664 - Name: arrow-circle-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59665 - Name: arrow-circle-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59666 - Name: arrow-circle-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59667 - Name: arrow-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59668 - Name: arrow-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59669 - Name: arrow-narrow-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59670 - Name: arrow-narrow-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59671 - Name: arrow-narrow-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59672 - Name: arrow-narrow-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59673 - Name: arrow-right - Tags: - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59674 - Name: arrow-square-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59675 - Name: arrow-square-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59676 - Name: arrow-square-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59677 - Name: arrow-square-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59678 - Name: arrow-thick-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59679 - Name: arrow-thick-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59680 - Name: arrow-thick-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59681 - Name: arrow-thick-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59682 - Name: arrow-triangle-down - Tags: - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59683 - Name: arrow-triangle-left - Tags: - - back - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59684 - Name: arrow-triangle-right - Tags: - - forward - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59685 - Name: arrow-triangle-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59686 - Name: arrow-up - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59687 - Name: arrows-retweet - Tags: - - move - - repeat - - resend - - again -- $Type: CustomIcons$CustomIcon - CharacterCode: 59688 - Name: asterisk - Tags: - - star -- $Type: CustomIcons$CustomIcon - CharacterCode: 59689 - Name: badge - Tags: - - medal -- $Type: CustomIcons$CustomIcon - CharacterCode: 59690 - Name: barcode - Tags: - - scan -- $Type: CustomIcons$CustomIcon - CharacterCode: 59691 - Name: binoculars - Tags: - - zoom -- $Type: CustomIcons$CustomIcon - CharacterCode: 59692 - Name: bitcoin - Tags: - - money - - cripto currency - - blockchain -- $Type: CustomIcons$CustomIcon - CharacterCode: 59693 - Name: blocks - Tags: - - package -- $Type: CustomIcons$CustomIcon - CharacterCode: 59694 - Name: book-closed - Tags: - - read -- $Type: CustomIcons$CustomIcon - CharacterCode: 59695 - Name: book-open - Tags: - - read -- $Type: CustomIcons$CustomIcon - CharacterCode: 59696 - Name: bookmark - Tags: - - flag - - banner -- $Type: CustomIcons$CustomIcon - CharacterCode: 59697 - Name: briefcase - Tags: - - business - - toolbox -- $Type: CustomIcons$CustomIcon - CharacterCode: 59698 - Name: browser - Tags: - - window - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59699 - Name: browser-code - Tags: - - window - - program - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59700 - Name: browser-page-text - Tags: - - window - - progam - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59701 - Name: browser-search - Tags: - - magnifier - - zoom - - window - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59702 - Name: browser-trophy - Tags: - - window - - app -- $Type: CustomIcons$CustomIcon - CharacterCode: 59703 - Name: calendar - Tags: - - appointment - - schedule -- $Type: CustomIcons$CustomIcon - CharacterCode: 59704 - Name: calendar-1 - Tags: - - appointment - - schedule -- $Type: CustomIcons$CustomIcon - CharacterCode: 59705 - Name: camera - Tags: - - picture - - photo - - record -- $Type: CustomIcons$CustomIcon - CharacterCode: 59706 - Name: camping-tent - Tags: - - tipi -- $Type: CustomIcons$CustomIcon - CharacterCode: 59707 - Name: cash-payment-bill - Tags: - - money - - dollar -- $Type: CustomIcons$CustomIcon - CharacterCode: 59708 - Name: cash-payment-bill-2 - Tags: - - money -- $Type: CustomIcons$CustomIcon - CharacterCode: 59709 - Name: cd - Tags: - - record -- $Type: CustomIcons$CustomIcon - CharacterCode: 59710 - Name: charger - Tags: - - electricity -- $Type: CustomIcons$CustomIcon - CharacterCode: 59711 - Name: checkmark - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59712 - Name: checkmark-circle - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59713 - Name: checkmark-shield - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59714 - Name: checkmark-square - Tags: - - correct - - completed - - ok - - accept - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59715 - Name: chevron-down - Tags: - - download - - save - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59716 - Name: chevron-left - Tags: - - incoming - - arrow - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59717 - Name: chevron-right - Tags: - - outgoing - - arrow - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59718 - Name: chevron-up - Tags: - - upload - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59719 - Name: cloud - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59720 - Name: cloud-check - Tags: - - deploy - - ok - - accept - - mark - - box - - saved -- $Type: CustomIcons$CustomIcon - CharacterCode: 59721 - Name: cloud-data-transfer - Tags: - - deploy - - exchange - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59722 - Name: cloud-disable - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59723 - Name: cloud-download - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59724 - Name: cloud-lock - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59725 - Name: cloud-off - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59726 - Name: cloud-refresh - Tags: - - deploy - - repeat - - renew -- $Type: CustomIcons$CustomIcon - CharacterCode: 59727 - Name: cloud-remove - Tags: - - deploy - - minus -- $Type: CustomIcons$CustomIcon - CharacterCode: 59728 - Name: cloud-search - Tags: - - deploy - - magnifier - - zoom -- $Type: CustomIcons$CustomIcon - CharacterCode: 59729 - Name: cloud-settings - Tags: - - deploy - - cog - - options - - wrench -- $Type: CustomIcons$CustomIcon - CharacterCode: 59730 - Name: cloud-subtract - Tags: - - deploy - - minus - - remove -- $Type: CustomIcons$CustomIcon - CharacterCode: 59731 - Name: cloud-sync - Tags: - - deploy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59732 - Name: cloud-upload - Tags: - - deploy - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59733 - Name: cloud-warning - Tags: - - deploy - - error -- $Type: CustomIcons$CustomIcon - CharacterCode: 59734 - Name: cog - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59735 - Name: cog-hand-give - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59736 - Name: cog-play - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59737 - Name: cog-shield - Tags: - - settings - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59738 - Name: color-bucket-brush - Tags: - - tint - - drop - - ink - - font -- $Type: CustomIcons$CustomIcon - CharacterCode: 59739 - Name: color-painting-palette - Tags: - - tint - - drop - - ink - - font -- $Type: CustomIcons$CustomIcon - CharacterCode: 59740 - Name: compass-directions - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59741 - Name: compressed - Tags: - - zip -- $Type: CustomIcons$CustomIcon - CharacterCode: 59742 - Name: computer-chip - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59743 - Name: connect - Tags: - - link -- $Type: CustomIcons$CustomIcon - CharacterCode: 59744 - Name: connect-1 - Tags: - - link -- $Type: CustomIcons$CustomIcon - CharacterCode: 59745 - Name: console-terminal - Tags: - - prompt - - type -- $Type: CustomIcons$CustomIcon - CharacterCode: 59746 - Name: contacts - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59747 - Name: contrast - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59748 - Name: controls-backward - Tags: - - rewind -- $Type: CustomIcons$CustomIcon - CharacterCode: 59749 - Name: controls-eject - Tags: - - out -- $Type: CustomIcons$CustomIcon - CharacterCode: 59750 - Name: controls-fast-backward - Tags: - - rewind -- $Type: CustomIcons$CustomIcon - CharacterCode: 59751 - Name: controls-fast-forward - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59752 - Name: controls-forward - Tags: - - fast -- $Type: CustomIcons$CustomIcon - CharacterCode: 59753 - Name: controls-pause - Tags: - - wait -- $Type: CustomIcons$CustomIcon - CharacterCode: 59754 - Name: controls-play - Tags: - - start -- $Type: CustomIcons$CustomIcon - CharacterCode: 59755 - Name: controls-record - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59756 - Name: controls-shuffle - Tags: - - random -- $Type: CustomIcons$CustomIcon - CharacterCode: 59757 - Name: controls-step-backward - Tags: - - rewind -- $Type: CustomIcons$CustomIcon - CharacterCode: 59758 - Name: controls-step-forward - Tags: - - fast -- $Type: CustomIcons$CustomIcon - CharacterCode: 59759 - Name: controls-stop - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59760 - Name: controls-volume-full - Tags: - - eq -- $Type: CustomIcons$CustomIcon - CharacterCode: 59761 - Name: controls-volume-low - Tags: - - eq -- $Type: CustomIcons$CustomIcon - CharacterCode: 59762 - Name: controls-volume-off - Tags: - - eq -- $Type: CustomIcons$CustomIcon - CharacterCode: 59763 - Name: conversation-question-warning - Tags: - - speech - - bubble -- $Type: CustomIcons$CustomIcon - CharacterCode: 59764 - Name: copy - Tags: - - clipboard - - duplicate - - clone -- $Type: CustomIcons$CustomIcon - CharacterCode: 59765 - Name: credit-card - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59766 - Name: crossroad-sign - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59767 - Name: cube - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59768 - Name: cutlery - Tags: - - eat - - fork - - knife -- $Type: CustomIcons$CustomIcon - CharacterCode: 59769 - Name: dashboard - Tags: - - overview - - kpi - - okr -- $Type: CustomIcons$CustomIcon - CharacterCode: 59770 - Name: data-transfer - Tags: - - exchange - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59771 - Name: desktop - Tags: - - computer -- $Type: CustomIcons$CustomIcon - CharacterCode: 59772 - Name: diamond - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59773 - Name: direction-buttons - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59774 - Name: direction-buttons-arrows - Tags: - - move - - pan -- $Type: CustomIcons$CustomIcon - CharacterCode: 59775 - Name: disable - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59776 - Name: document - Tags: - - file - - new - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59777 - Name: document-open - Tags: - - file - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59778 - Name: document-save - Tags: - - file - - paper - - store -- $Type: CustomIcons$CustomIcon - CharacterCode: 59779 - Name: dollar - Tags: - - usd - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59780 - Name: double-bed - Tags: - - sleep -- $Type: CustomIcons$CustomIcon - CharacterCode: 59781 - Name: double-chevron-left - Tags: - - arrows - - incoming - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59782 - Name: double-chevron-right - Tags: - - arrows - - outgoing - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59783 - Name: download-bottom - Tags: - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59784 - Name: download-button - Tags: - - arrow -- $Type: CustomIcons$CustomIcon - CharacterCode: 59785 - Name: duplicate - Tags: - - clone - - copy -- $Type: CustomIcons$CustomIcon - CharacterCode: 59786 - Name: email - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59787 - Name: equalizer - Tags: - - audio -- $Type: CustomIcons$CustomIcon - CharacterCode: 59788 - Name: eraser - Tags: - - delete -- $Type: CustomIcons$CustomIcon - CharacterCode: 59789 - Name: euro - Tags: - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59790 - Name: expand-horizontal - Tags: - - fullscreen - - maximize -- $Type: CustomIcons$CustomIcon - CharacterCode: 59791 - Name: expand-vertical - Tags: - - fullscreen - - maximize -- $Type: CustomIcons$CustomIcon - CharacterCode: 59792 - Name: external - Tags: - - open -- $Type: CustomIcons$CustomIcon - CharacterCode: 59793 - Name: file-pdf - Tags: - - new - - document - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59794 - Name: file-zip - Tags: - - new - - document - - paper -- $Type: CustomIcons$CustomIcon - CharacterCode: 59795 - Name: film - Tags: - - movie - - video -- $Type: CustomIcons$CustomIcon - CharacterCode: 59796 - Name: filter - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59797 - Name: fire - Tags: - - flame -- $Type: CustomIcons$CustomIcon - CharacterCode: 59798 - Name: flag - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59799 - Name: flash - Tags: - - event - - lightning -- $Type: CustomIcons$CustomIcon - CharacterCode: 59800 - Name: floppy-disk - Tags: - - hdd - - drive - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59801 - Name: floppy-disk-arrow-down - Tags: - - hdd - - drive - - harddisk - - download - - save - - incoming - - import -- $Type: CustomIcons$CustomIcon - CharacterCode: 59802 - Name: floppy-disk-arrow-up - Tags: - - hdd - - drive - - harddisk - - upload - - outgoing - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59803 - Name: floppy-disk-checkmark - Tags: - - hdd - - drive - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59804 - Name: floppy-disk-group - Tags: - - hdd - - drive - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59805 - Name: floppy-disk-remove - Tags: - - hdd - - drive - - harddisk - - delete - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59806 - Name: folder-closed - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59807 - Name: folder-open - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59808 - Name: folder-upload - Tags: - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59809 - Name: fruit-apple - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59810 - Name: fullscreen - Tags: - - stretch - - maximize - - expand -- $Type: CustomIcons$CustomIcon - CharacterCode: 59811 - Name: gift - Tags: - - box - - present - - christmas -- $Type: CustomIcons$CustomIcon - CharacterCode: 59812 - Name: github - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59813 - Name: globe - Tags: - - www - - web - - planet - - earth - - atlas - - world -- $Type: CustomIcons$CustomIcon - CharacterCode: 59814 - Name: globe-1 - Tags: - - www - - web - - planet - - earth - - atlas - - world -- $Type: CustomIcons$CustomIcon - CharacterCode: 59815 - Name: graduation-hat - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59816 - Name: hammer - Tags: - - tools - - toolbox -- $Type: CustomIcons$CustomIcon - CharacterCode: 59817 - Name: hammer-wench - Tags: - - tools - - toolbox -- $Type: CustomIcons$CustomIcon - CharacterCode: 59818 - Name: hand-down - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59819 - Name: hand-left - Tags: - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59820 - Name: hand-right - Tags: - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59821 - Name: hand-up - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59822 - Name: handshake-business - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59823 - Name: hard-drive - Tags: - - hdd - - disk - - harddisk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59824 - Name: headphones - Tags: - - music - - listen - - audio -- $Type: CustomIcons$CustomIcon - CharacterCode: 59825 - Name: headphones-mic - Tags: - - music - - listen - - audio -- $Type: CustomIcons$CustomIcon - CharacterCode: 59826 - Name: heart - Tags: - - love -- $Type: CustomIcons$CustomIcon - CharacterCode: 59827 - Name: hierarchy-files - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59828 - Name: home - Tags: - - house -- $Type: CustomIcons$CustomIcon - CharacterCode: 59829 - Name: hourglass - Tags: - - wait - - patience -- $Type: CustomIcons$CustomIcon - CharacterCode: 59830 - Name: hyperlink - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59831 - Name: image - Tags: - - picture -- $Type: CustomIcons$CustomIcon - CharacterCode: 59832 - Name: image-collection - Tags: - - picture -- $Type: CustomIcons$CustomIcon - CharacterCode: 59833 - Name: images - Tags: - - picture -- $Type: CustomIcons$CustomIcon - CharacterCode: 59834 - Name: info-circle - Tags: - - information -- $Type: CustomIcons$CustomIcon - CharacterCode: 59835 - Name: laptop - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59836 - Name: layout - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59837 - Name: layout-1 - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59838 - Name: layout-2 - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59839 - Name: layout-column - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59840 - Name: layout-horizontal - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59841 - Name: layout-list - Tags: - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59842 - Name: layout-rounded - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59843 - Name: layout-rounded-1 - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59844 - Name: leaf - Tags: - - green -- $Type: CustomIcons$CustomIcon - CharacterCode: 59845 - Name: legal-certificate - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59846 - Name: lego-block-stack - Tags: - - build -- $Type: CustomIcons$CustomIcon - CharacterCode: 59847 - Name: light-bulb-shine - Tags: - - lamp -- $Type: CustomIcons$CustomIcon - CharacterCode: 59848 - Name: list-bullets - Tags: - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59849 - Name: location-pin - Tags: - - point -- $Type: CustomIcons$CustomIcon - CharacterCode: 59850 - Name: lock - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59851 - Name: lock-key - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59852 - Name: login - Tags: - - enter - - write -- $Type: CustomIcons$CustomIcon - CharacterCode: 59853 - Name: login-1 - Tags: - - enter - - write -- $Type: CustomIcons$CustomIcon - CharacterCode: 59854 - Name: login-2 - Tags: - - enter - - write -- $Type: CustomIcons$CustomIcon - CharacterCode: 59855 - Name: logout - Tags: - - exit -- $Type: CustomIcons$CustomIcon - CharacterCode: 59856 - Name: logout-1 - Tags: - - exit -- $Type: CustomIcons$CustomIcon - CharacterCode: 59857 - Name: luggage-travel - Tags: - - baggage -- $Type: CustomIcons$CustomIcon - CharacterCode: 59858 - Name: magnet - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59859 - Name: map-location-pin - Tags: - - point -- $Type: CustomIcons$CustomIcon - CharacterCode: 59860 - Name: martini - Tags: - - drink -- $Type: CustomIcons$CustomIcon - CharacterCode: 59861 - Name: megaphone - Tags: - - speaker -- $Type: CustomIcons$CustomIcon - CharacterCode: 59862 - Name: message-bubble - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59863 - Name: message-bubble-add - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59864 - Name: message-bubble-check - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59865 - Name: message-bubble-disable - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59866 - Name: message-bubble-edit - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59867 - Name: message-bubble-information - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59868 - Name: message-bubble-quotation - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59869 - Name: message-bubble-remove - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59870 - Name: message-bubble-typing - Tags: - - comment - - speech -- $Type: CustomIcons$CustomIcon - CharacterCode: 59871 - Name: mobile-phone - Tags: - - call - - device - - telephone - - speak - - talk -- $Type: CustomIcons$CustomIcon - CharacterCode: 59872 - Name: modal-window - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59873 - Name: monitor - Tags: - - screen -- $Type: CustomIcons$CustomIcon - CharacterCode: 59874 - Name: monitor-camera - Tags: - - screen - - video - - movei -- $Type: CustomIcons$CustomIcon - CharacterCode: 59875 - Name: monitor-cash - Tags: - - money -- $Type: CustomIcons$CustomIcon - CharacterCode: 59876 - Name: monitor-e-learning - Tags: - - training -- $Type: CustomIcons$CustomIcon - CharacterCode: 59877 - Name: monitor-pie-line-graph - Tags: - - charts - - stats - - histogram -- $Type: CustomIcons$CustomIcon - CharacterCode: 59878 - Name: moon-new - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59879 - Name: mountain-flag - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59880 - Name: move-down - Tags: - - arrows - - download - - save -- $Type: CustomIcons$CustomIcon - CharacterCode: 59881 - Name: move-left - Tags: - - back - - arrows - - incoming -- $Type: CustomIcons$CustomIcon - CharacterCode: 59882 - Name: move-right - Tags: - - forward - - arrows - - outgoing -- $Type: CustomIcons$CustomIcon - CharacterCode: 59883 - Name: move-up - Tags: - - arrows - - upload -- $Type: CustomIcons$CustomIcon - CharacterCode: 59884 - Name: music-note - Tags: - - audio - - notes - - headphones - - listen -- $Type: CustomIcons$CustomIcon - CharacterCode: 59885 - Name: navigation-menu - Tags: - - list -- $Type: CustomIcons$CustomIcon - CharacterCode: 59886 - Name: navigation-next - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59887 - Name: notes-checklist - Tags: - - write - - todo -- $Type: CustomIcons$CustomIcon - CharacterCode: 59888 - Name: notes-checklist-flip - Tags: - - write - - todo -- $Type: CustomIcons$CustomIcon - CharacterCode: 59889 - Name: notes-paper-edit - Tags: - - pencil - - write - - page -- $Type: CustomIcons$CustomIcon - CharacterCode: 59890 - Name: notes-paper-text - Tags: - - write - - page -- $Type: CustomIcons$CustomIcon - CharacterCode: 59891 - Name: office-sheet - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59892 - Name: org-chart - Tags: - - graph -- $Type: CustomIcons$CustomIcon - CharacterCode: 59893 - Name: paper-clipboard - Tags: - - document - - paste -- $Type: CustomIcons$CustomIcon - CharacterCode: 59894 - Name: paper-holder - Tags: - - document -- $Type: CustomIcons$CustomIcon - CharacterCode: 59895 - Name: paper-holder-full - Tags: - - document -- $Type: CustomIcons$CustomIcon - CharacterCode: 59896 - Name: paper-list - Tags: - - document - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59897 - Name: paper-plane - Tags: - - document - - send - - airplane - - fly -- $Type: CustomIcons$CustomIcon - CharacterCode: 59898 - Name: paperclip - Tags: - - attachment -- $Type: CustomIcons$CustomIcon - CharacterCode: 59899 - Name: password-lock - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59900 - Name: password-type - Tags: - - console - - prompt -- $Type: CustomIcons$CustomIcon - CharacterCode: 59901 - Name: paste - Tags: - - clipboard -- $Type: CustomIcons$CustomIcon - CharacterCode: 59902 - Name: pen-write-paper - Tags: - - pencil - - notes -- $Type: CustomIcons$CustomIcon - CharacterCode: 59903 - Name: pencil - Tags: - - write - - notes -- $Type: CustomIcons$CustomIcon - CharacterCode: 59904 - Name: pencil-write-paper - Tags: - - notes - - edit -- $Type: CustomIcons$CustomIcon - CharacterCode: 59905 - Name: performance-graph-calculator - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59906 - Name: phone - Tags: - - call - - telephone - - dial - - speak - - talk - - hang -- $Type: CustomIcons$CustomIcon - CharacterCode: 59907 - Name: phone-handset - Tags: - - call - - telephone - - dial - - speak - - talk - - hang -- $Type: CustomIcons$CustomIcon - CharacterCode: 59908 - Name: piggy-bank - Tags: - - money -- $Type: CustomIcons$CustomIcon - CharacterCode: 59909 - Name: pin - Tags: - - point - - location -- $Type: CustomIcons$CustomIcon - CharacterCode: 59910 - Name: plane-ticket - Tags: - - fly - - airplane -- $Type: CustomIcons$CustomIcon - CharacterCode: 59911 - Name: play-circle - Tags: - - start -- $Type: CustomIcons$CustomIcon - CharacterCode: 59912 - Name: pound-sterling - Tags: - - gbp - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59913 - Name: power-button - Tags: - - shut down - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59914 - Name: print - Tags: - - printer -- $Type: CustomIcons$CustomIcon - CharacterCode: 59915 - Name: progress-bars - Tags: - - tasks - - todo - - list -- $Type: CustomIcons$CustomIcon - CharacterCode: 59916 - Name: qr-code - Tags: - - scan -- $Type: CustomIcons$CustomIcon - CharacterCode: 59917 - Name: question-circle - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59918 - Name: redo - Tags: - - forward -- $Type: CustomIcons$CustomIcon - CharacterCode: 59919 - Name: refresh - Tags: - - repeat - - continuous - - recycle - - renew -- $Type: CustomIcons$CustomIcon - CharacterCode: 59920 - Name: remove - Tags: - - delete - - cross - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59921 - Name: remove-circle - Tags: - - delete - - cross - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59922 - Name: remove-shield - Tags: - - delete - - cross - - erase -- $Type: CustomIcons$CustomIcon - CharacterCode: 59923 - Name: repeat - Tags: - - continuous - - refresh - - recycle - - renew -- $Type: CustomIcons$CustomIcon - CharacterCode: 59924 - Name: resize-full - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59925 - Name: resize-small - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59926 - Name: road - Tags: - - highway - - motorway -- $Type: CustomIcons$CustomIcon - CharacterCode: 59927 - Name: robot-head - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59928 - Name: rss-feed - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59929 - Name: ruble - Tags: - - money - - currency -- $Type: CustomIcons$CustomIcon - CharacterCode: 59930 - Name: scissors - Tags: - - cut -- $Type: CustomIcons$CustomIcon - CharacterCode: 59931 - Name: search - Tags: - - magnifier - - zoom -- $Type: CustomIcons$CustomIcon - CharacterCode: 59932 - Name: server - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59933 - Name: settings-slider - Tags: - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59934 - Name: settings-slider-1 - Tags: - - options -- $Type: CustomIcons$CustomIcon - CharacterCode: 59935 - Name: share - Tags: - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59936 - Name: share-1 - Tags: - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59937 - Name: share-arrow - Tags: - - export -- $Type: CustomIcons$CustomIcon - CharacterCode: 59938 - Name: shipment-box - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59939 - Name: shopping-cart - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59940 - Name: shopping-cart-full - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59941 - Name: signal-full - Tags: - - wireless - - network - - volume - - charge - - battery - - reception -- $Type: CustomIcons$CustomIcon - CharacterCode: 59942 - Name: smart-house-garage - Tags: - - home - - remote -- $Type: CustomIcons$CustomIcon - CharacterCode: 59943 - Name: smart-watch-circle - Tags: - - gadget - - device -- $Type: CustomIcons$CustomIcon - CharacterCode: 59944 - Name: smart-watch-square - Tags: - - gadget - - device -- $Type: CustomIcons$CustomIcon - CharacterCode: 59945 - Name: sort - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59946 - Name: sort-alphabet-ascending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59947 - Name: sort-alphabet-descending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59948 - Name: sort-ascending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59949 - Name: sort-descending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59950 - Name: sort-numerical-ascending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59951 - Name: sort-numerical-descending - Tags: - - order -- $Type: CustomIcons$CustomIcon - CharacterCode: 59952 - Name: star - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59953 - Name: stopwatch - Tags: - - time - - duration -- $Type: CustomIcons$CustomIcon - CharacterCode: 59954 - Name: substract - Tags: - - minus - - remove -- $Type: CustomIcons$CustomIcon - CharacterCode: 59955 - Name: subtract-circle - Tags: - - minus - - remove -- $Type: CustomIcons$CustomIcon - CharacterCode: 59956 - Name: sun - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59957 - Name: swap - Tags: - - switch -- $Type: CustomIcons$CustomIcon - CharacterCode: 59958 - Name: synchronize-arrow-clock - Tags: - - time -- $Type: CustomIcons$CustomIcon - CharacterCode: 59959 - Name: table-lamp - Tags: - - light - - bedlamp -- $Type: CustomIcons$CustomIcon - CharacterCode: 59960 - Name: tablet - Tags: - - device -- $Type: CustomIcons$CustomIcon - CharacterCode: 59961 - Name: tag - Tags: - - price -- $Type: CustomIcons$CustomIcon - CharacterCode: 59962 - Name: tag-group - Tags: - - price -- $Type: CustomIcons$CustomIcon - CharacterCode: 59963 - Name: task-list-multiple - Tags: - - todo - - tasks -- $Type: CustomIcons$CustomIcon - CharacterCode: 59964 - Name: text-align-center - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59965 - Name: text-align-justify - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59966 - Name: text-align-left - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59967 - Name: text-align-right - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59968 - Name: text-background - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59969 - Name: text-bold - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59970 - Name: text-color - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59971 - Name: text-font - Tags: - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59972 - Name: text-header - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59973 - Name: text-height - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59974 - Name: text-indent-left - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59975 - Name: text-indent-right - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59976 - Name: text-italic - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59977 - Name: text-size - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59978 - Name: text-subscript - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59979 - Name: text-superscript - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59980 - Name: text-width - Tags: - - font - - letters -- $Type: CustomIcons$CustomIcon - CharacterCode: 59981 - Name: three-dots-menu-horizontal - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59982 - Name: three-dots-menu-vertical - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59983 - Name: thumbs-down - Tags: - - bad - - like - - decline -- $Type: CustomIcons$CustomIcon - CharacterCode: 59984 - Name: thumbs-up - Tags: - - good - - like - - accept -- $Type: CustomIcons$CustomIcon - CharacterCode: 59985 - Name: time-clock - Tags: - - duration -- $Type: CustomIcons$CustomIcon - CharacterCode: 59986 - Name: tint - Tags: - - drop - - color - - ink -- $Type: CustomIcons$CustomIcon - CharacterCode: 59987 - Name: trash-can - Tags: - - garbage - - delete - - bin -- $Type: CustomIcons$CustomIcon - CharacterCode: 59988 - Name: tree - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59989 - Name: trophy - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59990 - Name: ui-webpage-slider - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59991 - Name: unchecked - Tags: - - box -- $Type: CustomIcons$CustomIcon - CharacterCode: 59992 - Name: undo - Tags: - - back -- $Type: CustomIcons$CustomIcon - CharacterCode: 59993 - Name: unlock - Tags: - - open -- $Type: CustomIcons$CustomIcon - CharacterCode: 59994 - Name: upload-bottom - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59995 - Name: upload-button - Tags: null -- $Type: CustomIcons$CustomIcon - CharacterCode: 59996 - Name: user - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 59997 - Name: user-3d-box - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 59998 - Name: user-man - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 59999 - Name: user-neutral-group - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60000 - Name: user-neutral-pair - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60001 - Name: user-neutral-shield - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60002 - Name: user-neutral-sync - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60003 - Name: user-pair - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60004 - Name: user-woman - Tags: - - head - - person -- $Type: CustomIcons$CustomIcon - CharacterCode: 60005 - Name: video-camera - Tags: - - film - - movie - - picture - - photo - - record -- $Type: CustomIcons$CustomIcon - CharacterCode: 60006 - Name: view - Tags: - - eye - - visible -- $Type: CustomIcons$CustomIcon - CharacterCode: 60007 - Name: view-off - Tags: - - eye - - invisible -- $Type: CustomIcons$CustomIcon - CharacterCode: 60008 - Name: wheat - Tags: - - gluten -- $Type: CustomIcons$CustomIcon - CharacterCode: 60009 - Name: whiteboard - Tags: - - teach -- $Type: CustomIcons$CustomIcon - CharacterCode: 60010 - Name: wrench - Tags: - - settings - - tools -- $Type: CustomIcons$CustomIcon - CharacterCode: 60011 - Name: yen - Tags: - - money - - currency - - japan -- $Type: CustomIcons$CustomIcon - CharacterCode: 60012 - Name: zoom-in - Tags: - - search - - magnifier -- $Type: CustomIcons$CustomIcon - CharacterCode: 60013 - Name: zoom-out - Tags: - - search - - magnifier -Name: Atlas_Filled -Prefix: mx-icon diff --git a/resources/App/modelsource/Atlas_Core/Content.Images$ImageCollection.yaml b/resources/App/modelsource/Atlas_Core/Content.Images$ImageCollection.yaml deleted file mode 100644 index 08d1c37..0000000 --- a/resources/App/modelsource/Atlas_Core/Content.Images$ImageCollection.yaml +++ /dev/null @@ -1,9 +0,0 @@ -$Type: Images$ImageCollection -Documentation: "" -Excluded: false -ExportLevel: Hidden -Images: -- $Type: Images$Image - ImageFormat: Png - Name: Mendix -Name: Content diff --git a/resources/App/modelsource/Atlas_Core/DomainModels$DomainModel.yaml b/resources/App/modelsource/Atlas_Core/DomainModels$DomainModel.yaml deleted file mode 100644 index 197d610..0000000 --- a/resources/App/modelsource/Atlas_Core/DomainModels$DomainModel.yaml +++ /dev/null @@ -1,6 +0,0 @@ -$Type: DomainModels$DomainModel -Annotations: null -Associations: null -CrossAssociations: null -Documentation: "" -Entities: null diff --git a/resources/App/modelsource/Atlas_Core/Layout.Images$ImageCollection.yaml b/resources/App/modelsource/Atlas_Core/Layout.Images$ImageCollection.yaml deleted file mode 100644 index 9afdbfe..0000000 --- a/resources/App/modelsource/Atlas_Core/Layout.Images$ImageCollection.yaml +++ /dev/null @@ -1,21 +0,0 @@ -$Type: Images$ImageCollection -Documentation: "" -Excluded: false -ExportLevel: Hidden -Images: -- $Type: Images$Image - ImageFormat: Svg - Name: Switcher -- $Type: Images$Image - ImageFormat: Svg - Name: hamburger -- $Type: Images$Image - ImageFormat: Svg - Name: expand -- $Type: Images$Image - ImageFormat: Svg - Name: logo -- $Type: Images$Image - ImageFormat: Svg - Name: logo_blue -Name: Layout diff --git a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_Default.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_Default.Forms$Layout.yaml deleted file mode 100644 index 32539bc..0000000 --- a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_Default.Forms$Layout.yaml +++ /dev/null @@ -1,39 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 500 -Content: - $Type: Forms$NativeLayoutContent - LayoutType: Default - RightHeaderPlaceholder: - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Header - TabIndex: 0 - ShowBottomBar: true - Sidebar: false - SidebarWidgets: null - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: NativePhone_Default diff --git a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_FullPage.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_FullPage.Forms$Layout.yaml deleted file mode 100644 index 079a0dc..0000000 --- a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_FullPage.Forms$Layout.yaml +++ /dev/null @@ -1,30 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 500 -Content: - $Type: Forms$NativeLayoutContent - LayoutType: Default - RightHeaderPlaceholder: null - ShowBottomBar: false - Sidebar: false - SidebarWidgets: null - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: NativePhone_FullPage diff --git a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_PopOver.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_PopOver.Forms$Layout.yaml deleted file mode 100644 index 216b226..0000000 --- a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_PopOver.Forms$Layout.yaml +++ /dev/null @@ -1,39 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 550 -Content: - $Type: Forms$NativeLayoutContent - LayoutType: Popup - RightHeaderPlaceholder: - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Header - TabIndex: 0 - ShowBottomBar: false - Sidebar: false - SidebarWidgets: null - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: NativePhone_PopOver diff --git a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_SideMenu.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_SideMenu.Forms$Layout.yaml deleted file mode 100644 index 5e38a94..0000000 --- a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_SideMenu.Forms$Layout.yaml +++ /dev/null @@ -1,48 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1000 -Content: - $Type: Forms$NativeLayoutContent - LayoutType: Default - RightHeaderPlaceholder: - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Header - TabIndex: 0 - ShowBottomBar: false - Sidebar: true - SidebarWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Placeholder1 - TabIndex: 0 - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 -Documentation: "" -Excluded: true -ExportLevel: Hidden -Name: NativePhone_SideMenu diff --git a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_TopBarOnly.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_TopBarOnly.Forms$Layout.yaml deleted file mode 100644 index 33a9ffd..0000000 --- a/resources/App/modelsource/Atlas_Core/NativeMobile/Layouts/Phone/NativePhone_TopBarOnly.Forms$Layout.yaml +++ /dev/null @@ -1,39 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 500 -Content: - $Type: Forms$NativeLayoutContent - LayoutType: Default - RightHeaderPlaceholder: - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Header - TabIndex: 0 - ShowBottomBar: false - Sidebar: false - SidebarWidgets: null - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: NativePhone_TopBarOnly diff --git a/resources/App/modelsource/Atlas_Core/Projects$ModuleSettings.yaml b/resources/App/modelsource/Atlas_Core/Projects$ModuleSettings.yaml deleted file mode 100644 index f6ae021..0000000 --- a/resources/App/modelsource/Atlas_Core/Projects$ModuleSettings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Projects$ModuleSettings -BasedOnVersion: "" -ExportLevel: Source -ExtensionName: "" -JarDependencies: null -ProtectedModuleType: AddOn -SolutionIdentifier: "" -Version: 1.0.0 diff --git a/resources/App/modelsource/Atlas_Core/Security$ModuleSecurity.yaml b/resources/App/modelsource/Atlas_Core/Security$ModuleSecurity.yaml deleted file mode 100644 index 33b4215..0000000 --- a/resources/App/modelsource/Atlas_Core/Security$ModuleSecurity.yaml +++ /dev/null @@ -1,2 +0,0 @@ -$Type: Security$ModuleSecurity -ModuleRoles: null diff --git a/resources/App/modelsource/Atlas_Core/Web/FeedbackWidget.Forms$Snippet.yaml b/resources/App/modelsource/Atlas_Core/Web/FeedbackWidget.Forms$Snippet.yaml deleted file mode 100644 index 5cc3869..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/FeedbackWidget.Forms$Snippet.yaml +++ /dev/null @@ -1,9 +0,0 @@ -$Type: Forms$Snippet -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: FeedbackWidget -Parameters: null -Widgets: null diff --git a/resources/App/modelsource/Atlas_Core/Web/LanguageSelectorWidget.Forms$Snippet.yaml b/resources/App/modelsource/Atlas_Core/Web/LanguageSelectorWidget.Forms$Snippet.yaml deleted file mode 100644 index f1ad8e0..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/LanguageSelectorWidget.Forms$Snippet.yaml +++ /dev/null @@ -1,185 +0,0 @@ -$Type: Forms$Snippet -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: LanguageSelectorWidget -Parameters: null -Widgets: -- $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: languageSelector1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c4yPC0xlfUe6M/QOkIQfEg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: - $Type: DomainModels$DirectEntityRef - Entity: System.Language - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: - - $Type: Forms$GridSortItem - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: System.Language.Description - EntityRef: null - SortOrder: Ascending - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wPMj6Td36UuFzEOCdLI3FQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: scG+ewC3CEiTHm3tkwd2/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: | - $currentObject/Description - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Fs6qiEwSsEWwgeaX+wSzCw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xqvN11TnI0K1iSQl5Tgnog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: spsUi6dbEUafY4Nk+5urVg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q0S4TsbuDkKmkvoKfFV+fw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: click - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hnZbymd4m02hC6CM0t1OpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kH+j0S1iKkae5/sGftGAfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dvQyP3os2kiKFqw9u9Ii3w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 3JjrvWMrv0Ocfnbb6O3seg== - Subtype: 0 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_BottomBar.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_BottomBar.Forms$Layout.yaml deleted file mode 100644 index f814640..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_BottomBar.Forms$Layout.yaml +++ /dev/null @@ -1,80 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-phone - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Phone - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-bottombar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SimpleMenuBar - Appearance: - $Type: Forms$Appearance - Class: bottom-nav-text-icons - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Phone_Menu - Name: simpleMenuBar1 - Orientation: Horizontal - TabIndex: 0 - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: null - Name: scrollContainer1 - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: null - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Phone_BottomBar diff --git a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_Default.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_Default.Forms$Layout.yaml deleted file mode 100644 index bf86aa1..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_Default.Forms$Layout.yaml +++ /dev/null @@ -1,119 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-phone - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Phone - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-bottombar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SimpleMenuBar - Appearance: - $Type: Forms$Appearance - Class: bottom-nav-text-icons - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Phone_Menu - Name: simpleMenuBar1 - Orientation: Horizontal - TabIndex: 0 - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: null - Name: scrollContainer1 - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderLeft - TabIndex: 0 - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Phone_Default diff --git a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_FullPage.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_FullPage.Forms$Layout.yaml deleted file mode 100644 index 86fbbd2..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_FullPage.Forms$Layout.yaml +++ /dev/null @@ -1,57 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-phone - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Phone - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: null - Name: scrollContainer1 - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: null - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Phone_FullPage diff --git a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_Sidebar.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_Sidebar.Forms$Layout.yaml deleted file mode 100644 index 392ceb1..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_Sidebar.Forms$Layout.yaml +++ /dev/null @@ -1,744 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-phone - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Phone - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Sidebar - Left: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-sidebar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Percentage - ToggleMode: PushContentAside - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: sidebar-heading - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Left align as a row - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B2MU/hJtTUSs+rLHnwb+AQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /DAhIhvVvEKE+vfWTJVSUg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AJ0VT0jYPEmhexTsdEyNAA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oxAWkaOcPEq0/VwrSGearg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DtGofesOrU21uFLgWlYZ5A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LPhhjYgW30uisGmt/QjcAA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jQfA6LOUO06pxttQwr/XdQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JNNXH/Ln/UmdeA6O56hBpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uy3Xutdqm0ytKZp7a60Pjw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fdGjykLWp0aa5LkiN7e5CQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: m6Rgjc5Sl0K+36iAdO1oaA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OHUHytcetkK/Mf6cY45jUA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8+eoATW38UST9PXfB3PEfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kDCHfDxVAEuHA2+69GW/bw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: odVITBAWg0u74TzWR408Pg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ly8huVoOfEWDfWRAqG9OYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ij79qGMv1EW7wsoRHVRPUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: L0fVb9dN60OAQxKFCXE94g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zWiqYCCKUEisS4DNhgJGKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: KLHQzt62Rk+BQfZkVmNMpw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ED3H3aIUvkWkqAgxmhhXxQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PJ2qpW9HkUuFhYHWVEvuNA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4YBnLBmtOUaHkZ9Q844D9g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "28" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cR/yGhoOhEmZcavSl1Ihjg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y5VouJ4TSkm7+eJuJ3TdFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kyt2tP0TBUCbuxiZvP9Szw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nKTgycse+kW5//lPZxplag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WEsPwY3G602goS3OJ+2K5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tD6eORTxlkyJ+R1iMOviuA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BLby8F7bNkqwn4GYhzC4Zg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sh4Qqdjde0KYIjyhxh3GSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fawNW4Q9a0SEIfprNoQaaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LuEUgAJzCU2A3IB3EE8Cxw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UabevXjkPE2LdE+hCQnekg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: QyOvncqX3UCiYgVZrccA/g== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bold - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Mendix - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$NavigationTree - Appearance: - $Type: Forms$Appearance - Class: sidebar-menu - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Phone_Menu - Name: navigationTree1 - TabIndex: 0 - Name: scrollContainer1 - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$SidebarToggleButton - Appearance: - $Type: Forms$Appearance - Class: toggle-btn - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: sidebarToggle2 - RenderType: Link - TabIndex: -1 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Toggle Menu - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Phone_Sidebar diff --git a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_TopBar.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_TopBar.Forms$Layout.yaml deleted file mode 100644 index 67c304e..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Phone/Layouts/Phone_TopBar.Forms$Layout.yaml +++ /dev/null @@ -1,96 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-phone - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Phone - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: null - Name: scrollContainer1 - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderLeft - TabIndex: 0 - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Phone_TopBar diff --git a/resources/App/modelsource/Atlas_Core/Web/Phone/Phone_Menu.Menus$MenuDocument.yaml b/resources/App/modelsource/Atlas_Core/Web/Phone/Phone_Menu.Menus$MenuDocument.yaml deleted file mode 100644 index bfa82f9..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Phone/Phone_Menu.Menus$MenuDocument.yaml +++ /dev/null @@ -1,64 +0,0 @@ -$Type: Menus$MenuDocument -Documentation: "" -Excluded: false -ExportLevel: Hidden -ItemCollection: - $Type: Menus$MenuItemCollection - Items: - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Home - Icon: - $Type: Forms$IconCollectionIcon - Items: null - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Layouts - Icon: - $Type: Forms$IconCollectionIcon - Items: null - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Templates - Icon: - $Type: Forms$IconCollectionIcon - Items: null - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Widgets - Icon: - $Type: Forms$IconCollectionIcon - Items: null -Name: Phone_Menu diff --git a/resources/App/modelsource/Atlas_Core/Web/PopupLayout.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/PopupLayout.Forms$Layout.yaml deleted file mode 100644 index 644c098..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/PopupLayout.Forms$Layout.yaml +++ /dev/null @@ -1,57 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: ModalPopup - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: null - Name: scrollContainer1 - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: null - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: PopupLayout diff --git a/resources/App/modelsource/Atlas_Core/Web/Responsive/Layouts/Atlas_Default.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Responsive/Layouts/Atlas_Default.Forms$Layout.yaml deleted file mode 100644 index 7d72809..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Responsive/Layouts/Atlas_Default.Forms$Layout.yaml +++ /dev/null @@ -1,762 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-responsive-default - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Responsive - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-sidebar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Pixels - ToggleMode: ShrinkContentInitiallyClosed - Widgets: - - $Type: Forms$NavigationTree - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$NavigationSource - NavigationProfile: Responsive - Name: navigationTree3 - TabIndex: 0 - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SnippetCallWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - FormCall: - $Type: Forms$SnippetCall - Form: Atlas_Core.FeedbackWidget - ParameterMappings: null - Name: snippetCall1 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: topbar-content - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$SidebarToggleButton - Appearance: - $Type: Forms$Appearance - Class: toggle-btn - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: sidebarToggle3 - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Toggle Menu - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: navbar-brand - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: staticImage1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ksNn6xZ9tUCaoTrQvBDu3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4d+lnGOIVUeKBAQZjS2e/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uGWRA0PHK0Oc21LHQ5LtJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ij3m0AXu5E6b/lh4oUFR4Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: puEGd/G8+0Sy+4hdIZfASw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DxIkrxfXBEuvfJBtdO/KaA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: k1y7CML0c0C8l8Y5DntJqw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: l3fbsJ3Rz0m9R3lu0puJ9w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4qOPfMa4zEey8c4BuHSxNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NirCnzqWH0mKn4IVYaVcRQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cx7F/btVmUaxENE2+LcXpA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: H5Sop6qVp0yU+svyadqAcQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MQFrD1euRUuED4pP2X376A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MB6SAPNWwE6XKEuRgHa8Yw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +FZDYw1uVECbLsmmD2+nXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8X8a35R9B0Wkcn8/AgpJeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: clzq+xCQ20Ss/yhaE0uRmA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ki7Vk88ZCE6fvAjEl/nLKg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TLiFWhlUdUmG6qrexxbOfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JM6QG2Q0n0OYhxLOwNsIVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2w0QQ5MCh0eGXotTFIG0/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: j6DgQBgz9EObVMGFwTes6Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qrm3Z8zi+k+tO+4Wq7S3Cg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kaxY+M5aB0qYmD1c/Joq6g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SkCzQkaa4kyCRxiEdRfL7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fsoakjJZYUm0Vr86YAzhSg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Kmj+b+AAD0Wq7UaNjDTjHA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0XZ0cxUAY0WUEoCmVVIDFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1u5LJkZ8ukGSakEdBLFc1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: osOXMbi+j06gV4TKsuCOYA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X8fWfDAP8E2JCoXiUCNkig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lflRRoEIXUeM6b53nXq9tQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8vMseJGPKk25ExyrXN6pUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: g88xgesoBkOuOGI7mTuVsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: YxC1XyyAvEOgdZihLmQ+CQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$SnippetCallWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - FormCall: - $Type: Forms$SnippetCall - Form: Atlas_Core.LanguageSelectorWidget - ParameterMappings: null - Name: snippetCall2 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Atlas_Default diff --git a/resources/App/modelsource/Atlas_Core/Web/Responsive/Layouts/Atlas_TopBar.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Responsive/Layouts/Atlas_TopBar.Forms$Layout.yaml deleted file mode 100644 index c423790..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Responsive/Layouts/Atlas_TopBar.Forms$Layout.yaml +++ /dev/null @@ -1,791 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-responsive-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1204 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Responsive - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Sidebar - Left: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-sidebar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Pixels - ToggleMode: PushContentAside - Widgets: - - $Type: Forms$NavigationTree - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$NavigationSource - NavigationProfile: Responsive - Name: navigationTree1 - TabIndex: 0 - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SnippetCallWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - FormCall: - $Type: Forms$SnippetCall - Form: Atlas_Core.FeedbackWidget - ParameterMappings: null - Name: snippetCall1 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: topbar-content - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$SidebarToggleButton - Appearance: - $Type: Forms$Appearance - Class: toggle-btn - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: sidebarToggle3 - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Toggle Menu - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: navbar-brand - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: staticImage1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +VAwiouYNUqHQd+1OrWkQw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zaYP7M5bYkOpIYJjH1aO8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A0xpJdYL4Eapgy+hZMXiuQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jfH75hoIT0CI7G0Cj8nIiA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Wo1ZWRP70EOz9iwhv3b+Dg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iITsDSzXAUW6ql1mJQpU4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: p2SVBeTLhUePG6i/VDVc2A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: g1madTNrPk6jRrU995b4UQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: N4SnmbG6A0Sovha04rpVlQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nYECMRf6uEu8qqRf4dwTVA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AbxgbeeHUUeVrzTHnSg7iQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DPjff2EEP0ihNqtAPqLjYA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JrqoMDkz40idrYlYXw5NKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Pk7gGhDbW0C2iw/CK9G6Sg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jEkpX4mb806VOcsjsHC4nw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5w/VKSzyvEyeD6a4SZMxBw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E37ufYmLRU6zk5IHVXnhow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +HnJs+81PE2GxWe5zwLvjw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uk/chr9UoEGziD8K5JnRGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Y8lm1hvlkkiINFJbFh8pzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GIwyzTtnhkCHDfU0w0737Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ah0X2UiNUE+mryOnOYdJMw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DX6ofDMZTUGwODkUZ5ukqQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MLGXtWLTTEyXX1qgAN9GhQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: feZZERMnwUyqwuDUfcpelA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: H9Rc9GuX1k2vgQQYYwTejw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: D0Dcr0CqAUS2s7jDkC3bEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rysvZROb8U+NH/sPfiWBaA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7Nytr1ELW0S8kOat/Kwm2A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dt5H06GfL0Gt6xbVja1F/Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Oiq/sdKCuUmy0NyIVocm+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mtW4cjG6tka4vJJvHyWL7Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cYOrKVZavEuMZ/2Ekbrwcg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3YiXDMSpnEKjh+e5QI1uIg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: mLZwUuB4G0qdKE+6vqoXqg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$MenuBar - Appearance: - $Type: Forms$Appearance - Class: hidden-xs - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hide icons - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$NavigationSource - NavigationProfile: Responsive - Name: menuBar1 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$SnippetCallWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - FormCall: - $Type: Forms$SnippetCall - Form: Atlas_Core.LanguageSelectorWidget - ParameterMappings: null - Name: snippetCall2 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Atlas_TopBar diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_BottomBar.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_BottomBar.Forms$Layout.yaml deleted file mode 100644 index 38c8db4..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_BottomBar.Forms$Layout.yaml +++ /dev/null @@ -1,80 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-bottombar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SimpleMenuBar - Appearance: - $Type: Forms$Appearance - Class: bottom-nav-text-icons - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Tablet_Menu - Name: simpleMenuBar1 - Orientation: Horizontal - TabIndex: 0 - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Sidebar - Left: null - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: null - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_BottomBar diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Default.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Default.Forms$Layout.yaml deleted file mode 100644 index 621952b..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Default.Forms$Layout.yaml +++ /dev/null @@ -1,119 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-bottombar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SimpleMenuBar - Appearance: - $Type: Forms$Appearance - Class: bottom-nav-text-icons - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Tablet_Menu - Name: simpleMenuBar1 - Orientation: Horizontal - TabIndex: 0 - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Sidebar - Left: null - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderLeft - TabIndex: 0 - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_Default diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_FullPage.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_FullPage.Forms$Layout.yaml deleted file mode 100644 index 70606dc..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_FullPage.Forms$Layout.yaml +++ /dev/null @@ -1,57 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Sidebar - Left: null - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: null - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_FullPage diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Menu.Menus$MenuDocument.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Menu.Menus$MenuDocument.yaml deleted file mode 100644 index b77c7d1..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Menu.Menus$MenuDocument.yaml +++ /dev/null @@ -1,64 +0,0 @@ -$Type: Menus$MenuDocument -Documentation: "" -Excluded: false -ExportLevel: Hidden -ItemCollection: - $Type: Menus$MenuItemCollection - Items: - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Home - Icon: - $Type: Forms$IconCollectionIcon - Items: null - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Layouts - Icon: - $Type: Forms$IconCollectionIcon - Items: null - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Templates - Icon: - $Type: Forms$IconCollectionIcon - Items: null - - $Type: Menus$MenuItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AlternativeText: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Widgets - Icon: - $Type: Forms$IconCollectionIcon - Items: null -Name: Tablet_Menu diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Sidebar.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Sidebar.Forms$Layout.yaml deleted file mode 100644 index 4ffbac0..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Sidebar.Forms$Layout.yaml +++ /dev/null @@ -1,744 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Sidebar - Left: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-sidebar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Pixels - ToggleMode: ShrinkContentInitiallyClosed - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: sidebar-heading - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Left align as a row - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0nxBMFwSHEOcBBKYUhSZxw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: t1YE5sxWW0W+Jl6vJWeMqg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XYC93QuViEiA+2QzlYAglg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yoFx0ShDO0CV8JS7u1JUXg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VAmk84+6x0aUXYCCvh7xXg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: f2zO5PfEmEiXK/ls3jD00Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mxX4vTL08UytUdeYMiJ5kA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Tn02JdsFz0iOdGItm2eSoA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lqeunEeoeECZ9SH/b7z0sA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pAgrW5hRM0uAwQZBzMA6KQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: V/myKJA2hEG7njT+1XEb+g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: obSXZMb1Z0yDK6nquXXDFw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3xbqUqYzt0+Sw8L5owEHdg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Y+MmEBdMEEOipcCtelJHeQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: offDw+kZh0KGtErRlQDLKQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yE9BQ/MA/EytEvVjBcz8Vg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0dfPnfZ8bUOKpAXu4i8vww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ir0k2ei9SEqn9SQ+uvjGfQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rY9tJm7Q40iAtM7ES4YRZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: SyB7iZI/5kC7nybmYJ5BgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rXs0czh8A0GBUApLAqZ73w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ySDnE5/VG06NXvP5eZC4mQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3ty3LwW1NEGImJCJy4JsKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "28" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TATNn4lBcUOXSYLfAw8D0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z/CFNp9IoUCCPsRLDziihQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NVO4MLd6/ka/pXuOVwCIkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 56OEEZG+sEe1c16mpj7kiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: K+DKmLbm5kiO3dLAgUaN9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aHMY+2n+6UqnRfDsYyvAhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XORhDQnuf0y16W/4LRznHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bVEJbWN170m08K43E8HljA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vDrmaaVdB0qApX8g7mqWaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BAhHc7liWUOlMOtTpRX62A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5RWkfZTCSUujhfm4BD9d+Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: KiDJDCUWPkSAnnVpJxtSEQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bold - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Mendix - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$NavigationTree - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Tablet_Menu - Name: navigationTree3 - TabIndex: 0 - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$SidebarToggleButton - Appearance: - $Type: Forms$Appearance - Class: toggle-btn - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: sidebarToggle3 - RenderType: Link - TabIndex: -1 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Toggle Menu - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_Sidebar diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Equal.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Equal.Forms$Layout.yaml deleted file mode 100644 index d1bf91d..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Equal.Forms$Layout.yaml +++ /dev/null @@ -1,138 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-bottombar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SimpleMenuBar - Appearance: - $Type: Forms$Appearance - Class: bottom-nav-text-icons - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Tablet_Menu - Name: simpleMenuBar1 - Orientation: Horizontal - TabIndex: 0 - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-left - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Percentage - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Left - TabIndex: 0 - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderLeft - TabIndex: 0 - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_Split_Equal diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Left.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Left.Forms$Layout.yaml deleted file mode 100644 index 08aa42b..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Left.Forms$Layout.yaml +++ /dev/null @@ -1,138 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-bottombar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SimpleMenuBar - Appearance: - $Type: Forms$Appearance - Class: bottom-nav-text-icons - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Tablet_Menu - Name: simpleMenuBar1 - Orientation: Horizontal - TabIndex: 0 - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-left - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Pixels - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Left - TabIndex: 0 - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderLeft - TabIndex: 0 - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_Split_Left diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Right.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Right.Forms$Layout.yaml deleted file mode 100644 index dd5fb78..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_Split_Right.Forms$Layout.yaml +++ /dev/null @@ -1,138 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-bottombar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$SimpleMenuBar - Appearance: - $Type: Forms$Appearance - Class: bottom-nav-text-icons - DesignProperties: null - DynamicClasses: "" - Style: "" - MenuSource: - $Type: Forms$MenuDocumentSource - Menu: Atlas_Core.Tablet_Menu - Name: simpleMenuBar1 - Orientation: Horizontal - TabIndex: 0 - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Headline - Left: null - Name: layoutContainer - NativeHideScrollbars: false - Right: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Pixels - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Right - TabIndex: 0 - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderLeft - TabIndex: 0 - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_Split_Right diff --git a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_TopBar.Forms$Layout.yaml b/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_TopBar.Forms$Layout.yaml deleted file mode 100644 index 3a6a317..0000000 --- a/resources/App/modelsource/Atlas_Core/Web/Tablet/Layouts/Tablet_TopBar.Forms$Layout.yaml +++ /dev/null @@ -1,96 +0,0 @@ -$Type: Forms$Layout -Appearance: - $Type: Forms$Appearance - Class: layout-atlas layout-atlas-tablet - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -Content: - $Type: Forms$WebLayoutContent - LayoutCall: null - LayoutType: Tablet - Widgets: - - $Type: Forms$ScrollContainer - Alignment: Center - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Bottom: null - CenterRegion: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-content - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: Main - TabIndex: 0 - LayoutMode: Sidebar - Left: null - Name: layoutContainer - NativeHideScrollbars: false - Right: null - ScrollBehavior: PerRegion - TabIndex: 0 - Top: - $Type: Forms$ScrollContainerRegion - Appearance: - $Type: Forms$Appearance - Class: region-topbar - DesignProperties: null - DynamicClasses: "" - Style: "" - SizeMode: Auto - ToggleMode: None - Widgets: - - $Type: Forms$Header - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - LeftWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderLeft - TabIndex: 0 - Name: header1 - RightWidgets: - - $Type: Forms$Placeholder - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Name: HeaderRight - TabIndex: 0 - TabIndex: 0 - Width: 960 - WidthMode: Auto -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Tablet_TopBar diff --git a/resources/App/modelsource/Atlas_Web_Content/Content.Images$ImageCollection.yaml b/resources/App/modelsource/Atlas_Web_Content/Content.Images$ImageCollection.yaml deleted file mode 100644 index cbdf51a..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Content.Images$ImageCollection.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: Images$ImageCollection -Documentation: "" -Excluded: false -ExportLevel: Hidden -Images: -- $Type: Images$Image - ImageFormat: Png - Name: timeline_icon -- $Type: Images$Image - ImageFormat: Png - Name: user -- $Type: Images$Image - ImageFormat: Png - Name: hero_background -- $Type: Images$Image - ImageFormat: Png - Name: card_image -- $Type: Images$Image - ImageFormat: Png - Name: PT_DetailFullScreenImage_Waves -- $Type: Images$Image - ImageFormat: Svg - Name: pt_feedback_checkmark -Name: Content diff --git a/resources/App/modelsource/Atlas_Web_Content/DomainModels$DomainModel.yaml b/resources/App/modelsource/Atlas_Web_Content/DomainModels$DomainModel.yaml deleted file mode 100644 index d2c29b3..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/DomainModels$DomainModel.yaml +++ /dev/null @@ -1,62 +0,0 @@ -$Type: DomainModels$DomainModel -Annotations: null -Associations: null -CrossAssociations: null -Documentation: "" -Entities: -- $Type: DomainModels$EntityImpl - AccessRules: null - Attributes: - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Username - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Password - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: RememberMe - NewType: - $Type: DomainModels$BooleanAttributeType - Value: - $Type: DomainModels$StoredValue - DefaultValue: "false" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: ValidationMessage - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - Documentation: "" - Events: null - ExportLevel: Hidden - Indexes: null - MaybeGeneralization: - $Type: DomainModels$NoGeneralization - HasChangedByAttr: false - HasChangedDateAttr: false - HasCreatedDateAttr: false - HasOwnerAttr: false - Persistable: true - Name: LoginContext - Source: null - ValidationRules: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Nanoflows/ACT_Login.Microflows$Nanoflow.yaml b/resources/App/modelsource/Atlas_Web_Content/Nanoflows/ACT_Login.Microflows$Nanoflow.yaml deleted file mode 100644 index f738013..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Nanoflows/ACT_Login.Microflows$Nanoflow.yaml +++ /dev/null @@ -1,48 +0,0 @@ -$Type: Microflows$Nanoflow -AllowedModuleRoles: -- Atlas_Web_Content.UserRole -Documentation: "" -Excluded: false -ExportLevel: Hidden -MarkAsUsed: false -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: ACT_Login -ObjectCollection: - $Type: Microflows$MicroflowObjectCollection - Objects: - - $Type: Microflows$StartEvent - - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - - $Type: Microflows$MicroflowParameter - Documentation: "" - HasVariableNameBeenChanged: false - Name: LoginContext - VariableType: - $Type: DataTypes$ObjectType - Entity: Atlas_Web_Content.LoginContext - - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$JavaScriptActionCallAction - ErrorHandlingType: Abort - JavaScriptAction: NanoflowCommons.SignIn - OutputVariableName: ReturnValueName - ParameterMappings: - - $Type: Microflows$JavaScriptActionParameterMapping - Parameter: NanoflowCommons.SignIn.Username - ParameterValue: - $Type: Microflows$BasicCodeActionParameterValue - Argument: $LoginContext/Username - - $Type: Microflows$JavaScriptActionParameterMapping - Parameter: NanoflowCommons.SignIn.Password - ParameterValue: - $Type: Microflows$BasicCodeActionParameterValue - Argument: $LoginContext/Password - UseReturnVariable: false - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" -ReturnVariableName: "" diff --git a/resources/App/modelsource/Atlas_Web_Content/Nanoflows/DS_LoginContext.Microflows$Nanoflow.yaml b/resources/App/modelsource/Atlas_Web_Content/Nanoflows/DS_LoginContext.Microflows$Nanoflow.yaml deleted file mode 100644 index fa8614d..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Nanoflows/DS_LoginContext.Microflows$Nanoflow.yaml +++ /dev/null @@ -1,33 +0,0 @@ -$Type: Microflows$Nanoflow -AllowedModuleRoles: -- Atlas_Web_Content.UserRole -Documentation: "" -Excluded: false -ExportLevel: Hidden -MarkAsUsed: false -MicroflowReturnType: - $Type: DataTypes$ObjectType - Entity: Atlas_Web_Content.LoginContext -Name: DS_LoginContext -ObjectCollection: - $Type: Microflows$MicroflowObjectCollection - Objects: - - $Type: Microflows$StartEvent - - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: $NewLoginContext - - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$CreateChangeAction - Commit: "No" - Entity: Atlas_Web_Content.LoginContext - ErrorHandlingType: Abort - Items: null - RefreshInClient: true - VariableName: NewLoginContext - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" -ReturnVariableName: "" diff --git a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Blank_Phone.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Blank_Phone.Forms$PageTemplate.yaml deleted file mode 100644 index af68362..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Blank_Phone.Forms$PageTemplate.yaml +++ /dev/null @@ -1,63 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Blank -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Phone_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Phone_Default -Name: Blank_Phone -TemplateCategory: Blank -TemplateCategoryWeight: 999 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Dashboard/Phone_Dashboard_Springboard.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Dashboard/Phone_Dashboard_Springboard.Forms$PageTemplate.yaml deleted file mode 100644 index 9bbbf37..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Dashboard/Phone_Dashboard_Springboard.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1028 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Springboard Mobile -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Phone_BottomBar.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: h-100 - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero springboard-header justify-content-between - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container10 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-large text-white text-right - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Knop - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container8 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Welcome message - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting message - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: springboard-grid - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-danger card-icon - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton17 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Danger - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton18 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-success - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton19 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Success - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text5 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton20 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text6 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton21 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton22 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text8 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Phone_BottomBar -Name: Phone_Dashboard_Springboard -TemplateCategory: Dashboards -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Detail Pages/Phone_Detail.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Detail Pages/Phone_Detail.Forms$PageTemplate.yaml deleted file mode 100644 index 0184fdd..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Detail Pages/Phone_Detail.Forms$PageTemplate.yaml +++ /dev/null @@ -1,748 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Detail Phone -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Phone_Default.Main - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 0 - Name: dataView2 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Cover - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image4 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CFjeQXmjNUan5DA+xO/X+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: c2tHP7NEIEa0aj+j2Mw2gA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KPKWnbDsx0WXrAx/t/orwQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ovCWtzb550e2B2SEaAp2og== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sDRmGOo/E02j6HNvQUz/bg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yoG9PwAMcEykI9CoENRF9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: s4kiQQZ510ua68ffLuLRjg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: hUdgl/K/uU+s9X2/NQGO5w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5yrkVUElQUaLmK9sPygMlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: I8KGNl2tsUmKYpNoJIijIQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xOOgcNJ2e0KVa/J+OGPQNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: k2gBzZ9EVUOS/h+yF2YYyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: b4Qn0hik7kmqnuFfobgSmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iasbRtu6ekCQQ/vz6gBwPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q044X9lA8EW9v7lcCr80Mg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 70Y1Fac6Zkq8U6yufxWk4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BD2mcHKXbEimuBC9UxqROw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TnhN5JsSUUmAUdidCHHgqg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: n/BLgtiKVkWdLNYYaDGtMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: xQVUtXJcvEaLgOW2rhVSAA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: te6eeSTGQUaE4DVqy4zjDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xWbMmtzaAUGYiX/rVgzgDQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3uQGbMDrakWrB0fjGyvf5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FX8TmHSXMU+zMF18EQgtNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hHVHguOjwEmddCPjolN2AQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yae1unXP5kiDMGhlYpHHOw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VVePoULeb0Kyn0HZCrRjEA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "250" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0IuhnCVMM0SBVXW7NygZNA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sZIXmuW/Sku1u0ubakXQNA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oGwVWYgn7kGAwRb4ukufpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +s0VFCCMrEOkWsslhwVKug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +GoTd0CNuUGEM0Af3OvBww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5yunVi7gLEWVUjaeGfv4kg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AjlPfeagr0K1jAaogVRGbg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: CMm9sZDkCUag/060ei1J+Q== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Main title - Name: text24 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H2 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Normal - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary title - Name: text28 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, - sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - Habitant morbi tristique senectus et netus. In nibh mauris cursus - mattis molestie a iaculis at erat. Posuere morbi leo urna molestie - at elementum eu. Urna duis convallis convallis tellus id. Lacus - viverra vitae congue eu. Arcu non odio euismod lacinia. Id leo - in vitae turpis massa. Donec et odio pellentesque diam volutpat - commodo sed egestas. Interdum velit laoreet id donec ultrices - tincidunt arcu non. Nibh tellus molestie nunc non blandit. Tincidunt - arcu non sodales neque sodales ut etiam sit amet. Facilisis - mauris sit amet massa. Lectus urna duis convallis convallis - tellus id interdum.\r\n\r\nLorem ipsum dolor sit amet, consectetur - adipiscing elit, sed do eiusmod tempor incididunt ut labore - et dolore magna aliqua. Habitant morbi tristique senectus et - netus. In nibh mauris cursus mattis molestie a iaculis at erat. - Posuere morbi leo urna molestie at elementum eu. Urna duis convallis - convallis tellus id. Lacus viverra vitae congue eu. Arcu non - odio euismod lacinia. Id leo in vitae turpis massa. Donec et - odio pellentesque diam volutpat commodo sed egestas. Interdum - velit laoreet id donec ultrices tincidunt arcu non. Nibh tellus - molestie nunc non blandit. Tincidunt arcu non sodales neque - sodales ut etiam sit amet. Facilisis mauris sit amet massa. - Lectus urna duis convallis convallis tellus id interdum.\r\n\r\nLorem - ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Habitant - morbi tristique senectus et netus. In nibh mauris cursus mattis - molestie a iaculis at erat. Posuere morbi leo urna molestie - at elementum eu. Urna duis convallis convallis tellus id. Lacus - viverra vitae congue eu. Arcu non odio euismod lacinia. Id leo - in vitae turpis massa. Donec et odio pellentesque diam volutpat - commodo sed egestas. Interdum velit laoreet id donec ultrices - tincidunt arcu non. Nibh tellus molestie nunc non blandit. Tincidunt - arcu non sodales neque sodales ut etiam sit amet. Facilisis - mauris sit amet massa. Lectus urna duis convallis convallis - tellus id interdum." - Name: text29 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Phone_Default -Name: Phone_Detail -TemplateCategory: Detail Pages -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Detail Pages/Phone_Detail_Confirmation.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Detail Pages/Phone_Detail_Confirmation.Forms$PageTemplate.yaml deleted file mode 100644 index 72b4977..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Detail Pages/Phone_Detail_Confirmation.Forms$PageTemplate.yaml +++ /dev/null @@ -1,808 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Confirmation Phone -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Phone_Default.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: statuspage-section h-100 justify-content-between - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: statuspage-content - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: statuspage-icon - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qqdXIpppcUGveBYZHIKKhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JpJeIhzkz0eGeJzYDEQRgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8Pxu9hz1+kysP+nXnSxFAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y/g2o5Nlvkyo7aXprav4Ag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: k4Kf686bW02jqrbfqbY5GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mE4xQdU9vkSdeUCdUiUBBQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZeOE6zoMkUqJwyTY8BUkdw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: pYEUoSfmo0GM4RxIm9ykrw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Z/SClR1vX0ep7t3gcKsF6w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Rbwdq3LKyEe+7xdXvTYlxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X3UjRWyjXUSckpF8TLiCkw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +9VW3/KyP0anNhsCRD4QLw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AQNw4H14m06yhyWrEv/R/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /nRohrlnCkakM0FJa8BRZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BbJEazs0i0Si3h0spHoF/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nvCxNfF2QkSsxPqF1cvxrw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OS3Ev7kXWUCEtn74OF4uow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ppfw/uxzLUCNQQc7Aqvnyg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iWCc98vpqE6n5tdH5reWfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: gBoqXI2naUOi+6if0Kceow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AiHx8LoaCUC0Px0KKsuCew== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9+EtfN1UbEi1py8HEFshag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rCvphU4agE2WPoJ3+yKVGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EcYBHTvtdUSUcBCZ02nWZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 62TB51PMtEW/7NKi+NxVRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kbrptdVx2E2vznSsaP2Wsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XLPH7OEML0+GzEEYErB5Ug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4SaFOr9g40+gHagxjVy2FA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Cv5CEH3edkqhZzVE3dv7zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QNgeZQO0KkuqGAx8bkLQlQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: G1u6Ez6etEOmwCRGeQAogg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VZheWqlaSEajMjxAh2XIZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: U1SqJqJKJUCK8fTP4MHn9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W9CBv2aObECQgmHZkZK93w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: ZHKph++2u0O1iUzOPXpMTA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Semibold - - $Type: Forms$DesignPropertyValue - Key: Alignment - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Inspection Complete! - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: statuspage-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Alignment - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Your inspection has been sent successfully! - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: statuspage-buttons - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Knop - - $Type: Texts$Translation - LanguageCode: en_US - Text: Review inspection - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Knop - - $Type: Texts$Translation - LanguageCode: en_US - Text: Return home - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - Form: Atlas_Core.Phone_Default -Name: Phone_Detail_Confirmation -TemplateCategory: Detail Pages -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Form/Phone_Form.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Form/Phone_Form.Forms$PageTemplate.yaml deleted file mode 100644 index 6e2a464..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Form/Phone_Form.Forms$PageTemplate.yaml +++ /dev/null @@ -1,544 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: background-secondary - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Form Phone -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Phone_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Person details - Name: text5 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 1 of 3 - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Please use this form to fill out any details regarding your - person registration. - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Continue - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Comments - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Phone_Default -Name: Phone_Form -TemplateCategory: Forms -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Lists/Phone_List_DoubleLine.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Lists/Phone_List_DoubleLine.Forms$PageTemplate.yaml deleted file mode 100644 index 6caf116..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Lists/Phone_List_DoubleLine.Forms$PageTemplate.yaml +++ /dev/null @@ -1,705 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List Double Line -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Phone_Default.Main - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1d+8WBDe7UqN3wfJR6m1qg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GlEDPK9LZES/I+5/WOLDlQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: i6ItBDMGC0q2KzAW5LFcEg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 59K81bSTOUySIwbb9WfETg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: H/8PW3R63kCYbCfs483OXA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GtSN2VRZC0m/OkM5mXf0QA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q1aq7vGCRUKrtGvBPB1QyQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: sM4WVEbX7Uap2Gna12vscw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1Uar1xhXQUSVJdfo74j/fA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tJIHsD19eUy6XmxVXzb6Fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0RakFd1arUmninq+Src35A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Iw2W8AgLREClaL+0DApOnw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zgXlCAZjTkOt90loeXyufA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sIiJxn4upkmlobb2CkQzXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: x1RtokA4OkyLz4HfjdjeQA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bWk8bsuicEe8ZwCe67XUJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y0q+0i3y8E6p3ib5puPIgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: q7/tbP7GbUKm6XC46SDyEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xG/ZbHXKI0+JwFaZTcAroA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Ikn4TPo/fE2XdrVf4UHsyA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O6GfASyzhE6skFRZiVEngQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kW1D6nZJyE2RKOSAVqEKbg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nDPxlVZl6UmPZzqHnhssrw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: v4q4edq7A0+lCKtx/UQQ9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dS2GNAWBckeS+eIQ/SDJ/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SwKl+6p230iM7Lcaybca3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: naiZVesDi0Si0sIKTpPq/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: v13SnwpSHkWzt2dJrhUKCA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gk9ABniGQke/G4vKN/KW9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jJZUw4EbEkarBSbJAFeVvw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RASXgiDWL0aU31IEdyJjEA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ovMesAjOYECiX0gDTECjaA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EDw9XpQPoU2HO9LqV2q/Ow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PtFpI++YC0WRw9yXczVGTw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: clV2le9BlEGn+W13SKcpxw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Phone_Default -Name: Phone_List_DoubleLine -TemplateCategory: Lists -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Lists/Phone_List_Tabbed.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Lists/Phone_List_Tabbed.Forms$PageTemplate.yaml deleted file mode 100644 index b20d25b..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Phone/PageTemplates/Lists/Phone_List_Tabbed.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1431 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List Tabbed -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Phone_Default.Main - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: listtab-tabs - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Justify - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: Cme1tqUFdEyjolSRW4IEhw== - Subtype: 0 - Name: tabContainer1 - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 1 - ConditionalVisibilitySettings: null - Name: tabPage1 - RefreshOnShow: false - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pQrtvEbfl0GAZx5C6pjX0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fWX4isX8KkaS0FjbrqeUKA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lSCOtO4phU64JWoosp8sDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CpbegB3yS0inekuzkRqW+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LyqT+Wa1vk2McI87YTGNwA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vB9H+biuIEWPcNKE86MbkQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SoGLPS+K8UqpBm5QZee/Tw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: tVNjR9e5zkSKVdVe0HTccQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ARfeyoPEHESsPHqCZD9kGw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 22+cmHfQ60KBATyBqYSeTw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0X1JDErB80aXyWmHALF6Aw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Teh+FaXTJEGOp1GNNN0JLg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ETeELCiBWU+0Oo1GnA6Q+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eh0MGDkcFE28SwAae7muaA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KXsaG/1RBEOG5jvBOncrEA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: U8xUPZkQM0OawnQkfT0WEQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bzVHZQzgR0m8NKELq/Q9LQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: E/h63moqpEqMT/xMmas/Uw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jcx37wSv6E2dHXKfdotZ+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 5FZow0NFPUqYpp2KA3BjxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ORndJ/3efkuK/ZoUlFQQcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 54enVHvhPECYC0vUOjJZcw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A1exjyfp/kanD7KpOnwWRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4xiHJHxdZUKjDfKaWHMPFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rfJ7bC4XHE6TKecPRiUNAw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RmMjBBfI/0WDnRdkV/XwZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hS7kSatE6kWsyCuZ3fkf9Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LV1niMlidEyofpDehgVjlA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: V7/50KEJdE6uT+L88JEibA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lOsv6Yltv0u967O3sHmAkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oGJsvL11z0+QVNtB7mou0w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QuNHmvhXt02Wx1QfbOeoSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BhHXDqbGcUexDbkWr2+3RQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wn76YNT5vkWzYyIF3a1eSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: f1UNOWp2eECCJKeNjhIpbg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page 2 - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView4 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: L4Tl3oTZh0+n+c30HArfMg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xEo3Z23cD0meBVw/9b6dwg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hO61IwbPbEaSmnHpXygmNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: maGDhOWsL0GGIBscR4zLsg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: e2pF1XTnAkeQbjMNeynSPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IQDQ7Gtvo0mlUg2uvyPc9w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +7OWCo0fp0qCOmmh4cUuCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: q/17MPebuUSYI/r7eyE3IQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P33ArytrvU6I3Am6NrYmMg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kbcvh0K2H0m4o9N3mrOXLQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tlM+TFM4IEqNn3XhdzTx9g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aE7f2UBAfUOd70yWegYPig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gsuw6SpZfkKYwyhkVtxFyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dzt8bcOBxEa8NXSzupP6uA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Nxib6itUYEqAi0y9GG6ppg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JZEL8nrqykGqMxUUne/wOg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sRfbA/ce4kSFB1XLDa1W7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7Nze05QiZ0S7QkbMcHGf4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kAVBJXXIKkOKvEAa0dn7RA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: uuVXRf33fUmLeloIHuT9tQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uuvKCMZzdUihPq52XPEKqQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yKC+RNjEy0evgImTx+YEmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UivnOQcblEaa8ZQdJ4GdFQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kDROsUNPmkKgKsaB6eUhhQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wTybXfKQ/UOsl3LECcJz3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: muqCGclj/0GvSmzK9brO8g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7fEe2MmBuka3zsVBl8D5RA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bLNG9ui94UeACXVlugtcDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wxl6PWK8wEeANCFJ/Fj6jg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WsbQ4NJ4302LHSVBfO5fww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Lx29UmIGCk+OWujFBx3KmA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ipRR+ADZOkWkQDFdy7Ad2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sG+zulyOpkaMSOZaN8m3BQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3N5zKLGFLk2OcHtQMQg6jQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: V39hF/4oNUa8sxt6/XWccA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text11 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Phone_Default -Name: Phone_List_Tabbed -TemplateCategory: Lists -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Projects$ModuleSettings.yaml b/resources/App/modelsource/Atlas_Web_Content/Projects$ModuleSettings.yaml deleted file mode 100644 index f6ae021..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Projects$ModuleSettings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Projects$ModuleSettings -BasedOnVersion: "" -ExportLevel: Source -ExtensionName: "" -JarDependencies: null -ProtectedModuleType: AddOn -SolutionIdentifier: "" -Version: 1.0.0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/Alert.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/Alert.Forms$BuildingBlock.yaml deleted file mode 100644 index b717988..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/Alert.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,130 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Alert -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/alerts' -Excluded: false -ExportLevel: Hidden -Name: Alert -Platform: Web -TemplateCategory: Notifications -TemplateCategoryWeight: 140 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: alert alert-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bold - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Alert title - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-description - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Description goes here. - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/AlertIcon.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/AlertIcon.Forms$BuildingBlock.yaml deleted file mode 100644 index 7d06b07..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/AlertIcon.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,197 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Alert icon -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/alerts' -Excluded: false -ExportLevel: Hidden -Name: AlertIcon -Platform: Web -TemplateCategory: Notifications -TemplateCategoryWeight: 140 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: alert alert-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Start - Weight: -2 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: alert-icon mx-icon mx-icon-filled mx-icon-info-circle - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bold - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Alert title - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-description - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Description goes here. - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/AlertIcon_WithAction.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/AlertIcon_WithAction.Forms$BuildingBlock.yaml deleted file mode 100644 index a58dba5..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/AlertIcon_WithAction.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,243 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Alert icon with action -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/alerts' -Excluded: false -ExportLevel: Hidden -Name: AlertIcon_WithAction -Platform: Web -TemplateCategory: Notifications -TemplateCategoryWeight: 140 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: alert alert-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Start - Weight: -2 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: alert-icon mx-icon mx-icon-filled mx-icon-info-circle - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bold - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Infomational alert - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-description - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Description goes here. - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/Alert_WithAction.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/Alert_WithAction.Forms$BuildingBlock.yaml deleted file mode 100644 index f26af48..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Alerts/Alert_WithAction.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,213 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Alert with action -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/alerts' -Excluded: false -ExportLevel: Hidden -Name: Alert_WithAction -Platform: Web -TemplateCategory: Notifications -TemplateCategoryWeight: 140 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: alert alert-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bold - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Alert title - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: alert-description - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Description goes here. - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Start - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Breadcrumbs/Breadcrumb.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Breadcrumbs/Breadcrumb.Forms$BuildingBlock.yaml deleted file mode 100644 index af8432f..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Breadcrumbs/Breadcrumb.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,157 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Breadcrumbs -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/breadcrumbs' -Excluded: false -ExportLevel: Hidden -Name: Breadcrumb -Platform: Web -TemplateCategory: Breadcrumbs -TemplateCategoryWeight: 110 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: breadcrumb - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container14 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$OpenLinkClientAction - Address: - $Type: Forms$StaticOrDynamicString - AttributeRef: null - IsDynamic: false - Value: https://www.mendix.com/ - DisabledDuringExecution: true - LinkType: Web - Appearance: - $Type: Forms$Appearance - Class: breadcrumb-item - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Item 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton13 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$OpenLinkClientAction - Address: - $Type: Forms$StaticOrDynamicString - AttributeRef: null - IsDynamic: false - Value: https://www.mendix.com/ - DisabledDuringExecution: true - LinkType: Web - Appearance: - $Type: Forms$Appearance - Class: breadcrumb-item - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Item 2 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton11 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$OpenLinkClientAction - Address: - $Type: Forms$StaticOrDynamicString - AttributeRef: null - IsDynamic: false - Value: https://www.mendix.com/ - DisabledDuringExecution: true - LinkType: Web - Appearance: - $Type: Forms$Appearance - Class: breadcrumb-item - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Item 3 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton14 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Breadcrumbs/Breadcrumb_Underline.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Breadcrumbs/Breadcrumb_Underline.Forms$BuildingBlock.yaml deleted file mode 100644 index 159a35c..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Breadcrumbs/Breadcrumb_Underline.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,157 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: 'Breadcrumbs underline ' -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/breadcrumbs' -Excluded: false -ExportLevel: Hidden -Name: Breadcrumb_Underline -Platform: Web -TemplateCategory: Breadcrumbs -TemplateCategoryWeight: 110 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: breadcrumb breadcrumb-underline - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container14 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$OpenLinkClientAction - Address: - $Type: Forms$StaticOrDynamicString - AttributeRef: null - IsDynamic: false - Value: https://www.mendix.com/ - DisabledDuringExecution: true - LinkType: Web - Appearance: - $Type: Forms$Appearance - Class: breadcrumb-item - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Item 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton13 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$OpenLinkClientAction - Address: - $Type: Forms$StaticOrDynamicString - AttributeRef: null - IsDynamic: false - Value: https://www.mendix.com/ - DisabledDuringExecution: true - LinkType: Web - Appearance: - $Type: Forms$Appearance - Class: breadcrumb-item - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Item 2 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton11 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$OpenLinkClientAction - Address: - $Type: Forms$StaticOrDynamicString - AttributeRef: null - IsDynamic: false - Value: https://www.mendix.com/ - DisabledDuringExecution: true - LinkType: Web - Appearance: - $Type: Forms$Appearance - Class: breadcrumb-item - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Item 3 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton14 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card.Forms$BuildingBlock.yaml deleted file mode 100644 index 93e995b..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,75 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Card -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/card' -Excluded: false -ExportLevel: Hidden -Name: Card -Platform: Web -TemplateCategory: Cards -TemplateCategoryWeight: 30 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text22 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_Action.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_Action.Forms$BuildingBlock.yaml deleted file mode 100644 index 0dd42ce..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_Action.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,172 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Card action -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/card' -Excluded: false -ExportLevel: Hidden -Name: Card_Action -Platform: Web -TemplateCategory: Cards -TemplateCategoryWeight: 30 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text21 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_ActionWithImage.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_ActionWithImage.Forms$BuildingBlock.yaml deleted file mode 100644 index 759dbe2..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_ActionWithImage.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,718 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Card action with image -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/card' -Excluded: false -ExportLevel: Hidden -Name: Card_ActionWithImage -Platform: Web -TemplateCategory: Cards -TemplateCategoryWeight: 30 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sWSXNFDhGEyLiicQpgMZ/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nHlRD1A31UWBOftmGvqcwg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EN3WdRUcp0WwxNKZTVwvoA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GnDivuWRoU6FmCeBnOccxg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fbAw/pVcOESnkUhFFKc8aA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: i2io/biXYEK5Je0sbP6DSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JIzX6Gfx2ECPNtfxx/6GBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: yQ1NQnaQMkG9NhMBV7Fm/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aatJcwTAJU+CJHKjIBY7jw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eA/TgXwvXkS+T6c3QkPYrw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Zbt3EHBQO0ax9D2tyW+HHA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GrZRxa2SnkKtReUV2dbKTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: M182LLJ+xkqYwbifgE2BTw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 53W1+kfyJE2p25sXkx0pHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vVvEkfjp4UyNrS/QTZj7rQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mp6+3o+MwEuZ6hye6091Wg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YLuJVVn8eEydgKnIl+Ez1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DeT3B+Ol2EOnLMdfpgkQ5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6THViHQNcUCbEErrYHpvAQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: /nmZvctBz0GdDG+YU565pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2+twnAvbh06le/IHrPcqtQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WpvN9cKhFEChWhLRrOyrMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eYLTtwrdfk+2R/TDzycXPw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: k0WVCV4VVUmREgexeqHzMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f4KrDBcHbkCh8v5oNnRMWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cTGE3YE/YUySMdI9qoIWXg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: I+QdOGsbMkWSqiXZ2aAnWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HzkWcCPYEUeeGvn91cNv3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: x/bizW8+UkeBE78SQDWPAQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tJpQTpxZfUG/NWg2P33BaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sqok+/A4AUiw/yES2/zOmA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9HbzPG7sEEafplGVZwubQA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 13MtQu6IT0+ajKBlT8dU7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oTK+FgUfrEKYtcLHCOmTWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: ZJpVf7Bi/UC334oIfPpFsQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text21 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text22 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_Background.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_Background.Forms$BuildingBlock.yaml deleted file mode 100644 index eb741c2..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_Background.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,657 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Card background -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/card' -Excluded: false -ExportLevel: Hidden -Name: Card_Background -Platform: Web -TemplateCategory: Cards -TemplateCategoryWeight: 30 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Center image - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Cover - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VnRcIY+d20aUcTxqaWACzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IEm9irv9u0qouyvYVGXVaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A6bMSDJCy0e6vZtQ7dAzXg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mIrU+FnuU0q08zlvevubcA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cYg1/cRth0WZZcLyMiCuPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: T1WbDsCOF066TfbKcgVMqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /g/r1S6NNUGdWsf4SQNppA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: fC3i0tndzEKIHwbGykNojw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hNnSE/7+5UqV5bn5LLfe8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FfOKzjUmxkWEIrjrzI3NBQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AGgb/6cwwEW/9UgFy/fvUQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KbEEE6cLY0yqvhs8HpIR1w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LK6effYAlUWOJaNQ6O4Meg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jTHSlByGM0OHiEvoUMmMYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UkKbOJsSrUKbPt0oM6kTuw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: glTeytKYR0WbitNCi+S9aQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: feAZ9kIlqES5nV9YzUsGAw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HrAbEwMADU2778gf4NxXsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OWjsVM9AxEm5DyOerurZYQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: E3xHdjBoR0+ySZ61rj2KiQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XwEvkwZuh0W/btywVcFCaw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6G9xw/a8D0GGvwwbl0dIPg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: h0m5wDgbAE+BYiw6sO87lQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SIIyC+J3Kk2dGwKzHFLKYg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZGqwGyMxikqDjLVRtA4D9Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iN/KYuFukUS0h1pNxRfSrg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OF2ZIysn/0my8TxGC5yLSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: r61rlr8RukulxwLFqAQtGQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 61VA6A7eRkukPVREQVAR8A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B7c5NuId5UC/CKA2Jvk7Cw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J+TZ4VMprUyst+D7LQ7RgA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kL6f09WOrE2zxivT2aKeKQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qGal6zn3PEetSDZHxT+EPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kqo1LTnapEiY3wCA+rAp3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: X+U8L56j5Eex0K0swVeOFw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card-overlay - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text24 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_WithImage.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_WithImage.Forms$BuildingBlock.yaml deleted file mode 100644 index 3a2e77e..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Cards/Card_WithImage.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,638 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Card with image -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/card' -Excluded: false -ExportLevel: Hidden -Name: Card_WithImage -Platform: Web -TemplateCategory: Cards -TemplateCategoryWeight: 30 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nStP9vTkPkywgRm+WG3evA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fwixXS1ht0iUZoimAYpQpw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rFl5njTkqU+0y21zQrpJWA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 40z0XVYxJEqz9mgqFj/ARA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: G6xkZtKORkq9zDGHdo7/ng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gCO+h02Z6UCTotujERI+cg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rINPeVe2AEmQi/jGGWPjUg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: aSTMXdY020eKIwdUJZj+rA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tuIRaQ1cP0mST18OeNIsDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5AinuFV4x0+O2Q8oAJUXMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4WBVIoc7r0yRwtHq9X8K1Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aYSUidP6MUS91qlZMIPsrg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yMJCfy9EAUW5u1d2uTWaOg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2FQq4ieHVEKciPgsBE1XgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IUAxrBvTmUC/H2anBHJ2MQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vqQ2vTzJkUOms/AUqdjFaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mmk73xEQWEiAStMZvVpPeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MiD3k8JoLEqoF76T3mpsPQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ldKnvqM3W0GT0rtMn0ilEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: L0Qb3AXen0mxwNELGXT5WA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E79AIXQ3OUSNo3OmiNfl7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oJAJ5rHcUEi3HJ41vhBr1Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gDuQr9fbPkmNnba/SfFOJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Y7oTTyj9Lkm5pcP08Qt8xw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NyayQLfLqUuH1GkZl7LJSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZGO8ny+D8kK2Gkl8lqPCjg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IoYGReezcUmv2Tf1KFEMHA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8eIQKR/03kGipkZaNUF/DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HldTNiZ1fkSv3VUqZhWzPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PI8XMkRITkuTgh81zWidNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: udJfPvqB9k2KFmgNo2msBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: en5ms7k6eke70cGVMNucEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: s0sOeblbSUOhOWJzZw08ew== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yt9hEbAYg0qokSn+iWr6hw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: wx2aBsltb0ax8iCey78gbA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text24 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal.Forms$BuildingBlock.yaml deleted file mode 100644 index afa087f..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,417 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Form horizontal -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/formhorizontal' -Excluded: false -ExportLevel: Hidden -Name: Form_Horizontal -Platform: Web -TemplateCategory: Forms -TemplateCategoryWeight: 50 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 3 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal_WithAction.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal_WithAction.Forms$BuildingBlock.yaml deleted file mode 100644 index 57292ef..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal_WithAction.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,522 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Form horizontal with action -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/formhorizontal' -Excluded: false -ExportLevel: Hidden -Name: Form_Horizontal_WithAction -Platform: Web -TemplateCategory: Forms -TemplateCategoryWeight: 50 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal_WithTitle.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal_WithTitle.Forms$BuildingBlock.yaml deleted file mode 100644 index 2004641..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Horizontal_WithTitle.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,452 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Form horizontal with title -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/formhorizontal' -Excluded: false -ExportLevel: Hidden -Name: Form_Horizontal_WithTitle -Platform: Web -TemplateCategory: Forms -TemplateCategoryWeight: 50 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 3 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical.Forms$BuildingBlock.yaml deleted file mode 100644 index a831300..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,417 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Form vertical -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/formvertical' -Excluded: false -ExportLevel: Hidden -Name: Form_Vertical -Platform: Web -TemplateCategory: Forms -TemplateCategoryWeight: 50 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 0 - Name: dataView7 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical_WithAction.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical_WithAction.Forms$BuildingBlock.yaml deleted file mode 100644 index 1fdb0cc..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical_WithAction.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,522 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Form vertical with action -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/formvertical' -Excluded: false -ExportLevel: Hidden -Name: Form_Vertical_WithAction -Platform: Web -TemplateCategory: Forms -TemplateCategoryWeight: 50 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView7 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical_WithTitle.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical_WithTitle.Forms$BuildingBlock.yaml deleted file mode 100644 index b84db65..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Forms/Form_Vertical_WithTitle.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,452 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Form vertical with title -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/formvertical' -Excluded: false -ExportLevel: Hidden -Name: Form_Vertical_WithTitle -Platform: Web -TemplateCategory: Forms -TemplateCategoryWeight: 50 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 0 - Name: dataView7 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader.Forms$BuildingBlock.yaml deleted file mode 100644 index 4a6fa71..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,130 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Heroheader -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/headerhero' -Excluded: false -ExportLevel: Hidden -Name: Heroheader -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Header Title - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader_Background.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader_Background.Forms$BuildingBlock.yaml deleted file mode 100644 index f962d79..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader_Background.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,699 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Heroheader background -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/headerhero' -Excluded: false -ExportLevel: Hidden -Name: Heroheader_Background -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero text-center - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: headerhero-backgroundimage - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Center image - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Cover - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iSaMiJ4btEC6G/ylyyYSmA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: De1XeewbgE6m9nk4UsKFPQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GXRajgzaSU6yG9stcQyXrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UyCJDYxWbEqU2uGEKIOw9Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fx2ydQds/EiybP9jf9jkhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: l1FuFF5gAkyEGHtBeMYANA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /i1M5nyAZ0Gh7tjGKf5xgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 7af5sWkGnUWVUSrkrvtSPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z6Dn3J2aXkap8L7d/yVGLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Tgy3yPZh0UO8ig5pmpk73w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OsnH0gQ2bkmPcBZijf1sCg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FxpQ/RfGR0ehoMBxeCwVqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9js426SBpEu2YJHm++hbdA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0VXd8ZnUgU+mr65DibI+Tw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y7on2u5fTEmlyAxU7U8wHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: x/PrGyRFGka4HSBftB/NmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ol3vS74im0SHSIVP+SYaow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dUNDRwC+6k2b1zxkDFVPvw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wOvVee4b90yY2oC+Giivlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: OPHVymdkhUicz7kqCKNPHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JNzogPGOiEWRcVKV7QiFRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Hfvrk932tEGVvMH80Ht25w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OWS0QXGtGUeH4X8KBeHIkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8vd6zI7NdUyNQPmL1SqMmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nFCMeduK50yrcJsdYrKftg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Cg89vZ6dhky0EAyc45nIQQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LdEK72qHhkGo3ahYik2a+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1xfEChnNXUqTFHfQOgUyHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6mW9x73dm06qxl27v9hvCw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bikzoMblM0a41JG2KC2EOw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: D+rymuJYfUaKFkcJtRR3Xg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PEXuER30PEO3/hMiKVlsnQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: D+MnbiFoWEaT8cE3iY1+8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gKaO4ZYNQUWZxIiHDCFWoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: /Mu22k3/7UmO2caKdAnXLw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: heroheader-overlay - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Header Title - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: headerhero-action - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Border - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader_WithAction.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader_WithAction.Forms$BuildingBlock.yaml deleted file mode 100644 index 681ea7f..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Heroheader_WithAction.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,167 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Heroheader with action -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/headerhero' -Excluded: false -ExportLevel: Hidden -Name: Heroheader_WithAction -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero text-center - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Header Title - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: headerhero-action - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Border - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader.Forms$BuildingBlock.yaml deleted file mode 100644 index cb2a0e4..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,115 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Pageheader -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/pageheader' -Excluded: false -ExportLevel: Hidden -Name: Pageheader -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage.Forms$BuildingBlock.yaml deleted file mode 100644 index 79cdaf1..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,671 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Pageheader image -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/pageheader' -Excluded: false -ExportLevel: Hidden -Name: PageheaderImage -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: pageheader-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Rounded - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fW6AXpKVl0ecLiLcHsA0/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: smJjTtPnokCP3N6Io37w5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: r+vTMoIVE0Wja9pgz2MYlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SDd7bd8ekEuJK5cVhaWVcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: m93+LWTRCEa3e72bGhso6g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Og4cLwSmQ0iOwbuex548WQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SMUJBgHGLkuy9G7DGDYJaw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: lKfO9UpJ5k6nXYCNZwWVAw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: espPi7X1M0qgtlpn9mi3kg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fmhhXCW+jEWeLIOErNtydw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +8LmmVLBQEybvI/+Ht1BmA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ChLcd9j/cEGf8sp8ONaUPA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4Xop2mFnyEaX9LW7IXEDYw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nbxI5FaupkKl5BUsJ07kqg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5V0b1xA8xkqswq3ICi7B6Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jtPsXn+84U6pjapoTNp7Gg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pTd6jwFWw0WLyXSwWBssVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mJIra+usWE6tKwguHpQD4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lrd4ttI4LE+pSl9RalLGjg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Tv4HeNphNUOc0oEjWx784w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yOwwvGARVk+mf/MZCaMoHA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: d2KpDuC+1UG/lXorAaMRbg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7RLFJzzY8kOUDfAigBtLxw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M5kh/flHOE2nTmZaRtr2SQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UjALcrWKAEa5m/3Dos+t9Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oqR2cSaiGkiJEaeeYI2iZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5BWUqzVcI0ekHdWHAKt/PA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "64" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /yegkHMUykKcetG+IKd6og== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wUU2zlWrvUy1i/833c4ikg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 35G2ZI5aAUKX4Bt26ep/kQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uog+3kgMbkmngHpN3bwkIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9wcuS+NAwU6jELiSw4go8g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6XEUbr/Rek2tB21Tnd80Yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5w/enlJwSkuWZlUrGq4N9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: u6kMFki41k24wV7bm9u9nA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage_WithBack.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage_WithBack.Forms$BuildingBlock.yaml deleted file mode 100644 index acd3646..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage_WithBack.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,715 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Pageheader image with back -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/pageheader' -Excluded: false -ExportLevel: Hidden -Name: PageheaderImage_WithBack -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: pageheader-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Rounded - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Lv/byYxdkUaxACF/iyTVcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6qcUI18ULUmAXmj06lnzzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pjPVwtI2Okq8gQ8gfQxxxw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ytzgRcgU8ky9KUzegzOF6w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uCJf0O1JYEqyxDI+N1cD/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sndhcFIuOUG2NkZD+5+pRw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oeOFCbs36UGgcmb5pxKxbQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: zl0hOFreV0m7rQMnf2SUNw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HUC0vVxkSUWqFljs5Z0KKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YpQah0LauUeq36Fdvha4vg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6HSI/CpjU0WcjVEwQSK8WQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zHBUPPYdWEWjO2HttYynfA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /LsHsHD4VUq72Iyiw1QpHg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: s0nWZDbQWUqPVktBMeNxzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5DiA48Lw4kKuSemCn1kbXA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mbYrP21CQE6zoxRGnmc6Zg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: m7GpMtAp7UyU72DugwWsbw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Pv/64kZp0Ey3m2dmHuDRMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +wkefuW3B0iablo2kIc6Yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 9uHCCnX4QEu5S7iLUN+FzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: F+S2TmklskS1lqL0SGvJ0w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7/JNBBJK3kGX/4JeXKGwiQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QbZMk3b1uECG5+VNtSClhw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZdbscNn1fEGC83gXk3UTzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eTm+MXP+u0azAr8aV82x1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CvDvWJgrxU6+t7+Oo+sviA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lCnDVlxp4keg7dBXTs7Udg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "64" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AOFFMsj7kk6HfhrgIVv6ng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Se+JdkCaVkaGuu9f5nJTJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nE4KN53F5EuGNKIK99E4mw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1J6hwwMgfkes/IssT4B4bQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8SJWxpiAEEiszr6hjiaHqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xLAC+ofrzU6RPhipvuLq3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZhIToXKSQESPbxDNvX+1Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: CexQK5gdmECMTBoO1dWQwg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage_WithControls.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage_WithControls.Forms$BuildingBlock.yaml deleted file mode 100644 index f1cb161..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/PageheaderImage_WithControls.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,804 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Pageheader image with controls -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/pageheader' -Excluded: false -ExportLevel: Hidden -Name: PageheaderImage_WithControls -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: pageheader-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Rounded - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HlybbTmIkkqWJpPG+QbMKQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: N5KA8qTTW06TipabNr54uw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1c1gx4+4/U6ReHeGNO3TJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UlfrlFZwZU2uo6T2gjji8g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A88tMo/rM0i4qnU+Ty+RVQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jd2PjTkWfEeN015iLFVHEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 07NdV/zE9UyXvO8PTORPdg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 5fxp77EHvkSA46B3/4oCNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y9bFdUW0bku7yw/kKKraPw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QpCLBtZeUkme6MGeqd0TZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8s4x9VSRk0eseG+O3Qd0TA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3G5WW4iG0E67akgIsT7JhQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eMKq6nKGkiNxbuiJ6jmTA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uYK2Ks5QHkOtdPsFlFzaXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iMwSwm1p10+v2EyoLvXSCg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uia4QhM2yUSNITR9GJuD8w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QtDrErCe0U2vxQen6IETsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5KfaESLPY0u959rNCZEX6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Z/+h+us8h0ia3AcbwwDmyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JEfzaBm48UmeTtC7oSipWQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: soHMh/XwTESdTSOe48dWAw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zIkBbI/mqEqPyGUwxa9idQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: i8tDX/tNvE+aPmLVXgUGww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NZiHyF8jk0a994hP8/rRmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vsZbw+eCY0KDFL9rGUjuvQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gwCzOIk4lUKzdOTwP43Dqw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: C9rdbl8nz0KFH7ykuz3vkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "64" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: S8zVw2BUjEesY2b+JWDG8w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hxQPkotcxkiwyo4kzWLMew== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LGZxGUz2YECw9/gYQyc1dg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gx/83XUPC0yMQAiLqEdIbQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W3dFOqBbZEGtbCjGdsnB5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ovO1KBWZm0msxyjsvdtPaw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Dc+vKA8ioEWgkU8F508d+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: /QfID03wl0udFsSt9V2Bcw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithBack.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithBack.Forms$BuildingBlock.yaml deleted file mode 100644 index a49f7bd..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithBack.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,159 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Pageheader with back -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/pageheader' -Excluded: false -ExportLevel: Hidden -Name: Pageheader_WithBack -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text42 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithControls.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithControls.Forms$BuildingBlock.yaml deleted file mode 100644 index 66385b8..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithControls.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,285 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Pageheader with controls -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/pageheader' -Excluded: false -ExportLevel: Hidden -Name: Pageheader_WithControls -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithSearch.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithSearch.Forms$BuildingBlock.yaml deleted file mode 100644 index 922a695..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Headers/Pageheader_WithSearch.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,345 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Pageheader with search -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/pageheader' -Excluded: false -ExportLevel: Hidden -Name: Pageheader_WithSearch -Platform: Web -TemplateCategory: Headers -TemplateCategoryWeight: 10 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DropDown - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - EmptyOptionCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Dropdown filter - LabelTemplate: null - Name: dropDown1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ReadOnlyStyle: Inherit - ScreenReaderLabel: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DropDown - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - EmptyOptionCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Dropdown filter - LabelTemplate: null - Name: dropDown2 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ReadOnlyStyle: Inherit - ScreenReaderLabel: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: null - Name: datePicker1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Date filter - ReadOnlyStyle: Inherit - ScreenReaderLabel: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Search - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton13 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_DoubleLine.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_DoubleLine.Forms$BuildingBlock.yaml deleted file mode 100644 index ba07f95..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_DoubleLine.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,170 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List item double line -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/listitems' -Excluded: false -ExportLevel: Hidden -Name: ListItem_DoubleLine -Platform: Web -TemplateCategory: Lists -TemplateCategoryWeight: 20 -Widgets: -- $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_SingleLine.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_SingleLine.Forms$BuildingBlock.yaml deleted file mode 100644 index 371a61d..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_SingleLine.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,135 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List item single line -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/listitems' -Excluded: false -ExportLevel: Hidden -Name: ListItem_SingleLine -Platform: Web -TemplateCategory: Lists -TemplateCategoryWeight: 20 -Widgets: -- $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_WithImage.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_WithImage.Forms$BuildingBlock.yaml deleted file mode 100644 index 9640999..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/ListItem_WithImage.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,699 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List item with image -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/listitems' -Excluded: false -ExportLevel: Hidden -Name: ListItem_WithImage -Platform: Web -TemplateCategory: Lists -TemplateCategoryWeight: 20 -Widgets: -- $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aOmFMJMTsEqbgrCfYJlpFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iEeu8ZYwjU2R5Nv74CbbHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JYwyICS/Kk2UOPcxqqVlzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ER90V6M5XUKhc6KJMea0gQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3F07MMvwK0CHMF0xvUNLqw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VLX6UpxXQUK8jobYqylHyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Rg/Ib4aLrky+XavDGbpx2w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: bv51Y90wzkKxDj222/JUow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7ggE4vU72Ue6P1j9VtMJUw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rz1OC1wgWkW0jZtzBQuBxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tpBaJtoCA0mz2VSs2DCbbQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: APb3b3+T1EyfSN0eiy5mzg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sxxI32ZqFEaSR+b6jLg54A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y5SsAXUMzUKLkbihC+WqyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Uj5C1yTcRU2EkSZvi0dM0w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 70t+bqi9kU+33bCFYbuXtQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hxmtiK9M80id6pd+jo66GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DywmtbhRP0yjKTQZ3Z2FIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XjH/+zh6YUSDgxlKSlhmkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 54T21jpexEag7KJ6cOz37w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QBMloqB2VkSCFHfNreAoyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 58dvgtgM4U2dd4dmMi3ulQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: inITFc/qGUabuXGj9XabAA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hS/SNaGUIEqRuC/n4WgI2w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vAu2aX9UD0WHu+kjeYl4Sw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uN7VGlaub06h/OiKvGZ/UA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IkcFfKbV702weFXMd/slsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WtNwYp2c+EW9PsFLaLL2dQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 84Xw62iZFkq1aQ25zipG7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JdLNM8oPtkCSUTCNuNJQEA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Eb+1CDjHUki50SAHtv+LNA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WtJD8gOMTUSB837K5nJoXg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q5lvxQhYv0mVrqHugRC0IQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xoNyeGX/uUKTQshVFIq7KA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: NWj7ftE6F0KcN4if4Us8tg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_DoubleLine.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_DoubleLine.Forms$BuildingBlock.yaml deleted file mode 100644 index 87400a5..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_DoubleLine.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,213 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List double line -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/lists' -Excluded: false -ExportLevel: Hidden -Name: List_DoubleLine -Platform: Web -TemplateCategory: Lists -TemplateCategoryWeight: 20 -Widgets: -- $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_SingleLine.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_SingleLine.Forms$BuildingBlock.yaml deleted file mode 100644 index d1d5bf5..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_SingleLine.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,178 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List single line -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/lists' -Excluded: false -ExportLevel: Hidden -Name: List_SingleLine -Platform: Web -TemplateCategory: Lists -TemplateCategoryWeight: 20 -Widgets: -- $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_WithImage.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_WithImage.Forms$BuildingBlock.yaml deleted file mode 100644 index 1b6f325..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Lists/List_WithImage.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,742 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: List with image -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/lists' -Excluded: false -ExportLevel: Hidden -Name: List_WithImage -Platform: Web -TemplateCategory: Lists -TemplateCategoryWeight: 20 -Widgets: -- $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W6ElUV2wnUC2KGkytkxKkw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bKpG+aPRIEetfwNI/Jv8tg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NCQN9XB9IE+dqs9CoSA1dw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OuKYbbefIEqGYgTpALluAw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FY0F8kSdrEWLg/4+9mfxkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Vknntcd9WU29hrwmWTfYcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qzxVnp5DskibGJ9QLVrVLg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: hxlO01xDpkeaFZU8ct7/Tw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zapQIbbGhUqo1SmCGzgWCg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8VEOTb20bk2JnduqE6Zf4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c5LJrjzLrEyfgraQck9ehw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iZRsGejxMkSz7Hvs2ZMBzg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2SAE/E6KH0SXtAvEdAfh7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KMxxGhRGB0ehsLNE1C7AXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7egaoeqxy0SnhIhXXcTXfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZyRJWXM66U+VLU0LMQugIQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hf2ThZcY20OhBR//4teYBA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 86LWhyRjBk62dGaPuTmNNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HrhVdcHHu0iKgvkh4OTrrw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: XmHRj7QMU0WQT1aHQl458g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: L9yUn9jCzk+cQrbfwI1XMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZW5mM9+8O0CNj5nIRbcdbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wD+c51asK0agpQvpwbnA/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1SiNInPbUk6eFbkfHlQJ3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YxBxPZ4Zy0+K9yEsoLI7HQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KK9yj06qqUW9wYB+qcHw4Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +3pzvlTSik2Relbwm9GOUg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 45e2CVGjRkKoLWqUDeGKJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: inQAxMHmOU2Y+5qKEbc3/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SmqNxh/Co0uijQUuvar4DA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: czePAMqNj0Sd1kTPnRMs3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gttKTztgzkmYqT1l1uIjTQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OBDLPKGDL0eL0ROjDDddFA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EataF++t4kexunK+6urylg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: Hi4foBFIzkWKifFKO9Qv0A== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Master Detail/Master_Detail_Horizontal.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Master Detail/Master_Detail_Horizontal.Forms$BuildingBlock.yaml deleted file mode 100644 index 7401011..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Master Detail/Master_Detail_Horizontal.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,801 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: 'Master detail horizontal ' -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/masterdetail' -Excluded: false -ExportLevel: Hidden -Name: Master_Detail_Horizontal -Platform: Web -TemplateCategory: Master Detail -TemplateCategoryWeight: 80 -Widgets: -- $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: masterdetail - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: no-gutters - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: masterdetail-master - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 3 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: masterdetail-detail - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: form - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: form-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListenTargetSource - ForceFullObjects: false - ListenTarget: listView3 - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Alice - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phone number - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "+00124059134" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Sall.doe@company.com - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 11/24/2020 - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Biography of Sally... - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Master Detail/Master_Detail_Vertical.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Master Detail/Master_Detail_Vertical.Forms$BuildingBlock.yaml deleted file mode 100644 index a6cc491..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Master Detail/Master_Detail_Vertical.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,1352 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Master detail vertical -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/masterdetail' -Excluded: false -ExportLevel: Hidden -Name: Master_Detail_Vertical -Platform: Web -TemplateCategory: Master Detail -TemplateCategoryWeight: 80 -Widgets: -- $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: masterdetail-vertical - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid7 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: masterdetail-master - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CzHtd3bRl0OmvaGlDc8Uvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hkQMAkJj2E2klHhYHdkOYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5986JM06ZUS0Dm/tjIr6ww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Y3z5GzfBLUCR63gECJHrwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Yv+1+FBmY0qGJ0haVrYGTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6dUUOvOkX0qnoh5SC3R/Ww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DAbv8ojiyk2t4d9crgd4Pg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: t7iSHXwUbk2vXUXXDL2xCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bxBz+cWILEKnY0mGX7Kftg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ns1EVSSupEKXRJR18P1OXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: geE8TRwLOk67/+eqjDz3CQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gq13WsdsS0uCGGlnM2fQkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: me1Ar1cFIUC0mgfp7Vkzbg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: u4aA/TLM20yZVCrnVOfQmw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1ThOIkoej0i8eW4DuYQocw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yU89KPdkV0iRGSP7bCD/gg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ahnPD8Ov+Ueyj041wYl0Aw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vzzACfuvTUiu+5M/yd1d+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RkXxjtCjL0WlFvZKG7vsug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Dl0hXjDb6UCBHwuHV03DFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eG4z1IclG0Spvbd/MxyJ5A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qVlzEw5lEUSPBoKTeNBYUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CbVSdOJZ/0mPr3osjeQYMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SIZ911ariU+l8wVIxDZrJA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DWvonMOZIkOIfJjOEzdapw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PVQJ0yhWbEiRNDYRAWo+7Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q0HnY2JblEO5GxR+Q+tZ0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: C3bKVJHG20SrNfyBV5HE6w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pkQgXYgUS0KRC2OED0kNuQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PXhKajRYDEqBTEFPneIpOg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UPsO3Vm5rUezP2gSbcc2aQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IVvS+oU86keSmSqmKiV98g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wxj+ily6PEOaTpoh9BXPcw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dXVq4KDCzkSCdgPq7+0/2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: z4Lg/rFfxEOTmpRBJyj6Aw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: masterdetail-detail - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: form - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: form-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListenTargetSource - ForceFullObjects: false - ListenTarget: listView3 - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Alice - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phone number - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "+00124059134" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Sall.doe@company.com - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 11/24/2020 - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Biography of Sally... - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Timeline/Timeline.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Timeline/Timeline.Forms$BuildingBlock.yaml deleted file mode 100644 index 2f0e69b..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Timeline/Timeline.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,1201 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Timeline -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/timeline' -Excluded: false -ExportLevel: Hidden -Name: Timeline -Platform: Web -TemplateCategory: Timeline -TemplateCategoryWeight: 120 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: timeline - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: timeline1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0F38GcnNnka0MZfKj3Rh/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: null - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5evPSXXvKki/eAKBUjVxHQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0U1XIyQaSUiwkl2546AEhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: EYQkxloCS0GcvcWfJPlNDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MXeDhJfO4Em7c3diPXOkkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: p+wytaC0dkGj0OoBmGGmnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ni4dT++Gv0On4zUZiyy/hQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: jd5z5d2OZkSav+Z/8JuVYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ar8XCDVYW06Y+VMpyVdeSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NJyv2Ub/wEaKtRRvo/XOkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /Kgti0X9tU+EYM4ngtVk+g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /TDA2NPnQ06kXE9bz0Khag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OlvU2Y0r6U23KW+vGtKfgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Y5Sv6NdVfU65mXt6hYhcsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oQy1ncbaAUSV0DefGpDUQg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sHJmwtZ9l0yn6YK9ayF1UQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FjpbxYkxukCNt8EhpCbWrg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: day - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oO2y0dQF10eDhWIc8HsMIg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sZH/fyWIZEinwN+KC3LfuA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dayName - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BMHTQSPM6k2XVJj3lqM9Ag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4juoqleR60+pxLZymk3t0w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: month - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8Pt7zQCxr0+2qeaxUUECXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HuHwBah9UEOatwjVyxjZNA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: end - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LsoEPj1+V0aEFTqnPL+MkQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: htsYITIRKUSR4XrsgDQgPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Pf9PbjUiXE282b1vPJV6GQ== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Pkg0IB7K6EWMgyW+2b2OaQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ptsZBfRx5065I2ODnfv6Ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +xfqq/xM8U6PX0s+a7PJ1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OPt8NT37+US8bpiazMN42Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IEBAw0uoFEGkRy1fnZr3qg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ffb0MmeQ4ECcM3FInYrDMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nYnlVyIzE06BAV7PDd89Jw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: GlK/ye7VQkqk5wpoPwQQeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DuThu+wPgkOq1k+75tKXRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Rehc7TNVvU+FX/nNYnnYUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y3rR09C3s0O0robBk/mTkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HlGQoCknP0CulJVp01yr4A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hOqJet9mP0abbNdefI9VVg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: G5bqQeIR1kiooqLj8bkfpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: StnL23Wnu0KC82tAAPJg0A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JDmhbnKGAkiSkrKY+rwWqw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2243ET0PRUiz0FSmOpkaog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: s7Tb6n7MzUG+xySYAWfy7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SrPQktbdwEWwDUetXzEqvA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: PmpTkWx1Bk6molhbMVRZbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DKdZtvlczkGOFlBi0ZLHfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 70SSBopEkkeBIqs9+1ZoDQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X8b1KR23r0Ga+qRXI1cr4g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "18" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: j5CZ/UsVikaHu7i1F93Wcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hOJdyQpK7E+ujWxpway92w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5VtMb+8jBUGxRm297GFSEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dhKMtQolC0yxX2QP1pDwGQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "18" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6d9EqtYOHk2BoekmNQ93fQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GgI/LwFISUSSxtldiLItsw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: k23+aaaSQk2pvHcJE9Jbpw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KFRW0UkQzEaYMbFj7a0q4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NAlkOHPVV0+yX2+IDb4JfQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nQV5xoP7zE62lm363Ra4ng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: noMy8eWNUkalmtb+aItE/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: HlW9rgJ5n0GzCO4FdiDfzQ== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vUvdNvm7+EaIX6SKgy4BdA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nsbCEfiBWEOJwQdOzNu2wA== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Today - Name: text5 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Uv3q++CHykiW5zkEGc09ag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aS5/DM4J30e3a+frq03LIg== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Timeline entry title - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: o3bFrFvEc0infPcla9xIKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sX0qB7pYOUa1MU8gyey1xg== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "14:30" - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KzbeOzQWrEi2HU2nfCVaKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cCbweq4g+0ytWGx1DlZ3+A== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Timeline entry description - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3d3no/FziEejxviQH6CF5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kZOEA8D3EUWwkz9aaCE1iQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: yP+aTuo0kUmezArLPmMxMQ== - Subtype: 0 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Timeline/Timeline_WithImage.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Timeline/Timeline_WithImage.Forms$BuildingBlock.yaml deleted file mode 100644 index 958897f..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Timeline/Timeline_WithImage.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,1285 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Timeline with image -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/timeline' -Excluded: false -ExportLevel: Hidden -Name: Timeline_WithImage -Platform: Web -TemplateCategory: Timeline -TemplateCategoryWeight: 120 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: timeline timeline-with-image - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: timeline2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: v/9q2n/0pEiCXZbMwX7v8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: null - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xM3mihTRZkeRz5HhXylbpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y2bYpuj4AESYTZAw2RzXDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: nr+Z5P3X+0GTwx8CfL9TJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dKu1Foa3x0WDyOsw3CUmPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: PkfcpOYPMECDQBwXaxAcsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SBVEF+ZTckyVISCRpgEDIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 1jmHBx/+JU6T8rjEcBAePQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: F5DBqo+6AU2QEYhuJPs3LQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Yb0Mw1ItSUWIHFJPxxDFcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ER1xpAT9skqATmsRFhua0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2RnkymC8Kkutet8NrRiZNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lNUpnm6y30yA7PbnTsVH0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6I63+91YlU6adSDoEl1hOQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mps4rzr6oUCMezGQh/vsQA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XzJ73L5iMk2YiYsQTw05RA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vICD3lsN+EGen7lyP0CYvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: day - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mE2YTClNHECxVmguleq6cA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5j5kcF92OUq4SgSk9o43LQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dayName - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YueCQwHyJ0WsyHL3aktioQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RHAbdXjY0k+qgPjg9jHxXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: month - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VjnMXa4nqUSBmWkYgco8xA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4GrEOUr40E2Uwzr4IizefQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: end - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bM0jodMwrEmUeghZfEFLKw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eUqhHJUJ1UauUni3H12v2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: R79AlGalBUWxjDVh2QmtnQ== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Hd9NiWbF2kySTfefbYHZkw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 42grLelVTUGMXrlrVZ0F/A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5X0ta2juCkSYwJL20RXBig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: beANY75+CUSp/cORYd0bog== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UVV2RpNXCEqrJgnJJmRJWA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JsxDLIVQvEa+G/l2/CJG/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7y7kbWjeK0eqaVVKYU7Ayw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: t3VQOFTe10O1OQ8CBifohw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0pdALcrFoEyfEHykqIZe9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AddarnI31kqmN2EnXQPA5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: m7pTcvYP/UmBy9gS185brw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: s+BYgln/v0W8gO8fgYtbbQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3+081vZ9rUCyPGRQ9Nd7JQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1I6nV0bC/0yi1sHqRRb5aA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SNJLA6RRkU68NmVPILc4zQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Dk5/B0YWVEG+LhASSWd9rA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JXyvoUxomEWbgNXvNn94Sg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rW+awGlnQ0aVMXlOyMB0sQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: p4ER2fD4yUaOS4um5+lIFQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: P1idlVxWHUqDj1Fsx/3nYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XOP6qT3v2k65o70p1KR1IQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M2eER9MlYUO4vU9E1ktlCQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: I25n6QhomUqzzUbuXOLa1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "18" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GMxIrM8ol0+X3Dt9kAoKLA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: H5TBkNfRqkSCarRanxWiFA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lNvkWRCiBkWdFHL9V8CM3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: b8VAKqA8ckmvxfk95Hnwbg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "18" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: G29j6p3Lxk29plJy3B8GRQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WQgN3uXusE+cvgJAp02sNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ipkrm0mM40m10KpuNgELhw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kwJzoaAVbkKBPhF229oOZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +1KcOYoP5UOJ5OfVLuATIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zBT1m7d/C0WWsx5ffDroAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RRiSpcrde0yEhEJQiI1YiA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: sO2778uSIku5hLIHzFxJTQ== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8QtJGyEUTEa1CogXRWv6eA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LnoNxIDnAU2UaWuGTgnB2A== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Today - Name: text6 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: prydzTae+UO392SSoouujw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UAnD7rCwS0yGU1oGBykAZQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yrVcftSVGU2HdVXVcnganQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vUuXVNX6dEmKNFHRmrc6gg== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "14:30" - Name: text8 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wU+HzHU86EOZMjNQfS2YOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4CICuGwasUSggBhL3qay7Q== - Subtype: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: timeline-entry-image - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Timeline entry title - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Timeline entry description - Name: text9 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hDMon6sXFEuH3OVi8DnTYQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vvRWiJWL4Ei8LA3zsXTOnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: Dk42pDfAN0iWeWiZ44OafA== - Subtype: 0 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Icon_Text.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Icon_Text.Forms$BuildingBlock.yaml deleted file mode 100644 index f289bbd..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Icon_Text.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,407 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: true -ExportLevel: Hidden -Name: Tree_Node_Icon_Text -Platform: Web -TemplateCategory: "" -TemplateCategoryWeight: 0 -Widgets: -- $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: treeNode1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +hz8q5IZMUSENeboZSo6Dg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lJHAfkifgUGGDAGfv0H6Fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7MMh6SWZbkGMxYkS5ED9GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LG5osrVZDEyx3jLzd/KIDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MDTl2+Xs7E+BhFpXCcjWbQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Qbi9lscyYEWwOJ9buE16FQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3FshkNJXOUu0uOGfc6UttQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: V1bCp5XKckCgIrB9OHfZSg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oBNe3ii+2k6e9M7fm8U/tg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1L0mnBJC5keeUsfU2bJpDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nNpBUsFxqUejzPZnCSC8ig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hOqRDlaonE6cqRahCw/cKQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GntxyJA5ukaRQ90zQWzGUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /HU2vrLVjE+O1VRqPBeeiA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8a0k48i2+0exyvVoSlgExQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: I9lfUIF9HkOEz3cKdLg0kw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YSiI1HOKB0G5TZytfWAucg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KDMXYgk+PUyrhMJuqy3G8w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cHOjd1+gHkGbk/qbrqmT2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WSkiHEgXfE2rIdfkqrFzSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kiaDQ0KgtUewuVPD4CRmiw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nzzr/iYi9U6qVlSQdzXZFw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qumr84pYW0ablel+q2nH9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xf41L0YYxUGAovtN/BeOAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f60JA26wWUuxBv3B2ODbhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7j2dfL5PtEiiefH+U3CESg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: l5lq5aTxukWT8L2UTpxDLg== - Subtype: 0 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Icon_Text_Lined.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Icon_Text_Lined.Forms$BuildingBlock.yaml deleted file mode 100644 index 8ed0403..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Icon_Text_Lined.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,424 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: true -ExportLevel: Hidden -Name: Tree_Node_Icon_Text_Lined -Platform: Web -TemplateCategory: "" -TemplateCategoryWeight: 0 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: widget-tree-view-lined-styling - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: treeNode1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6d/xOAyq4Uqga5I+wkWTIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: G+UMXDKzBEqpVqd+p4OGSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: v3QxwS8cDEKcL9kwgjN+dw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sM0rdwBheEGtd7a9xvDeYQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /1Ew69jXW0askJvnC+3QeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UQwEBZzVm0ycSgSTZSgb4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uDGyI9GseUWvDfyqlZQfjw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: EAKYYXu40EK3boX+PFmHNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vFXbJCiCQE+IlW7kVqM/0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QsEnn3Um3kCxBxAnkqUwOg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LtKdshBIPEeAqPYv8l5XAw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Eo78Zw7Y0SkEhtIpNVATA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YCiWTBUk4kC4FdQ7R6wwOg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QtRDC1ykuEWW6wuish6s3w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xo040C7ZD0KOYruP2SpnQw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Xr0aieA0j02Dkgsc6IFfgQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YG2yH4dmRUaW8XGw/eq/1Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iczDz9HX50KmfCzcWm/ziQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: doU1df1GpUyylM7uzEla3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CFDU10+PiEaejkRqbMNmUw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kVpd0RXQtUeyWfo+jrctlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FZORZ+4Bs06jSYhRbsq2dg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vpVqfm87IkG5Zj2gsWdlFg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: H5rXJSc/NkWOvJLcA6KiCQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /umMR9pqMkqNdrmLdxVEiw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ApKTl4FR+E2H1flkrH37Rg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: GDlkRw7yzU2OIc9aPO22zQ== - Subtype: 0 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Text.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Text.Forms$BuildingBlock.yaml deleted file mode 100644 index af4a0da..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Text.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,407 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: true -ExportLevel: Hidden -Name: Tree_Node_Text -Platform: Web -TemplateCategory: "" -TemplateCategoryWeight: 0 -Widgets: -- $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: treeNode1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KR4FLWP1ckO8UY/NkEsnLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qhMIDzIKWEOyqf7kXkp/7w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bcBw6wuWzkizdR6BNDJNGg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dyE5+t6mG0adH1x0WPfShg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xHI0ntbQdUGyAzptd+MFYA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kXW63blbU06GdAeLA8+Rxg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wyhnec9nkEyvgxYzzi/aHA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: xXkjyOQwQUaVCS4mw/Q7pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j4p2dQ6EoEODBGhq/cMRfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bsxkZpvdQkaaD5ded8NUMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pQU54Akff0C9+EkTDPCH0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZR78ZfBuukiHmQS33xrBTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: h4+oY4U68Um8ZzuNQ4LZSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VvBAew8+x0Clqm+ThpXrLA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vXzqyHHu4kGkKUSB0XDztQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZqdaKlWqRUuaiJAtQOfMbQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9YiVgjKXTUWapaU6UfuMWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: koMYO0AilEGs4+kqJbuYZA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4AJWW6t3BkGu7cx5mtd32A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DuxjFBgbk0+lxQSwvVGWug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NJE6k9KPH0KmVjp6D8AIIA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A4DcZ8yo2kCR8C6k4pNihw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IR+Lw8BoZU2IvKYprYXDUw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DtfNYHOoK0uaCAq43kD15A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4dqXdVfsPkuDcYhXOHg74g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PUTJfqnwoUmqhE9jOE8XFg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: VDYcAV0SY0SC1UgdNXOZMQ== - Subtype: 0 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Text_Lined.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Text_Lined.Forms$BuildingBlock.yaml deleted file mode 100644 index ac43207..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Tree Node/Tree_Node_Text_Lined.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,424 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: true -ExportLevel: Hidden -Name: Tree_Node_Text_Lined -Platform: Web -TemplateCategory: "" -TemplateCategoryWeight: 0 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: widget-tree-view-lined-styling - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: treeNode1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vhtJ7Z5ZT0CUt7heb/asqw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Xj3GY2pWSE2HfuU3x07Fag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VfIrY99+TE+7KfEJyS6R9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GtBA/mSMkk6j2PKplTz93g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UFQpt29t1EOQfRXfz/TkFA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ja+JDuKfUUKd3q9xyhHf3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kE5CTWl1hEG3sNRtB0/09Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: X5RuEItBo0K3mBzgYTdxyg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Crj7i3lUUUeIi+2+AcJdPw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ++zsAVr/qEmJrVn7gYNStw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vZtRVRL9j0uXtwoNvEKYoA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bB8fBB5A9EWjDv1/KCMxGg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ajc8n5szQUe7G4I6Kxq3+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hblf37kYzU+wdFSIBVTn6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0lu4EisMY0y03glEgGUAbw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7dbSxnUwtkqnAiEZVMAM/Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: C/mIvZ+nZUuCphc9Y/VQfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "no" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SUefe9m+V0Gr+HN+lQZuDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zQYyemc4qUerQz5XxbWNww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: J1TXJatHlEuZ6vUDvXxA6w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IH/8gGqfPk2RbXp0CEZybQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LCeo1tl5yka+AVPfPkwdvw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pkz7EO9wlE2nQ8Dd+dnfsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Y77rc1JDWU2lfUsKxXykJw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: d4ZcelHe2Eugl3ms+0x/Fw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xBhfgsojbkazUYXRmsiZzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 5jsfHHacWk2Wu8oSyhie1A== - Subtype: 0 - TabIndex: 0 diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Arrow.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Arrow.Forms$BuildingBlock.yaml deleted file mode 100644 index 392c98f..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Arrow.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,280 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Wizard arrow -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/wizardarrow' -Excluded: false -ExportLevel: Hidden -Name: Wizard_Arrow -Platform: Web -TemplateCategory: Wizards -TemplateCategoryWeight: 130 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard wizard-arrow - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-visited - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container18 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton18 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-active - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container15 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 2 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton11 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container16 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 3 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton19 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container17 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 4 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton13 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Arrow_Step.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Arrow_Step.Forms$BuildingBlock.yaml deleted file mode 100644 index b065c1c..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Arrow_Step.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,73 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Wizard arrow setp -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/wizardarrow' -Excluded: false -ExportLevel: Hidden -Name: Wizard_Arrow_Step -Platform: Web -TemplateCategory: Wizards -TemplateCategoryWeight: 130 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container18 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton18 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Circle.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Circle.Forms$BuildingBlock.yaml deleted file mode 100644 index b973e06..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Circle.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,412 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Wizard circle -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/wizardcircle' -Excluded: false -ExportLevel: Hidden -Name: Wizard_Circle -Platform: Web -TemplateCategory: Wizards -TemplateCategoryWeight: 130 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard wizard-circle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-visited - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container10 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "1" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton6 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton14 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-active - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container11 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "2" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton7 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 2 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton15 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container12 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "3" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton8 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 3 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton16 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container14 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "4" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton9 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 4 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton17 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Circle_Step.Forms$BuildingBlock.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Circle_Step.Forms$BuildingBlock.yaml deleted file mode 100644 index 9da79e7..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/BuildingBlocks/Wizards/Wizard_Circle_Step.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,106 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Wizard circle step -Documentation: "" -DocumentationUrl: '{{atlasUrl}}/p/wizardcircle' -Excluded: false -ExportLevel: Hidden -Name: Wizard_Circle_Step -Platform: Web -TemplateCategory: Wizards -TemplateCategoryWeight: 130 -Widgets: -- $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container10 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "1" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton6 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton14 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Blank.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Blank.Forms$PageTemplate.yaml deleted file mode 100644 index d805f7b..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Blank.Forms$PageTemplate.yaml +++ /dev/null @@ -1,63 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Blank -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Blank -TemplateCategory: Blank -TemplateCategoryWeight: 999 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Action_Center.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Action_Center.Forms$PageTemplate.yaml deleted file mode 100644 index 3bb97c2..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Action_Center.Forms$PageTemplate.yaml +++ /dev/null @@ -1,4714 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1206 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action Center - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: justify-content-end - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-semibold - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Edit - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body border-right - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: flexcontainer justify-content-end - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton8 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Success Icon - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "111" - Name: text21 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Completed - Name: text25 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body border-right - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: flexcontainer justify-content-end - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton9 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Warning icon - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "17" - Name: text22 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Pending - Name: text26 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body border-right - DesignProperties: null - DynamicClasses: "" - Style: "\r\n" - ConditionalVisibilitySettings: null - Name: layoutGrid6 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: flexcontainer justify-content-end - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Warning - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton10 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Danger icon - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "0" - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Overdue - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container8 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid7 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: flexcontainer justify-content-end - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Danger - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton11 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Danger icon - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "0" - Name: text24 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Failed - Name: text28 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Stacked bar chart - Name: text6 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: barChart12 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mkgb3THL6kqC3JLQJrh8Cw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WkfHQEm0s0e2i9TeST2ICg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dynamic - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fgm+hCc6X0iCUekCxR/0tA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lEae5vhVmkWDrRRcTU3Klg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eFUOu1r0YkiwqTSG9iRHmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KezeVoQ72kOvTIf0w7Vo2Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: Forms$MicroflowSource - ForceFullObjects: false - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: All - Microflow: "" - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qM3WuIKe/Eu5BNh3wDF8OA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5XNEzEx2rkCe0gnCvohZLw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 12SSsMV/IkyGpN3uQp9NQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DC6UdKmTSUayy4AlAnRUGg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: i+J3BIY6lkOia7KN0j6kmA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gRh2vkmTIUqaus8hdr2k9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - TranslatableValue: null - TypePointer: - Data: 1Nz6HfrhaUyTjL9h9Rbk4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XwkZFogb50mQw2LT8wcPNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tAMhQMYnMEifxuZmdwBkuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aBKqaS59cU67xE7G2wTLcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xU8NOJTcnEOkEC1OSU945w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mao9acQTuEqjacm1QzizwQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WXzUqeMEREyoenDf6Xj7Lw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ePNf3ZxiP0KULCqJFh/SYw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zV8CiwwerUymVvASBkBXqw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yDA8frAAMUiodGFwBt3TWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: min - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Zr9NCEmTKk29jMsS3QYEaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qJ+9CoSKqE6vAF9qiDltkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: OuYV31cl1k6PifJnqrq1Kw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rGyoJ6+XB0mqyl399gR3Tg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: gHTAmtuLkky6Qgh4zLtKKg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2valSmsJz0at5EttOW9Tfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ru3Ou5zuLUiNka4w1v7lEw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: brlW8h+fjUuot+n9+KONcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ID+YkUg9J0OZTCdye5/ykA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nPxexBP6RU+ywkuxiBuzbA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lp+LiLyx/EypSF7HYEo+yw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XF1idYwRQUGi6/Gs/TAfww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WT4VpoRk90SRhQlw/qLhRQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SrkWSwuAPky06hnNCcdVRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FdjPtubN/EGiTTimcAqLfQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: yd8xupz2lEyW7fLMivScMQ== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nrANYDkKMUeqnKNh7O6ckw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A72Py+Q/d0GYVzZxpYhKbA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3/qq4if19U6sg5rb2gTazQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9ngkfYLp90GA6NkX66RwvQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iHrDAnSTvU2PjkgC9i805w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J6U/PKDe00mRiy2kk3sUkw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: xDbyBsFZl060yHevLg01zA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0QHKHHpONkSKQbNQE7XWHg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: Fi6BnD8mAEK1S34sf1SYEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: N7VX1UPDm0OZ6omcwqovJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: stack - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8K/25aOJ6kyneKVyK/IDiQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OWhMsQdM2E29i2LxzDyM0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7/IEHoIDkEq9JaoDnWpmQQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4xn2lC52skSHa+D2dIXPOg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jC/kwBytI0OdixF6aIU+lQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MXFxjrn+JUWztgM6wSzH4g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3kcOt3DxNEOTMkd9RZM8Ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4nOPLF4RfUmq6w1dc/drbw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IwP6Ql0xnEy61eI1NhyP0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gKky0JIxSEelWF7XWhWPsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentageOfWidth - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: R7Mqeof8EUKXmNDeLvLUyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8cBEOefNvkWBtgfwTE22xQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "75" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WZUkFWvJREWGq7uuj391Bw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zGAJiTH940eoy9WsV5YXeA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kssbTDLuOk6x0MiXCzpMYQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jeqIKAxXmUyvvmU6WjsDaA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MQxkbgf6mEOlxEc1D3SCIQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: p7tXm+YeMEWpBhXuvwejGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CQ5QxCk3OEWktjrIDGgctw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: oXNhbYwW10G55bxDvdOkgA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bubble chart - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: bubbleChart8 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sKiCc6HZQ06FrnD75wsHUQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eK4q1ozgY06uLUdguxF2/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dynamic - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PTdMmosuTE+zLgnGx73ubg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KYe9NdavZUC5631T1/OFBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rz5H0hKXGkCOVEde1/F2gg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DImxt89pzUmsQ/x+P9N4fA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: Forms$MicroflowSource - ForceFullObjects: false - MicroflowSettings: - $Type: Forms$MicroflowSettings - Asynchronous: false - ConfirmationInfo: null - FormValidations: All - Microflow: "" - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2LFeb25g7USegTKBaXt4NQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jJwYx30iK0m8Axtlgn/9GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZPyX7LbyZUij+Rs0SuA8pQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 35Ie0UHbekWDyHyhZPztXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: pSnPc7I6xkmoF8l3IlPI/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z5vRiebTlUGg8ltDHR+gaQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - TranslatableValue: null - TypePointer: - Data: x93jWvfrbEOmiQN9To0VUw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8ZGKPq4+Z0ebm8XFhxXPEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /GrGUzEMHkSwBSFAzYx00A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5MUJFoEIWEOWUb2VK2udtg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tl9lRUtCxUOZ/XnFd82rFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4WEqLG5HH0i+/KhMl3Srgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jJHgemwZik6Jypm9xzJewg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6R0kZSukcUeIXu7monq2zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Kdo8Wk0RG0OgqTh+i3ZR3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dDEMjMV/cUueW7c5ihpC/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Jvei5i/9Nkub5mR7Y2ffPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: njXFo5x9jEWemj4m85HONQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: brcQJm1S+0KF/0Lv4lBIFw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4kaV54Kn10O9pLBieje3CA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ajD7qPkHzkqk5PIMq+QeHQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lXMMG5tppkiXKPZnxyEykw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: P3UEUiOG6UK/xAqHdxt0Rw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S3ZWTGXLgkWYX2WgnkCJoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "50" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gZtgzqD9Tk6H7SKOcyIxfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jDtpTtEzKUiF0fTgz7qYVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Iwa1EL1qTk+cHt+nQJQmIA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ERS2y3tbU0mt0TSBZ3bk3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: EInoHT7ahEqW8iaMdE5WBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GTuFjhI2QEyeC44RzTdgsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 08COq5kA5UmKCS+tGwLCTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: suSyMmcovEGIuhDFiQ7CHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6tG6M2x50EqJj2QAvVT96Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6Zfwsy9yj06DEz6CtRgTaA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a3b3wjqcOU+MnvgIzCg/lQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c6mYNJP+RkeO2m3bos8h5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LuUQyZmnX0ukCZkI783CxQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZS33o0K4oUysde+0jJ6TOw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4+MHoANbLUKdLVSsWEDjdQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 5ps3QUIaqkKCwwh6jIAeeA== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RN28OycXyEqPSAi3lML9Wg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KDzgZA6jpUS+x4qOEd6gwA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: loAvZiqFs0eEqHKHiQIMDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hCc/Ias1UEeDJxm5u4EUSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bu+q6C90vUeMQpm7y1e6cw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9WEABqc43EeiQs6fY1J45A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: i3PTY1CzakGYCm7sDZeffA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wt9wd8ppvkWqfnWMnNmh6w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: z/efMmdSmEaTjf8GdmHXHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: P3v4XE+QwUW9MfIXvR/v0A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9xOfKPghu02Kb5EefTOZxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zxZSK5kK5EyfBBr3qXpX0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aoFxVFIfBESZb7LrPWJMDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VIX8gag82kunK4/yVsSohA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9sSpRKQZ+0ScHE9+dTGNZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7jpW9N0lqEi/vfBrxNkA8A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: S+npHCVUAEii+IgDOpu7wA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: b1wVbhEYjEmHunEo/+9OJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentageOfWidth - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ShHOvSeAkkC1+L56xl9oOg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vsn0nrL5iUexKuX2EzpTsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "75" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +eQ3w5h9MECnx72fCmenaA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wBuJmRVSdUCwDM2f9i2Cvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xOL3MzMNzE6pHy1KZiJK0g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Nxi5HMnDYU2e6/Jn0FVxXA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uiGV/e+t1USWa1ank5JGBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 77ho5/M+w0ivHevCdCkWBA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Mn3IzS+8H0eC5nNUbQCWHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 3hHKU5+C5EaVlZG1MRNwJA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Progress circle - Name: text8 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 3 - Name: dataView4 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: d-block - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: progressCircle1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KfclJL5TH0aJz9Qxh8QBOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: static - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1pV0rGEJzkaK1DqVOKAeAw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZKvP2jN5h0u17DbIU7K8Eg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "50" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W5nA33ATrUOQFJD5eyqUWQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qkNOA8nl5UGgvWNYEqnKxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CBB9Ttdwg0O35HbsulUYEA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c+x9PILE7ECd8xYM5/Bfmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: opVY/Lxcr02spkePsFa2WA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OJJ0Ea9GL02dHNfb72RXrw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1Gj8rOiGM0eMYMcY0WJYDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gPKziR4L7EqRvl6cWZ9syg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XfvuV+PTQEe0eYQfPk4Xkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0trQG5SX4EmdH5zYx1kjJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hYvVCVP0N0m+gb8Cv4f6CA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HLqhy3GZ40KwzmksYns+vg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ojOvDWmpIUi+fMTfyqiMiw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2yWRCitAu0mEyVrir1EgNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oSIw52gTNUOZ5T2LBXPf8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QYMXlG0CHk+T4gS9FYa5ag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RJPokC7cM0aaR6v1NHjFeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fluLqUucmkSC9tKmKYUE+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: i4HqU1NuoECpS6fZZ7QCeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BDen+T/QRE+qgw3i1wZ9Gg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +vBqJJktbUeHbjrr8dC1Pw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q9fCFRrrmkuwUZCMUGJjrA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iCBZjf/rXU+DMw7lbceKXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Sv8Et6H/RkGAa2xt2NQyrg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 50% - TranslatableValue: null - TypePointer: - Data: 4sZM3+bHLEaXzrR2j518sA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2IWhI2uslEuwoCO3vs06uQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gfXjIrgOa0yvYMaxCbkxVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: cxTsYXt/zEG4datljSnk6w== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container10 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Row size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Small - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView1 - NumberOfColumns: 1 - PageSize: 10 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid8 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cDguqD5Zi02h478Jjnq4sA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ed7gqoRkk0GLn6TNxkKaOA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: etoEZfmYIESyHQIfu+ZegQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7Z18a97k2Eu6uCZzYlnk/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JAhVfg4E/0yllZJZqWE7+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hfLr/dZZy0KLn3/4zXnQCw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tsYQIVfg5kyw2AAEggIJpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 0bPZW7LoTE6kfs2UR/sZCw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g6XWHimUj06q+uN+2sOk7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: efQuE4+CdkyCfnVU+qMnOQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EGy2V5IxBkyk5xsVZC14nA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FD9UDdNJsEeovaeYQKZH7g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qSjVW+y8FUmeKkttRVm2Jg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ra3VvHFEYkKRxEUu+QQGuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pB3DGobneEaPOIgxm2gy5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nCa0yhmRX0KrvFneKWgcfg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZpaTcAw6mEW/kJsE3k9L9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZxXBJsqGnUmK3Z5PBcQ13w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Uh9z7Ezb+kqR7MskogRbog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Q14X495YKUqjBeqv6Jh74g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0bD6IDGtNkGqKWKddAqy4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZITzPEK5lk+CT495Nup5ig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xCPQk5AoW0aLNmaLFXmX8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "50" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eXlfOCqqEUuSvNohILRzVg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4iG6W9alRkm7kh+WwnOa0w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qLOm4wKfokaxwt1abIFfTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: snzpr7h4XUagpx30L29qLw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "50" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: L9TCyEiKKkGxheYGIESlWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: noIWk8AYfkmvT48iuTaezg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jleWwxVH+EeE1EV3nlyIXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TfTedRzIakmJtcS9zmj7yQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Veo7UbwtgEWEErYIOjFa3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pQckp1ppYEK4jYsABZ6hig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rs5W0h8ock2PssMWVMPaQA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 2WfGoaXruUSpyM2UUqNYWg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text29 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-semibold - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Details - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton5 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Dashboard_Action_Center -TemplateCategory: Dashboards -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Navigation.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Navigation.Forms$PageTemplate.yaml deleted file mode 100644 index 83a3b39..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Navigation.Forms$PageTemplate.yaml +++ /dev/null @@ -1,717 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton17 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Open Page - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton9 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton18 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Open Page - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton10 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton19 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Open Page - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton11 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton20 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Open Page - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton12 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Dashboard_Navigation -TemplateCategory: Dashboards -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Page_Settings.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Page_Settings.Forms$PageTemplate.yaml deleted file mode 100644 index 2be46cc..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Page_Settings.Forms$PageTemplate.yaml +++ /dev/null @@ -1,953 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Manage your data - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Use this page to view, edit or delete data. - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: 3 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Light - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: 9 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListenTargetSource - ForceFullObjects: false - ListenTarget: listView3 - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView7 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: First name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Last name - MaxLengthCode: -1 - Name: textBox20 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Job title - MaxLengthCode: -1 - Name: textBox21 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Dashboard_Page_Settings -TemplateCategory: Dashboards -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Status.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Status.Forms$PageTemplate.yaml deleted file mode 100644 index 19a59c9..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Status.Forms$PageTemplate.yaml +++ /dev/null @@ -1,3146 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: background-secondary - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-large - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton8 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Success Icon - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text21 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text25 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-large - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Warning - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton9 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Warning icon - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text22 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text26 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid5 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-large - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Danger - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton10 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Danger icon - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Pills - - $Type: Forms$DesignPropertyValue - Key: Tab position - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Left - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: 9xgYIgwemEa44+2BxqGv0Q== - Subtype: 0 - Name: tabContainer1 - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: All - ConditionalVisibilitySettings: null - Name: tabPage1 - RefreshOnShow: false - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 6 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid6 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0cwapbFRDUOeF7xDEawsxw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hd5WOXlWG0mzA5IppzvwKA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3nT9EyrXzkezY+gc/VS93g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uqDvocl2HU6Q1De3YgIgsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hUBqDnpStEihvUSXxLE+7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BLvp40lG0EaZEIykTs7Yhw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iihS3GiyHU6SK8C2H0ZbNA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: jLieo9+Nd0OKrtwy717EXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zd8VczzBPkqYr5073RXsXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 743CTVQCYEiGZkXteQfvAw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ka5Ewmu+6EmoZE2Q5VDiZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: h466tDiyfU2xnY15KlEKSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VuUjeP0TG0y6dePXYU+4dQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: s7N+EKLBu0upZt4mhaYMNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 82VYH+ARDkKtcDJryIX9Eg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fZbyAWHbLkadPyHkbTf+5w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ku4/5AJZeEafYrSPOgA2iA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ch+lTlM0gE6/uNL1S/83OQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 94qqPqUiLk+MWLcsKzQ8YA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: luqmGInbiEC/M/wDPioXKQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GHYjdk0/WU+xZ2Oqc66TRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a2As0NyhpUePDoFK2OZjKg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AWPUwLtplke7qeo4FM4U+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NlhCtf/phEevjWVc6desOA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j00RxvSXDEemmLXF3F4U+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uyJbFME/u0q/CL2byBjjDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kCk0i3Nh70GFGS8okw2q1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VPEdyLeVEkCb+2eDSuuN4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8Yd9tgF3WkmVHq3oG+K9IA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gscF5iGbAky6qJRIX7XRfQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6S5pzXTHKkuWIgCUQJsNWA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: h3bnvy18rkG9vVSaFXyesw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ocp+Ggpq+Um4ZTSIqk1yIA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: F+ZoCed6q0OCjaJaVd8KBQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: RyHCGPToR0etaRErYcAxfQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Status 1 - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bordered - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView4 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid7 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image12 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TMetV/rUsESGSDD/mG4xCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 215nQXd0C0a9Q5Zl/rjUSg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 42himpzTSEeRgJ7yvTBDPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ILp3OMZ0VkST8N0EUtwqCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LVB4D5UvWEu1NxqMc6OU8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 86yflD2gdUmZ7LQVEy+EUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MD++mv31Ck2pKWZOu0Xebw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: P9fT8mUyG0ei1HeSB5AR0g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: T/kwLe0BQEaYcLuilA07PA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2R2aFh/Sl0qOYueCuvaOzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: U0rcrUWoVU6aVnuqRgj66g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O/DVYtZu0UiaekSK+Sa1og== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1FlDA+cx5kOLaUWP1Y2F4g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o0WolZHjaEWXWmkNi95wEQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KgJcmhnBCkaof0KxxwNQWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3E8mFSegak+Fvb2308iQ1w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y/d1s9FxNECPU7as9MUFDA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1NiT5fyljEiDOF9JBN4w4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HdiQYrmxH0+KTjG6IkbkPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: mjNFjIvHjkOuRIM8qzpEug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X8+3kREIpEWZqI9EIRGAbg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZdzXR+uwBU+p+7h9oHcDDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eh5fYbOwYEGhrg1VhWQvrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yU05lHm2Sk24SBcDlkDZAg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LIg/VhHoGUyDyTROXZxSTA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WK6tkOEWOE+Ap/AahLF2hQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rkc8iKnBn0Kjr7z8XGJDYA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: itINAuJDSUa+J2GYNBwBkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2hSWlk63NEGkWRVAWsHvzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7clmU/a3QUeBXYTXx81WZA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NJ2lP92q0Uu32lqwzhtcag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UXTNeGqowEyY8vt2gIS61A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2Dr6H3gY1kGPODVr+sfAaA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HYjwHbaaaEGF8J6XTDpGDQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: ECUgQFH6Z0G67XN8Ksylvw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text11 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text42 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton6 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Status 2 - ConditionalVisibilitySettings: null - Name: tabPage3 - RefreshOnShow: false - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container8 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bordered - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView5 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid8 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image13 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: n2Jo0WgTBEqCZ2cGBcszlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WbA4uxUR0UKrJ94CQ+MXzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EAmtjvt91U2SVz57Na57JA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y69HWDgpjk6pKaaetPTHsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O+Critl+QkqYNOAkeigydQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NL2JKn1VXkKve84natqUyA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Z/8Hdg8kCk+SVryNbKuJyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: iegYF+nA8Ey/Y25i1dZU6Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1CFgeGQre0SVB3pKfoCJ8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tJ/le3IR7Euk7ZJA2595vg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Zn9Ozwi5TUyBB6DmODFD1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OJMLaY4HGUKWcjuuq6x6Gw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZwejqrshZ0Oz2txavM2Dyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qTmtR2syBkORXB/Uot2VjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LwMwfQ7jzE6JIFSjfsw6MQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4L+Lzoa6NkGJScdIgwYNrg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lqF4UzZ6r0mV1o62Od5f1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HPZLBVd5JEaChRzssduK5w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JYqgrHVDR0KYc1MlDIdUNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: RdaIqKlQxE2RY0QYyDvYig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZfdaGA9k3UmK9oXP295Xqg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NBsvSKCn7kGcT4Oq9hLudA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MzNu+hqgrEaNomUJsegjUQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZJkW6mJEbkKjLpAEaM3d2Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sn44ITBbakKAxk/BhjnjAw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6M1MPeXPkk+NOMRDBsGClQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zmR5pDZYsk+cfyF/Mxa/tA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QGxySinEHEqgwaxc7DAtRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VbM6bOea+02PT/S3xaW32g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ROktaTLRsEaKC8KXh5QY4A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: s+MBBBpe+E6w2GlNDQQUIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NbD+g7AySEePt1GH1QB2Lw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WlNXakV4IEGPAmEVD6B40w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tX1N5kiKGUa15iHTFj3aiA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: Af6FDWVRZUm9zUf1YcxBAg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text12 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text43 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton7 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Dashboard_Status -TemplateCategory: Dashboards -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Transactions.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Transactions.Forms$PageTemplate.yaml deleted file mode 100644 index d5e22e8..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Dashboards/Dashboard_Transactions.Forms$PageTemplate.yaml +++ /dev/null @@ -1,3702 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: 'background-secondary ' - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text6 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: lineChart2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Fz+gyjPA+UGaqMdqclVj/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5k4pLbT04k+0g9/cOQk5Lw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w4zF9qzfp0u6xlFDDRrlkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PLmVsJoS3UCM6xeyNvezZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qE4GnZtSt0GsDe+BWgofsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: biSq83PNVk2kviRS8iD9Ig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qxbPRYVdqEq5FNlLhoHlFg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: 6WUf731V70+GbK9pQyYxDA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: chdofwRxC0KVX0pk1J7B9g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: 96ONR1DZs0+1T2uYMoo5Ww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bcQTMwqDPU6zSV6jtXGnfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pWFWTL2s1UCgHT2DUrBIzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A8PIsR5OyEaVyKWQI6+IuA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: h/hxFSTefku8CRsvkk225A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TOWWBgeoE0y5m3alCOCMZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2UWe0yqFC0erQBc8XInnCA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gKZDSKjocU+L430ri1wSVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tspXX+BbIkSH805KX+YtaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IiX3VjQbpU2q2YHjAKwM9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentageOfWidth - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SW/nWA8GwkulIUcE2ughKg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ybzMb1EIdEmg/xJdHD6+dw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "75" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M6AKujaCX060iZJMlg9zRw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: emQMX2DED0qtzjLm8GEmMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hFyneS89ZkebF27qhCH/CQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aGOlIGw8tUicSAr+vCyuBg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: edXDEaCUDkCxTuqzxovkMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GuFntTcGHkKjjS2KAs8MKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DPO7dTpjZkC721B+1AIf1w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: ppy8pheDnkWUXRp+Hn/xcg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: pieChart2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Rl09n/B0cUWhsX+JtGNkiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: i1uCP78zzUqRcn/zDJVYLQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GwfzB86yXUSVRtw3w2pEWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: fUkKmohnRUqPchvXjJccxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Cd7yS5If8UCHnWeUONcE+g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ppt85gncLEu3isby1bNBdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lqrH3wPsGEaGqzzu6BQfnA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2Il1xNp5WEa5n5ArD6GfnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1PicGNlr3UuSzOzE6XHg2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: asc - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jVhdOlHYZkCGz7yVyweZtA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SAoOLtC/vEmlpYfkvHr4JA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: s//qSmBg1EOOcN+ayGkDAw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qvkMeYGUD0ydTZdvwtTwcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KNfa2PpBn0aqtsJVmgiK7w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pVO7AtLvikaqL/5xF8Svdg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PCDKpsi31Ea6JKtbhitKTg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tScNn7FlpEizusNOtkvNag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zKrEpdZ2EECftk5xrBMiig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VRPSmnipeUe2a8OzkzGYAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YOxiNmW9UEyCH4Hr62/ENA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xfLo4as5IEGRY5n21eEUUQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - TranslatableValue: null - TypePointer: - Data: 9hrOyOf8IEaxoALBTH9aZQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YRTmLLysQ0uOD3nJ0u1/hw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: w7WKrppsqEaf3thA11bDYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3nf5Nxg/IUG76FhwGF1pIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MHM0LLzYMk+mzdU+vvKtBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y3/BdGzV5k29QZisCvstkw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentageOfWidth - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hYAfEHfRjkSbapyVXSSYRQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1hMvzriziUy0qKBoBIHP2Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "75" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9guKdqiBskCq2DRHx416hw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ol6NSInG5k+2/VUYmnFBhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FJk5zigGnEqr8cAQrTHW9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WpBtGCAKP02yGsQGowQt+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1WKOinNE8E2nRjtnHtQdig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oHSPcd3hD0Gh2xO7u/3Ckg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YLEF2oLKl0+/TmfT52Toag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uHqB9en21kiLQNdA2BENfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QIJBDXiZckWACyvyiqkomQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: a8OXULf3T0aLQAsOpfAo7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GPfuKdPsXEuMSe4E9TT9rQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: G00Z0hh0okS0VHhVY74cMA== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: FSg3KfdxuEujsSLK5EtTzQ== - Subtype: 0 - Name: tabControl - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 1 - - $Type: Texts$Translation - LanguageCode: ar_DZ - Text: Local Users - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid5 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Striped - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: grid14 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4LhxEE9yykW6rk1cSdHnSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nIOgln9hGUq6UiuaMFX4XA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: epMe9pchGEeVewPQu9NAqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1WLhRjZThUWj4bs35GHNhA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5EcEk1qFlUyY3c4l0DNtJg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UDQKi1fz0UG3n3tDTy8ovw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TN85AnD+Ck6HXek2twTMnQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: I0VaQJzfsUKYjwgSTLmmsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1DvNU04Py0y06VaIsqb+dA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: //piBQMhIUufcN8OEqQCBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QbXtaoV1zEGnL92/PRXpOA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S3mpgUfuf0qQljFfhdAJNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: QuNKALOFSE2xo3n9C4RoNw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: anDSw0xm7ESIzE1z7qJ27A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - TranslatableValue: null - TypePointer: - Data: G/ITygipWE+vf7StF3Xflg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aXL7dx5gXUaTfimf9PPY9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: HknHw5R5hEi2aPisZNhYZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hc0GQ1K11ku/TZdKpYDuZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PzJZmFXSj0W9ug7CQR90DA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tlscp7fkAEGFA5JxrsdQrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pwX3v7Em8kqyvwUZbBQb8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dVP/enE3pUyzlwPOya7JSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +4xl5rVlvECEFMj1BXUqqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NO28QxABJ0WNz7YVnR/KZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3ILMuGJ0uUaVZws+zGpcBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YoOTA+Aj6kOMNkIAtC9AyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PaPzkzgUIU6hq5lNZQ9LeQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NbqjMka8QUC/0DcwTaeJng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +WnEsl58TEa969aOJ3sbQw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LhA7t3yhsUG+Va+z8g5c5g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9Kf89XadA0yvMuzSA8PCCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BfMYNPxwbk+etox3N90YTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qNuLeC/LW0G8PA1b74d0kA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Oy6fFu96XkWeG/SOS6hqig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8cLARVn2wUWXiTqtxIvBpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wp8LAD/TXUWuBEaDsGKKNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Khub9LJm3k26ovEnx5faSg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LLP8hi3ack6YJ4rSEcMwlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y4z7V3JD0Ue5tYnr2/GR0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lBDLXHK54Ea256ly5pEWwQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: H+/ttPP7xUe1c82ymfdmBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mwff66WTBEytpewK2ml6Yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SF5wacxFH0OezAe6TKYXGQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4DOLmFzBA0mliJ3OAfIvZA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HuoszrFujE6dXpeRRgNtgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OSWAy9H4skSuCJSw0okwig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EWPU4q1GNEmiRUhPXVSX/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l80PBI3Hz0S5tjRLbzUg/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LKvt1ge2/UW8tCUu7LS7qA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: jWftGz6YIEGHU7z2+FS8mQ== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UDQKi1fz0UG3n3tDTy8ovw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TN85AnD+Ck6HXek2twTMnQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: I0VaQJzfsUKYjwgSTLmmsQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1DvNU04Py0y06VaIsqb+dA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: //piBQMhIUufcN8OEqQCBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QbXtaoV1zEGnL92/PRXpOA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S3mpgUfuf0qQljFfhdAJNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: QuNKALOFSE2xo3n9C4RoNw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: anDSw0xm7ESIzE1z7qJ27A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Last login - TranslatableValue: null - TypePointer: - Data: G/ITygipWE+vf7StF3Xflg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aXL7dx5gXUaTfimf9PPY9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: HknHw5R5hEi2aPisZNhYZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hc0GQ1K11ku/TZdKpYDuZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PzJZmFXSj0W9ug7CQR90DA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tlscp7fkAEGFA5JxrsdQrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pwX3v7Em8kqyvwUZbBQb8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dVP/enE3pUyzlwPOya7JSg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +4xl5rVlvECEFMj1BXUqqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NO28QxABJ0WNz7YVnR/KZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3ILMuGJ0uUaVZws+zGpcBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YoOTA+Aj6kOMNkIAtC9AyA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PaPzkzgUIU6hq5lNZQ9LeQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NbqjMka8QUC/0DcwTaeJng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +WnEsl58TEa969aOJ3sbQw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LhA7t3yhsUG+Va+z8g5c5g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9Kf89XadA0yvMuzSA8PCCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BfMYNPxwbk+etox3N90YTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qNuLeC/LW0G8PA1b74d0kA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Oy6fFu96XkWeG/SOS6hqig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8cLARVn2wUWXiTqtxIvBpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wp8LAD/TXUWuBEaDsGKKNw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Khub9LJm3k26ovEnx5faSg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LLP8hi3ack6YJ4rSEcMwlg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y4z7V3JD0Ue5tYnr2/GR0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lBDLXHK54Ea256ly5pEWwQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: H+/ttPP7xUe1c82ymfdmBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mwff66WTBEytpewK2ml6Yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SF5wacxFH0OezAe6TKYXGQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4DOLmFzBA0mliJ3OAfIvZA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HuoszrFujE6dXpeRRgNtgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OSWAy9H4skSuCJSw0okwig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EWPU4q1GNEmiRUhPXVSX/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l80PBI3Hz0S5tjRLbzUg/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LKvt1ge2/UW8tCUu7LS7qA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: jWftGz6YIEGHU7z2+FS8mQ== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2BNb5yJh4E+SAnSl4G3KpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2YTuCNymTEmYmFBDtZf+tw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: daFoDpnXgUCvmNz6a2NFHQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tUQmNt7O7E6KVWCSueZKJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: J9VttnEPpUuJ7P9EpLBkfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yXf4kDUvEU6dcTUozu+uKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mpf61ksuEkCaJQbzNoHDjw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9Nhhy3xXw0OkDnfDEvYLNA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0pqgJKGYQUaYLVYsDsU80w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: roF+MJNbCkecyymm4SGiXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PQSufUokT0e4848CtWBtiA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bqsYz+gaXUiOsLHkZ0OU9Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KP6K5J2o9Eq1tXazXaU6JQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 96rp6jwjWU+B2mSHr1nZ3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uut/ebVdMkqgHKFKXi4GbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dGWsuCcomUimzraVBYUb5A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aZAGjuL6aEqB1u5p2vM/wg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 42ZzAAC6MEuhx1W3MKhpaA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rG4eqKpVR0+LZ+3Li5graQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IiQ4goIimUithr1AajTMjQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0vkXtrSKVU2Vr2dIDZa0Ng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KptjhnGbX0eUigJtNnAeYA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PcISb6ut3ESMlQb1/NujBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /twnb05VvUS05kL2VUvHmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DYtKa/KunkuemNpAAfdkjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DLU5YErh00eiSAULDJiesw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FSWydFslpE6sAkrHf2h3ZQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: N7UkzZk94kWKogYjZfPVAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: T30Sh1MZMUef/LKodufGIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JlhCeo6Xp02cpOJ9RkJuWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1YOJ3gd5Skm3oX4QbCKHDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OWvdJMp06kmTaeBL4idGAw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HQXq8e5IUUiHWsDxYBhoLg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PvuQ6SnvuEqPP+QUZsO7sQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: qg3esms4Q0qbzqs5ON5G5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zLF98GoAJEePNbjx2B1JcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O/xrch4wI0CtwdsinNygaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oLJqiPFUpUWDjpX7LuP8xw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3hfMMnc/Ok6fcQJL3OvYzg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9e/+mD4rzUW12fNsh66KGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xKQqUShtPkyDG9BSO8uHWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DLk3pJ2wi0yN+memlB4uNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /msJqtJBy0yIne7i1ZDyDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5y10THsR8ky7Da6yTkUdbA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7z5nX/GL5U+sGeYAWvUwWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bYJS+oww3UOo5lweDU0oGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /l/OCZmnSECT9eJWNqu1AQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: D/OKc9o0l0iYr2JUeaIvuw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QFyTqkHUfUu4ZwxFBw7hkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zZe+xKPAek2QqbfMGVWq9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: 72r+FsTOTEqbS6UCmOvnnQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YOQDEepb1kWpVZFlC31nyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: T5Tl35crxUmWIEoiYAMjnQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cMcdbrjLZ0uKqePEo3+dxQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: hq/kCRbgM06kjjTFypcQ1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: fMWoftYrNESKSjYsxHosvQ== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 2 - ConditionalVisibilitySettings: null - Name: tabPage1 - RefreshOnShow: false - Widgets: null - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 3 - ConditionalVisibilitySettings: null - Name: tabPage3 - RefreshOnShow: false - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Dashboard_Transactions -TemplateCategory: Dashboards -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Cards.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Cards.Forms$PageTemplate.yaml deleted file mode 100644 index 9963ced..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Cards.Forms$PageTemplate.yaml +++ /dev/null @@ -1,2264 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1000 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 3 - Name: dataView2 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: badge1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y1L5pwI9l0CondfH65zWwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: label - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mU6xHqA/eEikZqExdFXa5g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mm/IFCPBn0atEBQcydsjuw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Badge - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Badge - TranslatableValue: null - TypePointer: - Data: MYQsr7TSQ0id70MTvSQ0fQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: itQuv3Be1EmLJZ5mzpHppQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cAStG9qnXE+y7QUP6sth2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: LVBZNWavy0+XMR4IEmQdXw== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text24 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text31 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text25 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text26 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text28 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text29 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: progressBar1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2r101Kbb6UeF5Ikf1sJxGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: static - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: l1XVRXFm2E+5DYYK8KnvbQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: al8kDoZdNUmN7oBKXguevA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "50" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B0M71KaP9EOTQ0PxMmhwKA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BupwFn08AkGCqTOD9YyegQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GxR8gLWYjU+sX541AJOVlQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eZNvZjFqgUmdD444lwdxfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9BIOgbDgJkmzAwUmlT+2EA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OREG7VDU6ku01JaY2d4Gjg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Th9igzdigEGUMyHy/Ki2Sw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6PM586VZPkmLTv0AEZkO0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gPb7CGjwtE2/2rruEzNtXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hlNjJt5jf0G5xWvbHDYRPw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y1vOXYG1Z0uzMsyGbZ7PBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MHb2XVj83kO52uL+z03egA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GUpubTysn0uPq+EnVmhKRQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bSBeCPr+s0ytfSfRgZkH3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZPbWDXO+G0qMA43lpxjWvg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JO7t+RbINkeIx2AwLcnK8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ic5oJp3d/UGnM3NevpfP/Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gQDKGY+XkUG5hyaIuHmDgA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p2orqH73H0CrLzEHJGUZWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eHgrX4LXSUueZOUDJO+pEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lOaYmK+Uy0igRn/RHSwZXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XeYMp+lwP0me72khgpyYaQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: text - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XAgcngwoik6sZuSEtHnb7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yxLS5OZfRk+WXrWtgCZmkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 5jPUEkJjF0SzPiRpUU+KNw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6/c7Ho/vqUSzDDAmVxlNKQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: isqhHdmiJUeSm0/cf/u9rw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 5Mk9AX4OE0efjFG3rXYGzw== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text32 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid5 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CrAHJbvVrU+Ui3URtsIZbQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: whB8vXeyHEGnHkFSiC7kVg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: T7Xt25XxZkOh2g3KdRjjcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: C54t3v1Vqkas0kexoynGfg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kjlt+lCu2E21fqU7VNb6Pw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xKxJ/UWl1Ee1lx3peyKVew== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +K8aYdN/4EaRjDRE7ldx8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: WZfSIOm37UKXDyc8VPr8Zw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FbaaS5F8Z0uaICwYsTMzzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CBA5FJQjQkK7IfyWGMtSkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uheUiVNn90q1cUM1a7dF8w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XkZlE4SnVE+OhkPca7h7kA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BxAUr+cs3kSlXjiaoZcz/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eraaCsVvKUqIG1Ipij3WEA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7gtcFB/awEibt6PH/l8Nug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VWAlBOxGKEKOSc8FfdeJpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E+mwC7MoMk+Zth7Ik9PADQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: H7zjijzN00urGQiybWO4rA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rbtQPrjXuk6WCUV9ZtaQSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: g2WamyjbSky/2ddca2O07w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: asOJ6LZcEEO56GUJFxV4yQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cCTCjxHNoEqjXB+MXbWFVA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q+8PASuNKUO+UioctBJrlA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GljnF7qsG0mN1rnBFByz0g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f9LdtT+ZO0mnDlFVob64YA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aOuso4HgHUec1WpvD9sB4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: N8UYYuzj1kq0mNKRk/tOTA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yx/oOSQFiUGxHA/I5fA1FQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sNHRrvUfSku0Riu4lk0jHg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XubL9/XQuEuqtB57BwyHGg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KfdazCFYkEy+a+1ZtcfPmQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sIqkZDLq7UejclOL7lHLdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l2XkR+9WPUySCqBjW4+zKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HrbHA+GgnkelWmFqsbVxDQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: gxsDEEGD10+PF54YfceqRQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton5 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Detail_Cards -TemplateCategory: Detail Pages -TemplateCategoryWeight: 70 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Map.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Map.Forms$PageTemplate.yaml deleted file mode 100644 index 68299d1..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Map.Forms$PageTemplate.yaml +++ /dev/null @@ -1,2624 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1000 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Never - FooterWidgets: null - LabelWidth: 0 - Name: dataView3 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid6 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid7 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: pageheader-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Rounded - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q2Dnw7NCTEG78cqvgLj0Xw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8+2I0X0Mh02vVYCV2xJagQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TSLhM59WWkClB684NZi+DQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TpFyRI7uNkWBxKRBXOBwag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ia6htGhw9E2qhALxW6W9kw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vwP6EqeDxUSju0NNg3nViQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YuRDLscI8EWN7v+eyAjkGw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: PSmYcFaeiUO+MWxZLzxsBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: v7GqK/1e6kib2IXBob/lUw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a6G7bctPsUykf1kKRHrpHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LxsySdPETUu5vvyeCiKMkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IRcVqCIj2UWsUGlSFmvFrQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4VTZP262Z06XOsnsj6Xpzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7FlYGvhmgUWoIygAJEx51w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SKinTVJkxkmMcaBcQrFG+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6UNo8qR0/Eu8NZuvnVfCNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ptPzUm9T+k6d6uilmjqUag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5t5KEa8SsESVQOCsSbI0qw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YZZIgukcjEuDmQJL3N/Awg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: znzEJanbxE6M1EJf74v97Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HSDCUDWvT0yJXEtHlE4MGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zHkIAAfISUO57+L9Bs5D1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xYvdgUCYCEmKiG/UtQB7Iw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tC6a6wHqd0SC9uDUfqT/9g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yu2kb+m5X0SgE+GQazluQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UO8eBsj4W0KKUgUX7vDxlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TuYd1NUyh0CelzaG/jKFUQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "64" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zHTl8i79wEKJgh1252Ujng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gY0UPNmbNEaOliFCzN5hzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ESuf/cQcaUKYIfMKBctzEA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tLK39uuy3EWFIIliQQJY/A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: j6RoEYK7qESGmvKIs17Cqg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mCUu3+sgAUqYYrbprNQA7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ziz8Nvv+MUeqMhwjlqCVXg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 5rfp6q5ZwUKoN8UIbehy7Q== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Title - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Location - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Date - Name: datePicker5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Description - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: 4 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: maps1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eDMXDGQzz0OxzbAIXMzb1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: openStreet - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OOJvPOY5XkK72cUjn9nX2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VZNx8ptbN02/mWcCLU1+Xw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VYuubSz64UGQ1wqKO+lsuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: No3twBEM30KKlMVa2EF8Jg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DrOs+vwhykeYRy0o0FpzSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WqDulNZHc0y642jWKV9X+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentageOfWidth - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tQuDUcGTo0mXkKKbv93C6g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bzcX9hSLgES61Vp3PIewfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "75" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cDuZ/toO4UKlJkoYXGnSWQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: D3GGfPvM80eymK1HdqHytg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o3JDOe7/YUOneibBXomSZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aoQbyIaMcECYaxhjbzIXXQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wtN2h78YHkuf7WtMQFJnuQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: p1bO0iHMfECuZAziUlZVLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BlMocnXns0KL4ASbioklfg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: peCD9wrUnEGjlRya6Z9j7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qSNVoNj+z02UKrzDwOHM1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EEh5xu9hr06mBwo8CqydOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: g8AYUSLej06NhI2V/G3qzw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MGAot0Z8+UmSrh8QMry8TA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a6GqyCW/ikGWk6azs40OwA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: r3/oI1C0t06Y3UfJgXUO7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 28rG0edqekyMAXBC7ULgkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yJB9MtbqrkSg+vJjyrJa9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lO2PR7/93EmZecG4uPAl6A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X8AORAqH30CsSrtfNyJedw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EcPzlcMD60GKc62He3fbZA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w9Fd71l1cEORBoBCm0o9lQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IGqLhIeqAkyw6h9j/6NnBw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 24G46N3vmkuLBmuHsvbcFA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yC7L8XQhsEm3bWxpVYKVgQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: d3fm28RogE2H2b6/b5GRlQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3s0y8cerK0mh9GIICOXJ4A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3Jy0ABTvSEGjVljFKIUjug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IXwfYLwnKUaesnCOYUiYMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +u1HlAr1hUGVEZheDw9odg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TA2vHZ6hnkyJ/YCmSrDLcA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pqKtPVZRJ0aukRT+xwad2w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WBADO/1TfUecds8zC2a3qg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QfrLQnvd7Ua1zRqpsWiIEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MXpBgyuKNEmyv5o7lHX0Dg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sEhuU6pWzkC+NLS3C6mCzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5CxWVbBl80a8RpZaRDluQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SOqV6WnDDU+WmNJit4GT7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: automatic - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: r7DnASE96kOZ0DuidujQcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: ZCI3qNNAaEC7MtX9yNcOqA== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text11 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: lv-col-md-4 - DesignProperties: null - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView1 - NumberOfColumns: 1 - PageSize: 10 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Center image - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Cover - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: syVPWT8rRkO7N3sJlzOLdQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NZ39+VhWu06GC3wyksZqJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +ih5WF8e4U6o6B54aFsthg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Qo28WBBhZEevcCSrymsBjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7ItNRWl4DE+5F9XQxhKeqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: T9EAntmEmkyr69hMRi9WPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fgVXh7AEgkqCpKmJg78Tgw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: fDtonWSl60SGP4SjPiIjrQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XWezaUWuNkyTlEDcuQrAIw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NkvCcasVOk6ZzJySsjQadw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PvbFfO5x4EyWLaf8R6h37w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tmdEU4b+1UCc5OECAju+XA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9JzSh8x44UeMbs1SSaZ8Wg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ubzDviuuwUqpCSXUbtNxqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qHON1uJLIE+H/jPUq77lXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WXod85hWWk6vj0IIdBKu4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uUEX1bJQVUK6BR2DJR19qw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cFIqmE+Er0GowgI9A6ed+A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fZ+YoPQsr0iwBa6aNPkZsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 0ic/qcovKUCUkCivhU8lQg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XeG34ITIsEyntVkQVo80Pg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wtrbt4TDz0i7hcjoD+RNBQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rVetxfjwlEChqcN425OTLw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yhRGxQkA2kSzBgHxWfHWpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7lIcWgiEyEi9vNo2uKP3NQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M0ROgexUQUm6D4xoA/iotA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uDeP2UPg4E6VX0fH+dfyxw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oIHjctFdVUG+7f8BNScgtA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Cil4b7D6WE2SkJ19zPhgUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W0QsvZUYoUuIcUEhdfVpjw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iUetWwvSxkmjUiftC9Hbrg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UMtQeTWIBUyKSRZ3EV0Jkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Rs0/xSeTAkKHOUUV7npa4g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KWWNbb+QdkWz7HazdMtMMw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: WYa16b2RZEGkEqRSG/s9WQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card-overlay - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text24 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Detail_Map -TemplateCategory: Detail Pages -TemplateCategoryWeight: 70 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Summary.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Summary.Forms$PageTemplate.yaml deleted file mode 100644 index 05f06a6..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Summary.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1833 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1000 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero text-center - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: headerhero-backgroundimage - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Center image - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Cover - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XQutZIeBXEKKXgZizcJDXg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: V8mZSOlFUkOogkRLwR0GCw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cjQHNMulNUKmP5OI8YOyeA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sGQVwc1RIUGDCrOAFRH22g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eYbppUIyKEi3S3R4LI5Zxg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aC8J4JlFDUi44d2hv0PbRw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jgHxHA5BbESZ7kNSkCDAEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: TO/YX3ypbUynDnlVX9FTpw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fF2ouqPPAUyB/0Js+KcsCA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: R4tEIIX8C0qwTuwOyHewug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MsC9pyiJ70yOch5ObKq1vQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ebHYZSwcKkKItUvBDQZtlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c9u9PXciJ0SlSq9YAx3iNQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +JB3ZxYnv0WFavgY4U6R4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UmJbUYWqK02URISahEqc8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IekDXhf/2EqcsOE8WDUTTQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HT1Qj8r28k+7uZdrAnbOvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ymv36RGJYkWFGT5UJIgaxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vO+FGumlcUO7plMIaieZDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ENHZ4/ZwIE29XkmJtXzYsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aXBdXa1/sEuKh03Wk49hrA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: E+/iJWOcgESApLaUhNmBeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NAa4GhexqUCNU+aLBv24cA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2wAbokN2lkuJ/QR8vedkZA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NTib/ty1N0y8pmrNb8gBCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YG/y5khNoE+BV10SnygOWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ohw20dNkZk26U8gePQXFhQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4C/ObOyuXkqhMEODddAYFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JNIhV++GZUumx64I5WExmQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Dql/7N3bgk2mlpXYPlDyeQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EmuIhgJLDkqwtSn0sppB3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pey5VlpiBkWrNPlikY/ZlA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JyDZKFZLTkGwsRJd2C+5Yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BIgX/X3ttEOnRnXEukU59w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: vjuZZUWvUE6wHLsQpZKktw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: heroheader-overlay - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Header Title - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text5 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text6 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H3 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Never - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Submit - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView7 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Background Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Title - Name: text47 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: border-bottom - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Line item - Name: text50 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Value - Name: text51 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Line item - Name: text54 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Value - Name: text55 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Line item - Name: text56 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Value - Name: text57 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: border-bottom - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Line item - Name: text52 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Value - Name: text53 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Line item - Name: text58 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Value - Name: text59 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid5 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Total - Name: text60 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Value - Name: text61 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FixedWidth - Form: Atlas_Core.Atlas_Default -Name: Detail_Summary -TemplateCategory: Detail Pages -TemplateCategoryWeight: 70 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Timeline.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Timeline.Forms$PageTemplate.yaml deleted file mode 100644 index 3fb2f62..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Detail Pages/Detail_Timeline.Forms$PageTemplate.yaml +++ /dev/null @@ -1,4662 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Never - FooterWidgets: null - LabelWidth: 0 - Name: dataView3 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Text - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid6 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid7 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: pageheader-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Rounded - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: anEa8ta1+0aIGMNUH1NejQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0JQHXrSKQ0OD56mdSDa8nA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pXbkupZzyE2UCVnP4VTjKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VM5a8DxW2Ey/0EBC8BuAXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MF9r3JCr2UCA99QLd88bLg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kwPtpAH690Kj9mpzYtc5VA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fk2IiYhmVUKNWrT9bHGIMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: gKuWlXh98EaZasc+luv2uA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ODYjnxrWXUODqOezzlXe0w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: z+Y38f5n7UyZmxs836NTKQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /hzCJ25v2kC3nAMszrKsMQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hzW5pWkefEyDIN93IvWqUg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vZ1cX7CpG0yC+e6VsvklfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Z/NhnpQoskWNyBh1cw7JKw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0ZfzIkpdeky/2y1MIjOCCQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jxUURmcIlk6/8uTs2RcSMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dFO2bpYaH0KuewtfM3d6RA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eIi+0LbruE2JUzs6Ed8+DQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: u3t8yflMJ0eEtkhwpU35hw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: h/iMFZpB3Em2Re0RoP9ovA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: d+mcGI1ZcUGxLXUKs44T7A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZHWFHhM5pEiC85bUpzA4ww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /23I88Nk/EC3+RABMEU+iw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: m//mRudhf0uCMn0pzzIiLw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qHsDJkBTOU6zxbOfKYfbfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nKY1+bWtaEKOUL1NefsdfA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4ScQYYOrUEe6pa5JSqF/Nw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "64" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: niwOT40etECLw8mofSII4w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3S388LQcY0GvHLHopmIhqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: P0u4jLBf+keIz24W2S00aQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /HkUcux31keuKqZ4UbKeEA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tGatbhmoNkqoW4Hc+eahFg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AxQkSdJyp06I/LpacNX5ng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: J3xhdtdq10i/2HBpvxoZfA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: Rw0Uiiw1cUaKAdhG+Fdytg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Title - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Location - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Date - Name: datePicker5 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Description - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Striped - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: grid14 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 99uNEUjwV06ZaxdQe0zrcw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aJHSdhvIl0WuihOD/vlhfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ev0DluvtFUCS7eCND8FgOw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PMxLrn3mqUm9emtQ6BNPMg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LIiLR0CqH0e9nHRQqVD4mw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jw5Zbf5iRE6EjcPLL34efw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SFpYkEpjLkqBY22oL9NMog== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZlOKLz/85EeUj9jX8JdlNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1vLcLD3gjEGaki3J9wTO7g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jmmnXG/z30aeozWZcr+vBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BlsBEDQnHEmRFda49vsHVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W7vQ7ckUGk6FYD6KwGp6kQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: LVwr0VgxdEubt4x5t+szSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wEcikbgM/kCJ0lZSpR5F4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - TranslatableValue: null - TypePointer: - Data: PUsIgRNQwEuNCTfDmHWi1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NXqztOKdkEqsaJ1vICiDkw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: FcMv6Hdzgk2PohVur8eOqw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eG4vBTK1k+a11Z3t6U72Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XREdgcIkwES69pctjF+1fg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wqSeTFZc/0mOaQPnwB3Tgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o/UvH7c6WE+RVqrd9sy3hA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 76IadfNkmUqSIUW9Acl83A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /Oo6cdD+/EGMMtlMYMJNWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xt+4ZyypyUyDjCEHomwgZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PYvsyNJxgk6O8bR1Ydyp2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TlcjNU1Xt0KWLsjZJzeRvA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a6wpC8rlFUO9XSKcLxRZqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uZiI7wUOY02xEsw/uDz/DA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GOx+Discu0SoO9VKaozAng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RLRCaUKzC0et/dzX2V2xlQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uUTjXQxapEmuPYcWT8wNWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vl1wqWcVj065yZvcixHSDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2cI/6KX2OUunfYnR7mSyWQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gRc4hlVn1EyvSTBCmZSEzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OHaBFjpqk0yW6SWXlTbBmw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: huFH3FmkGkKZ346VZ/mSTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bDR82jCMlU2SIzj52JQqxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wZMemV2aekK5olR/sIwF3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jVZLHRTMs0q4j9lnWO5Y7w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FJ6SID6Y902vkt8Z4N5iUg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Nhf7MnTsoUmDHVM3w/qEEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E9m7y97yxE+sO75qf0m/KA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DUbXOfdb4UWwr5h3yLKEmw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: T3ONdj9dM0mTgWRpqOFtag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PS0z2MVeX0emiHyTpQYUNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5Y3DvZd3z0emy2OgqMRsSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: j6QAarpdUkO04oF9EJV3Zg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l7ZU75rIl0iLwFZRHtl17Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lUhoz25EA0GHfP+XLhR1xw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: b1AockSuEUGW32EKRe4Sjw== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jw5Zbf5iRE6EjcPLL34efw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SFpYkEpjLkqBY22oL9NMog== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZlOKLz/85EeUj9jX8JdlNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1vLcLD3gjEGaki3J9wTO7g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jmmnXG/z30aeozWZcr+vBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BlsBEDQnHEmRFda49vsHVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W7vQ7ckUGk6FYD6KwGp6kQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: LVwr0VgxdEubt4x5t+szSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wEcikbgM/kCJ0lZSpR5F4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Last login - TranslatableValue: null - TypePointer: - Data: PUsIgRNQwEuNCTfDmHWi1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NXqztOKdkEqsaJ1vICiDkw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: FcMv6Hdzgk2PohVur8eOqw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5eG4vBTK1k+a11Z3t6U72Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XREdgcIkwES69pctjF+1fg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wqSeTFZc/0mOaQPnwB3Tgg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o/UvH7c6WE+RVqrd9sy3hA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 76IadfNkmUqSIUW9Acl83A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /Oo6cdD+/EGMMtlMYMJNWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xt+4ZyypyUyDjCEHomwgZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PYvsyNJxgk6O8bR1Ydyp2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TlcjNU1Xt0KWLsjZJzeRvA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a6wpC8rlFUO9XSKcLxRZqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uZiI7wUOY02xEsw/uDz/DA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GOx+Discu0SoO9VKaozAng== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RLRCaUKzC0et/dzX2V2xlQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uUTjXQxapEmuPYcWT8wNWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vl1wqWcVj065yZvcixHSDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2cI/6KX2OUunfYnR7mSyWQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gRc4hlVn1EyvSTBCmZSEzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OHaBFjpqk0yW6SWXlTbBmw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: huFH3FmkGkKZ346VZ/mSTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bDR82jCMlU2SIzj52JQqxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wZMemV2aekK5olR/sIwF3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jVZLHRTMs0q4j9lnWO5Y7w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FJ6SID6Y902vkt8Z4N5iUg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Nhf7MnTsoUmDHVM3w/qEEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E9m7y97yxE+sO75qf0m/KA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DUbXOfdb4UWwr5h3yLKEmw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: T3ONdj9dM0mTgWRpqOFtag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PS0z2MVeX0emiHyTpQYUNQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5Y3DvZd3z0emy2OgqMRsSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: j6QAarpdUkO04oF9EJV3Zg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l7ZU75rIl0iLwFZRHtl17Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lUhoz25EA0GHfP+XLhR1xw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: b1AockSuEUGW32EKRe4Sjw== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B7d5nOO/AECz7LaTT2Y7Xw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J13FI5Ut2keGN/l0YLljKg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kIoJEOWWUECNJ9aLnQ04YQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kLDdLdifhUa6Kb8WECAVCw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SIPoIBb6002SLWBUdqB57Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DLEjtyxPsEm4gMs1lLGrZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: X3cgTQvS6kqWNITmZ3kKdQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oY/DBK4MO0qCILMLoBl8tw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YgTWOSaaCUi6gmWO2WsTtg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QGVN+ZgcckKT+EKrJrSnOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cm15KVXf1k+JilrlUpkQGQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oeWMX+DBOEOHfYedIW7Ovg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 59plY5yzDECgDfCuYUwYxQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 68v3bZf720C2J1J2VEOnHw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: boUnkfAPCkypqAfgo4Qidg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jYPiXyXD2EWMETQ/EGK8XA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cul/rHwoWUecoZCHVcUWOQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BYk9utbTc0aLrBvPHXhLVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +XCe6dQXn0W1DWSq1eqnpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 11oGSKxKjEmQy8MnI5fwCA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aTZSawNoE0SPM7J3JpBqvg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: I3jjZgLqlU6h8XWIqbOkMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nv7ArJZqr0uwLINKbZtKcw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gJlKZTZEyUODjrs3YLu9Zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: U67PpRQ9okyRyDoG8lPSDA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iK0VFKk71Em2vjsSeuOVng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IFS3+AiZFkSPvpEYDve+JQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wsfi56cxaUmqtlUC9uo25g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8Z6shzIQ6UigOPL2HbTijQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /SdMheBZ8EuT3SW/s2Ic7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4tlkeLebikuiH2uiHeSKEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W6Lm0azI9kmgr+s+DhyhFw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Fy1hetPLZkSVdm/0BGTSXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: diPO6p3WAkeKyGFk1lgs9g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: aBP9xXnsXEu/ggyl2Jc9OA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9d7W+Bku/0ui9/EQoSJ1GA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9PheSGEgk02kFaSK84SY0Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: C1rpPosgXkCiqmZ9gMrBZw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jw9Rr0omi0SsqVtqGUwxYA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UrMJ7d3FlkCeSSxc7tdfHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YcIcluUYzUu5iJVcwlNXqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FqXo45YgjUqKuuo/Vzacvg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kWxuhdv4c0iNHm1938A6Ww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CozWARSPpUqz/6PcHi7OKg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: isPlC9zLjkGlrhJCKwpemg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LKNPYy8r0k2oJoCKlBtr+Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vNhGEdzaSEKz79PfTYZoXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: m9ZPFgn6KkeUmQxoZi7hEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GQeCNaJueUOm5bn2FpvrBw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tJceqR9ABUG350hUBqKdnA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: h61ot3Qxokan3NPTcXBb8g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5glrNmy5L06DvvxiBs8T6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: xzAqbKKwfUKq0g6RWeiPVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VgIL0dd45kOmFK0jcX7jzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: 36kYCTDJ302hwgcbVHJCuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: dyrF8ZzA1k2PsrzfY56dGg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: 4 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: timeline - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: timeline1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: I6eJC2hb/UWeaWbcuk5w+Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: - $Type: CustomWidgets$CustomWidgetXPathSource - EntityRef: null - ForceFullObjects: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: g1fUoRLbWUyAtKObZUnypw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: c+eSgRy+N0yVGNVoaejxTQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: h01bh3T/zUyrH55X+APaeQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KSLVovIAzU250LlgI7+3mw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ZrnKIykAo0efcYmWJQUUbg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W5Nb36AQs0a0MxRqnf9DVw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: S0jIrxbeYEeivLn3gLIkmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EwyHvxmqi02h1n3Jkd1A3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Sih96NvXwkuINTjSO0mDbQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8PqiwLwGx0SjrHdnh6WRyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VqjTX7WESkaCA+0iQNp5Gg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: anJYMqXtok+T0YqmDCUAfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YctQFJXCN0Gq5Ibh9QFwVw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MwsrWLPipEiixIWEUtR5Zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fxVnA8g+R0mT0gnVa3bC1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CbNS4JHvJEuyYfLhXoIz7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: day - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0bHoabJ3jkis1nVTkmRspA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ndj4zSaj1k6Osszhn1p/6g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: dayName - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p8APRrbx5kW+O3bIIemhlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pSAV4UX9jkeL+6ksEOWMeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: month - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SWMfEcfiq0OeyBWbG397Fg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: guVfacHVl0GlDDHhYQSYFQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: end - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uJLduuA2/kmsL0QHsUv3Zw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S4BdM0qg5UyNk8CVKbKkyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Saeb7KW8LkWtP78SxW81Zw== - Subtype: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image3 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8nBWfWGd6ES/Yu3tiKblPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qczbNL9KXUyCYevZlGj9bA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0hER5/0/FE+fMlDKSsREyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gbOsKSmkk0W9R9/jxAw+Cg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: m2DxHqrQ4USvJAS9i0Pjhg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vLHETKuFgEi5MtyAp2WA1w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: H3YZmqhAhE64YN7DQFHYMw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: FYqKcR9mZ06YeCV3I9Atdw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JgK3jkpbd0e4VYU0O4XTgw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YIMB7D1JF0yEPFK39WIobA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FTpfDnu68ku3I4/T+LqFwg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BUi5bVTj9E+hB7vrk7NsUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iUBcBp38pEaQMC9S09FYEA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Xt+afSrwZESK7gRydWW1yQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EuVsF1q96UKNnIPy6kM+NA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Iq/Mr1SdS0+Ipbz7gJ4AQw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: evhRWUeJB0mYPlGfhu1Nbw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lCBrATfQL0e6+H/1jO/5AQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZQuFKAtA2kaJ71zPVMAllA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: zCrDrx2EZ0ed0wKf5L8mpg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: b6V63yA1CkuDHEmh/BRkfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: d8vw3KXRnkqEEC/DUysQcA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8ometnB3a0qfuiq//PPtJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "18" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vnrldvjaJ0OP66IEBBDk4Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y7J5+fCXq0S6Czisl5EBdA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QwKuY/COpUOKqVWVNvXMbw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TeQvB2gdJUiSLBYSfrDPhg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "18" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: r58uvl5EaUOSiroPL8AaDA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YxE17faud0ivNJSk1Qd4kA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wUUm8NwhS0yEvQ0xBF712g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0/OQ1OcuK0CZUU1jrRP/xA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MJ4010TAlUaHEQTrlJfLFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Shb0lJpFHEeNk/5eCFfP9Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: T8rffzUO0Ua/tt20NV8a8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: VHI/rMns2UKfnO6qV0OEvw== - Subtype: 0 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lBVOAHla6kG47UB5KKQgpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ClQg5WpShkW3lbn3vPQUCQ== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Today - Name: text5 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rkuou9ROPUO8m/uSQ+ONeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LOpILzQjY0CQMOH/6f4SyQ== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Timeline entry title - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: teFNPjx8hE6QAO7GNM55xg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: b3yomdo38UqCABbxWva+Yw== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "14:30" - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cWSydACh7U+4cs8aFLZvzA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SG49vMxf9UyM9hxz0AFJpg== - Subtype: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Timeline entry description - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QV8sj3EzpUqlU1Nk7HHJWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xohMG9Q2w0mfF0z/MLmG0Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 0gkbCdcWHUKySULq5lhI3g== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Detail_Timeline -TemplateCategory: Detail Pages -TemplateCategoryWeight: 70 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Centered.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Centered.Forms$PageTemplate.yaml deleted file mode 100644 index a06fd95..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Centered.Forms$PageTemplate.yaml +++ /dev/null @@ -1,711 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: Form centered -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: 8 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView7 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: First name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Last name - MaxLengthCode: -1 - Name: textBox20 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Form_Centered -TemplateCategory: Forms -TemplateCategoryWeight: 50 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Columns.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Columns.Forms$PageTemplate.yaml deleted file mode 100644 index 5b9fce7..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Columns.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1031 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: Form columns -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text42 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView5 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox20 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox21 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox22 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Form_Columns -TemplateCategory: Forms -TemplateCategoryWeight: 50 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Columns_Edit.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Columns_Edit.Forms$PageTemplate.yaml deleted file mode 100644 index 76a7bc4..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Columns_Edit.Forms$PageTemplate.yaml +++ /dev/null @@ -1,860 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: Form Columns -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView5 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox20 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox21 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox22 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.PopupLayout -Name: Form_Columns_Edit -TemplateCategory: Forms -TemplateCategoryWeight: 50 -TemplateType: - $Type: Forms$EditPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Horizontal_Edit.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Horizontal_Edit.Forms$PageTemplate.yaml deleted file mode 100644 index d2de27b..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Horizontal_Edit.Forms$PageTemplate.yaml +++ /dev/null @@ -1,559 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: Form Horizontal -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - LabelWidth: 3 - Name: dataView5 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox10 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox11 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker3 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.PopupLayout -Name: Form_Horizontal_Edit -TemplateCategory: Forms -TemplateCategoryWeight: 50 -TemplateType: - $Type: Forms$EditPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Split.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Split.Forms$PageTemplate.yaml deleted file mode 100644 index 4c2064c..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Split.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1079 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: Form Login -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: spacing-inner-none h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Auto - - $Type: Forms$DesignPropertyValue - Key: Hide on - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: Phone - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YEJrJPsyWkirI61qPsEgHA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gTD8U/O/W0qL28FzW4+S3w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Yq+KeeOuhUCS8H5upPcXyQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Hr49d4vbz0Sy8aRGFy/NZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qJsa819TfEWpOX5UVJhH5g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mnQRYRouUkWdxs/VT+kYFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PyWeReI2JkqV4TyGuUPOTA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 53fX3U7B8065lHEK/7WQfw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2gxDyYkJb0m1AAlPmcKarw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: s+O7TVgPjUWID0xeiAQrBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JhSQs4L7bEGolsHoj+IKQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9u/Rv91I6EyapkJZ9WJnoQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: t1iJ/T4+F02h83CdV8oWMg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: X5tTCVX5vEmq+sGJzkWIWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WNFu4sAjyEambKgOwxLoKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dozsXRwuiUS3eLX9jbOymg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LkHola3JiEWHcip9JjNI/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MeN2graOEU+Of/IjJRNdUA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zj+rs66w7UiLkgUmTuFDcg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: NyQUB0bFIkGM3Mrp8rl8Hw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S7rT5fUrQEmmBz0IBCBSdQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MX2mq7LEoUuzKB7wW0xrcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +iWG51fIRkawoY9GHHIOzQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rmhniZUzPEWOYycmjNpBGw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MJDCHfItW0eW8O6eKjf3bg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hxtp+OFlW0ybHmdsCzU/mg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BFryET0GSU2P2xCDXKawFQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ncCC+Y3UlEmvOxa1cYkt/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lUUiblwz30uttstbeMH71A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UdY1KWMAKkaGtEoSuTIq1w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f3gD6fEKuEmciGFLQtcmkg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: swUs4+GKh0Kfu2s6nzFxag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XB1HLr+tQEyK5VcO/cRc3w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HLr90hpTa02J/5jkYaNmpw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: xo2TJ/HenUuy4ONudUtS+Q== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: col-center h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: spacing-inner-large - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Submit - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView7 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Form_Split -TemplateCategory: Forms -TemplateCategoryWeight: 50 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Vertical_Edit.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Vertical_Edit.Forms$PageTemplate.yaml deleted file mode 100644 index 42d71f1..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Forms/Form_Vertical_Edit.Forms$PageTemplate.yaml +++ /dev/null @@ -1,509 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: Form Vertical -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.PopupLayout.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox15 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.PopupLayout -Name: Form_Vertical_Edit -TemplateCategory: Forms -TemplateCategoryWeight: 50 -TemplateType: - $Type: Forms$EditPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid.Forms$PageTemplate.yaml deleted file mode 100644 index b1c75d8..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid.Forms$PageTemplate.yaml +++ /dev/null @@ -1,2404 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Striped - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: grid1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MNKl3nyGI0SoIZ3pQzzf8w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LXFx3MqnB0W4vpHK5HBeXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rfyGKmkP+kSpAIoQoxEfmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: z+3dNHWB606pW0Dfg7j1zA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: h6ksH4WLoUCGaD3G+8e/PQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SdUnuFjjIUuquHS40n9sSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +tWV5cYMakmM7FXbKaVCUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1dBcvJEoGkmrFbVUxwWnJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xSZ8wnJljUasOs5RxY87/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: im4MwUswXka4f5kYGzg+AQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: INDUxWZhUkGB0DMma7oDrQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CIuNIpxDy0OAKZMI3Nwz5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 7n0DVHfztkOu5563ceEYgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: h1C9WBEtH0SrOrHrDlOe9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - TranslatableValue: null - TypePointer: - Data: rS7R/C9dcUa9YFF6FZTMlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +8vHDZpwHEqoTW6EPQqUYA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ngSpXGFAgkO8adfMVSVFmw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pzjGXBv9Mk2cF1kHKePD+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0CE6c+DvVUmwS6LOfUOofQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y4x7cxefyEahFQhVvCYksw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qysy14kCtEqdRSJuBqjBRA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mP8kkprboUCGKoifwKgGqQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gesgifUCDU+8C/bGy5HmJQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2qWhRmSYdUyRD596UYXgIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DQgph2I5NkOKQR4ptJ3l5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: espscpkBFk+1V/PEJPcPJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kiwZQvapIkatLEQdeVwjlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Fdn6j7jql06tr/n9QrDDog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B+p+FQuQz0WlxCvZ0CHJ7Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /1dfnmatSE+turC8UTamMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: T6TCSYYtE02fkwYvZVFuJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RHmkZ5FXO0a6E83nZXgMCA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: J/bfCHMxbUax0I2u9aPmsA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZsfMMSgWmUykV2xKKVeAEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MeorMPJMykSXXZp9Aq2MgQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eOavQ1ixQEGI21N5/RXpow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 79miCsvBDUO35NTLvrJgEQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WWNW1OyHGEes9y/DGE6I1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gsIzCen6fUSxgIiefMIp2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: U+lL47oomE2QGbg06ueI/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEQ6bXnaEkSA2am7DC7dvA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3Xk33qfmRkqrsItd0S4VXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NN5l4HXseUud4SKDm25oFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6pVK/bm8HkCwdyf1rGbdow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qLV7STGTB0i/ckD4Z1UZLQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SbwFnoj4RU+gO9Ey4Qf0eA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: x6PV9Hg1FU20YDBtAvxT4A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LO7O4HaAY0OjM8eC7TB7bA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hrOsUnRmH0erEMDMq5/fhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 1BVEdTs1GUi7F2o8zfNgjQ== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SdUnuFjjIUuquHS40n9sSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +tWV5cYMakmM7FXbKaVCUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1dBcvJEoGkmrFbVUxwWnJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xSZ8wnJljUasOs5RxY87/g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: im4MwUswXka4f5kYGzg+AQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: INDUxWZhUkGB0DMma7oDrQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CIuNIpxDy0OAKZMI3Nwz5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 7n0DVHfztkOu5563ceEYgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: h1C9WBEtH0SrOrHrDlOe9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - TranslatableValue: null - TypePointer: - Data: rS7R/C9dcUa9YFF6FZTMlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +8vHDZpwHEqoTW6EPQqUYA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ngSpXGFAgkO8adfMVSVFmw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pzjGXBv9Mk2cF1kHKePD+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0CE6c+DvVUmwS6LOfUOofQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y4x7cxefyEahFQhVvCYksw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qysy14kCtEqdRSJuBqjBRA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mP8kkprboUCGKoifwKgGqQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gesgifUCDU+8C/bGy5HmJQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2qWhRmSYdUyRD596UYXgIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DQgph2I5NkOKQR4ptJ3l5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: espscpkBFk+1V/PEJPcPJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kiwZQvapIkatLEQdeVwjlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Fdn6j7jql06tr/n9QrDDog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B+p+FQuQz0WlxCvZ0CHJ7Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /1dfnmatSE+turC8UTamMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: T6TCSYYtE02fkwYvZVFuJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RHmkZ5FXO0a6E83nZXgMCA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: J/bfCHMxbUax0I2u9aPmsA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZsfMMSgWmUykV2xKKVeAEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MeorMPJMykSXXZp9Aq2MgQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eOavQ1ixQEGI21N5/RXpow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 79miCsvBDUO35NTLvrJgEQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WWNW1OyHGEes9y/DGE6I1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gsIzCen6fUSxgIiefMIp2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: U+lL47oomE2QGbg06ueI/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OEQ6bXnaEkSA2am7DC7dvA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3Xk33qfmRkqrsItd0S4VXw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NN5l4HXseUud4SKDm25oFA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6pVK/bm8HkCwdyf1rGbdow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qLV7STGTB0i/ckD4Z1UZLQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SbwFnoj4RU+gO9Ey4Qf0eA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: x6PV9Hg1FU20YDBtAvxT4A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LO7O4HaAY0OjM8eC7TB7bA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hrOsUnRmH0erEMDMq5/fhg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 1BVEdTs1GUi7F2o8zfNgjQ== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EEmKDUnhxU+2Qqu+h1pARA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QxIfPRn2iUSyxebcddkJ0w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HUXPsCs+kEihiErVs+svtg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7LJNHqfImUaUksFVNwABvQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HSlnxMv4r0miU/Mdj5rm6w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lQKRnqT3uE6Afm1rpogTMg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AKFdprvxakSa9BlaKJXIcA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MTPrs0EXcU6s5QIgFBpnig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nB+PYev4XkWMtZWuccdBhw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XpKX7A6mMUORTEPOKO9P4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ISyL1KXR8Uu7LibxYwa0mw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f3ERO7uFh0ieU7yOARstWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: D3umLwJfOkCV4z3Yby1txA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bO81o9M4+U2u4W1dXJOBWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rTXxeCAn30e5tisbJLpnJA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hUz41dgQ106CPiVbIZoFJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wYIGTqnth0O/v9R1Hktovw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S8r5kfCA8ki1mAqlxwIlyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ee8eu3Kvz0uqkiM43/fAAw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Hxlw0g/3xk+L0NjC2x8MJg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tW5b1/PUjEGfKsQPt04p1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gMzmzHoTy0aOKUSG018VwA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8XlxBGRJTUq3+rpLqj7aKg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y0bN+qGiu0qTGRVGEhwGtQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: faefFW8ii02gHxWiRt6cjg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vRsJyWp/MkyvUODjC79U4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OCQX5vuRSk24CgAWWrDoSA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 66anSonu606NnHbRKklGnA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wu1dhiznzEG5gUlSXOR80g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bfchCDHa5EKBJv+pxe09Gw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0iHnE8/KukOCDj/4TdeghA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CKBTQmSMDUyyLMsmXPjrpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ORlDh4VVukK6r0jyNAt7pQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f2Hbixp1VUGVWZrevxFqdQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ZnOqbGJEXUWXCj/PcI7tuQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: GZUtkj99z0ua/nWZQ356UA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yjExBQZ1IUKFB2c0ZgEiqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wiH2KL8MVEK9Xt744L0wUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Cb03lZd2JU+iN57VVDq8mA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vQpAxY4qBEyAxHt2+pTfgA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /OTkV6VN2EqB0jxhDgCzZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: h06zAW/1E0qexJpr+Yb2uw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /jUlMUyLjUOpr6fonLAsyA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VE+hVLPpIEmxKYytkumCUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oxJtWFDLMka7co2g6DbvwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gEUQ2ZcM9EiQm+EJbN1K4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JVguWgKEu0a/8v4VvZoffg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2c6ajEp7W0u+0O3bfjvbpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: j+N9Xnl+qUi6v662bK7WvQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8P4XFzuhl0KDXTa2R2C3RQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: Qk17SjXVJ0KAkYIGNHv0vw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TotnE1ELsUyMrfnms67XTQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: UzL87k1iE02IjmjbUf+IuA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l/CkD1Fn9UipQ7oF5VQGWQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: vs4U9yE6DEmxEOD7om/8hw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: Au2MA6TcHUKCrJo/5RAkEg== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Grid -TemplateCategory: Grids -TemplateCategoryWeight: 90 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_Card.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_Card.Forms$PageTemplate.yaml deleted file mode 100644 index 3523821..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_Card.Forms$PageTemplate.yaml +++ /dev/null @@ -1,2431 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Striped - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: grid1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: T18d02eGKkeqnVabBr+zpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cLX+LOPYkUiuv9qA5hVS4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: utLAuorD00KZRWL09i3t4Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kL00xAipfEalara0Vf86fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9/X17nwQ8EuE/S86OhkKCw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E0fxhh08kkGvDs4FURKz0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LpqgxpW7bk6AHb8rNANepg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cTMh0AvEWkSOAw08es/Orw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KpOaISoLD0yWWwrfPRb7Bg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hW003Fw0hU2DsB60kRun5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /WoXDIk27kuykuPUwS0Xzg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SnnnRsL6FEigQ164aA6D3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: wyI1WZEDh0i4t4+Y74fi3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bJm7tyPWoUa9m6EOMoIM7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - TranslatableValue: null - TypePointer: - Data: 7oSDrL5VtUO087ppRVMSBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3a2PBnbuyE2Y2WPw+6A0+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 8vWZrm2bDUydysHGPDgdlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f8XOKBrbvEWBKLkTp0AUEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kX17tR7uRUyiRAIGK5bCXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UkfNzPh6XkW1fggq/2QGmQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FXhET5/p+k+YGDWucXE8Tw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FXUFeLocsEegWB834RHPDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: V9uuTyXOO0imrchp7Q3EhA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FLmEzzMetkCpUegVGMdBQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cstB6KHtT0GPwpF3NvVdTQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hfDqnjwSqUWFZFhk/SaOZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BNkLh9vBjEKM1IxQCOPCaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iJIvHjjnJUiujYpBGG33WQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LnyRMhv2RUWlnvk2DTtkUA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uQ6bNSJ5JUSjpy3g/Mojzg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dLkLKHkPVE+ZPSBnM7HbzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zHKvjvqHW0Oe8lFg/aCgtA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EpKzIqiG+kuPaO5PC1V17w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: alLhJcozs0OGQHKaUD4kIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: obxOlab39k+lUhZ1HMrDnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: k67nqJVzUkiFN6PaH64rYQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Bwjk5v9lnUiR0Tlb9MyRPQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /GWYrlXyREyaphaCeVilJg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: n3dmXyoU202DAKimdAl0Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BzJAl0T2S0m3qy7MWOaA+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yx6+3Zd6j06nS3jfbzynRw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7QOw9LCz+k+k0x6kTumvOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 816Fjrz6aUmdeVQPcEaAWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: da6zsf9Q6k68IG10bLdmEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dJQ6/i4EokmeOQttSsj2yw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9ppY0THHN0Goi4jagTAeqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EvWc99hlKUmoypffo5aqHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WqcgZ/NwvUOWGNADxA89Rw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: asTLX+yXe0qSpyjgdK1+Jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 87yUJJ+z0UCNeD8lHDPYHA== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E0fxhh08kkGvDs4FURKz0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LpqgxpW7bk6AHb8rNANepg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cTMh0AvEWkSOAw08es/Orw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KpOaISoLD0yWWwrfPRb7Bg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hW003Fw0hU2DsB60kRun5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /WoXDIk27kuykuPUwS0Xzg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SnnnRsL6FEigQ164aA6D3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: wyI1WZEDh0i4t4+Y74fi3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bJm7tyPWoUa9m6EOMoIM7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - TranslatableValue: null - TypePointer: - Data: 7oSDrL5VtUO087ppRVMSBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3a2PBnbuyE2Y2WPw+6A0+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 8vWZrm2bDUydysHGPDgdlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f8XOKBrbvEWBKLkTp0AUEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kX17tR7uRUyiRAIGK5bCXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UkfNzPh6XkW1fggq/2QGmQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FXhET5/p+k+YGDWucXE8Tw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FXUFeLocsEegWB834RHPDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: V9uuTyXOO0imrchp7Q3EhA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FLmEzzMetkCpUegVGMdBQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cstB6KHtT0GPwpF3NvVdTQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hfDqnjwSqUWFZFhk/SaOZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BNkLh9vBjEKM1IxQCOPCaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iJIvHjjnJUiujYpBGG33WQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LnyRMhv2RUWlnvk2DTtkUA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uQ6bNSJ5JUSjpy3g/Mojzg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dLkLKHkPVE+ZPSBnM7HbzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zHKvjvqHW0Oe8lFg/aCgtA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EpKzIqiG+kuPaO5PC1V17w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: alLhJcozs0OGQHKaUD4kIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: obxOlab39k+lUhZ1HMrDnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: k67nqJVzUkiFN6PaH64rYQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Bwjk5v9lnUiR0Tlb9MyRPQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /GWYrlXyREyaphaCeVilJg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: n3dmXyoU202DAKimdAl0Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BzJAl0T2S0m3qy7MWOaA+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yx6+3Zd6j06nS3jfbzynRw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7QOw9LCz+k+k0x6kTumvOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 816Fjrz6aUmdeVQPcEaAWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: da6zsf9Q6k68IG10bLdmEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dJQ6/i4EokmeOQttSsj2yw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9ppY0THHN0Goi4jagTAeqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EvWc99hlKUmoypffo5aqHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WqcgZ/NwvUOWGNADxA89Rw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: asTLX+yXe0qSpyjgdK1+Jg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 87yUJJ+z0UCNeD8lHDPYHA== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rurFBOjRUU+wTMjKBVcwFg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2y/UBEtEpkCwAd2WnNbPyg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Tjg+Kk9ujUyAZIdzYxif+A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: H60I/b8LFEGwv67Ry585xg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: OWr51jTPYkeuPrGAc79XLQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q62WUejm706sUFzOrtYNVQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /IZWCB4Ltk2SjCX1q90fgQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XGBeudJPJUuQ2tqUFkjZsw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YjNrFckEEkCD0w0XPzQrSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sKxtjAAwOkeCFulBxAO50A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uygw863u8E2YTuNcHwwmLA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0Se9BQrcw0e/MOWRUS489Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Qm7I02j76kGNNMTCzxhu8w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aZqpA6VOYUu3UVMpvq6WvA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BIyZ4i4eG0aSfllD237k3Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zhG3QGAQYkGqsVOK77j/vw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M48D5Pll506aW4eNlU+URQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ueEtLlpHwEmlqLADwTZAmQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hWRPV5yULEWhPC5NSCKddQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SpL78ZssRUajP+lNJ6CPyw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3HQCQxjjD0it49Dqkl6eGA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +42SDuGdTk2/SYyuekYEuA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5wwxHUH7K0a3qv0nw/rVVQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NEPJTUn04E2HO4zFn70jGQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8Lc+5lbJz0m2i4OsTRvavQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZPWie48N8UiRYrWmSYBnLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vHps5wIWJ0iGlxP0WEHTJA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gGn7oqmm2EOsUYHIZDkN6g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4daop5IfFUCvYHPU0Ld45Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KhYwL7JVTUWmBmheBQEk1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yE/iV4zAUUmGeGuWlBzFBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xZd5u7WZIkOj1OndY0/QEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Y1uL6pXEZUyLbq2v22quow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pYEKSyvvUUuWtnU5ZfXqIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: aNMjvSvKYkC2lg+xfJpeCA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XeBhkilYjUe95CmurRWFZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /C/mk5I4U0eNqL/3MBqCNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MFkFtyUknECKQaQ6s80tRQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Xr51+lGbvE+b9LCEtnebeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4szHHxHeiUm5ks998PWeDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HwxZ6MXGokKzE15vPT0asw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PlX6mLRGBEWYyaK+SgmjQw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TZaBU9kBRk2muRa2ohSN/Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RVkhkDTwlEqNr2xZyfey/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fMGLuDiZxk6KEK1eKnzPsw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mjI77215aEarakdjqYD0aA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KYE2gw9UuESDuBDPODNJFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +GkYnn6ufkSA5SQB5I6KCg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eo/tGcq8DUWpIs2abBShsQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SxlSk65cJEGEIt2MYvJhKQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: i0bcMsd7s0GgczOvxNsyYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oTtNU1Zcl0qRj2HGNy5Okg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: M3ITFhVV+Ey4ARFN1e0b5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sdu7owQD40mJU73lVto2XA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: Ubfeay1oYkaUf6nl4AA+pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: mta3JF2ETkK1y9c0Mfho9w== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Grid_Card -TemplateCategory: Grids -TemplateCategoryWeight: 90 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_Tabs.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_Tabs.Forms$PageTemplate.yaml deleted file mode 100644 index fc1b10c..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_Tabs.Forms$PageTemplate.yaml +++ /dev/null @@ -1,2536 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: GxJAYH5CfEW6clTNRLq4cA== - Subtype: 0 - Name: tabControl - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 1 - - $Type: Texts$Translation - LanguageCode: ar_DZ - Text: Local Users - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 12 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Striped - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: grid14 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TNsiXDdvZEyYRd89yVTwmg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SW7yavNtYUypsunvAZ7t7g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZNA67qkzeEK7A9OM6M0yGg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zgLVjOdjdk64qOep04kMlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Vfv7cq60zUinThwe2ULGSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TtOcavQYJ02WECNnmjprkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /kk1o2WaGkuWLZHr3dMdEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CyfznQWOM02BP0OIVpSHmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O2PltoCSpkKn2j523wYPgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ejBoR3R/cUebNxPZG6NM6Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mIuZVEcKckauE4G1Wkigrw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sgR6d2dnY0+luENX5B+T7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: tM8rSMPQiUyyUckdJV0nWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OR3bGW7cmUmPM3r2gkJQDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - TranslatableValue: null - TypePointer: - Data: WtUuY1UquEmSTSGBZrBQeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W4myF7mA0kGVb3kOjXNYIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: L54DAZqhYkWTfjAXHuN6RA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nTf/eA2vREmZX0pEKiBY2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8RqJalIZvkqOrkECp2TZ8g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MFkLkwkn6U2A03ZGHXolcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vUnSJjcqdk6r977CZleRGw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uWNofuzNVkiXKeD6L95Myw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0HI/EpZLt0K5hUiM/eY1Rg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gwYWjjghw0uaX8OIdf4psA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cUj7kOkaDkGWbqYgAfNZrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Lfsch3gi4E6L0hFriybppQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1LuFJmDPAEGPoAbjchjkOA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ehWD8SHdU0W4pXh+wQFNPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pbFUH8lcLEWM6cNTucLPaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9cS5+IuXAUSitNwuDRVU4Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cyTUIRuxHEOlgLjj+2Acgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OjNpiO9NRkmn/EWSS2urbA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: z1J3SPAkykyaRvVOEzR8WA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wucpQlH9vEypGc3XTR3ckw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oyxdiyYts0qSIyrfFcMJtg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f9l1PN6YxUmhzrZ1KnrV3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o1IpZn8H30KaCYRA8xNYqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zUD6y89w6EWVR689se8UJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: axve4y0M8U6sv2qlbhA06g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wxvo1Uzad0680YJG1+hTcw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: z4/lp95RwESc/PRw52RPug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LJJxjh9JN0uSQCF/OuLNqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JXYkA979PUKbzBeeNSDoHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UkRv5MD2uEKb9AwOoh5vtg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iaC6Qh+/q0Gg3NtX6ZeOVg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EYlhvwEoF0OFxVxK+WOubw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fRCA1JJptECF21z4d52Kaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S5pd8sJitkWj73uwPceGeg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: w04XVN/dOUi7gTJtkiwfMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: JuFB8zTTl0iLDo48YVdMvw== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TtOcavQYJ02WECNnmjprkA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /kk1o2WaGkuWLZHr3dMdEg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CyfznQWOM02BP0OIVpSHmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O2PltoCSpkKn2j523wYPgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ejBoR3R/cUebNxPZG6NM6Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mIuZVEcKckauE4G1Wkigrw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sgR6d2dnY0+luENX5B+T7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: tM8rSMPQiUyyUckdJV0nWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OR3bGW7cmUmPM3r2gkJQDQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Last login - TranslatableValue: null - TypePointer: - Data: WtUuY1UquEmSTSGBZrBQeg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W4myF7mA0kGVb3kOjXNYIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: L54DAZqhYkWTfjAXHuN6RA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nTf/eA2vREmZX0pEKiBY2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8RqJalIZvkqOrkECp2TZ8g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MFkLkwkn6U2A03ZGHXolcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vUnSJjcqdk6r977CZleRGw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uWNofuzNVkiXKeD6L95Myw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0HI/EpZLt0K5hUiM/eY1Rg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gwYWjjghw0uaX8OIdf4psA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cUj7kOkaDkGWbqYgAfNZrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Lfsch3gi4E6L0hFriybppQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1LuFJmDPAEGPoAbjchjkOA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ehWD8SHdU0W4pXh+wQFNPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pbFUH8lcLEWM6cNTucLPaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9cS5+IuXAUSitNwuDRVU4Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cyTUIRuxHEOlgLjj+2Acgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OjNpiO9NRkmn/EWSS2urbA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: z1J3SPAkykyaRvVOEzR8WA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wucpQlH9vEypGc3XTR3ckw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: oyxdiyYts0qSIyrfFcMJtg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: f9l1PN6YxUmhzrZ1KnrV3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o1IpZn8H30KaCYRA8xNYqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zUD6y89w6EWVR689se8UJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: axve4y0M8U6sv2qlbhA06g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wxvo1Uzad0680YJG1+hTcw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: z4/lp95RwESc/PRw52RPug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LJJxjh9JN0uSQCF/OuLNqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: JXYkA979PUKbzBeeNSDoHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UkRv5MD2uEKb9AwOoh5vtg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iaC6Qh+/q0Gg3NtX6ZeOVg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EYlhvwEoF0OFxVxK+WOubw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fRCA1JJptECF21z4d52Kaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: S5pd8sJitkWj73uwPceGeg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: w04XVN/dOUi7gTJtkiwfMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: JuFB8zTTl0iLDo48YVdMvw== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Gw3nzAT5RkKo1ne5U/Z/mw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: D5ufvoe6EkSFuXwDHsud4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: s4iXO+L0yUGvATg1qVjF9A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0G5oRGLzI0uRXYH4JKSGRQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: E6pXydqCL02IiU6Ax17U3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZxKvvR0ixkmjrYBOJL4V3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: G9AQ6QJbRUqN7y6tDZ5iiQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: fnSyronXpkeb2QXh3HR2SA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yg9pvreo5E2Bq9WpyTaA8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aFhZt1zKu065F5cPTeAi6w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zNg7JV8D0Ui/8rKX/UOD8A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Dulu7WGnn0+zeSh/tGHq2Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: h1oUgTXmKEa2d3GOanaEPg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kcNhw+ya1E6FZdOobRHIiw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gMWJaY9oEEOXJgbtCcaKLg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QM6gulDKwkiElpX5opvPqA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4eGW58MH30GrJdTzpukmgA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cO8/pxQgRku0zlRK8k/Wgw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ko5nBOzIEk2wkP3oi//v0g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Iizz8pGukkOeu7uHAi0LLw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: v9mtR6yn6EmW2Fh0iZ4HXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oeMF2NKc+06TMy/ADbPJ7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 91SSTJRnbEWK8c9NiBaFtw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9RFo/TB0T0C/27Wq7w99PA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aDvNCCDnwUCRcCVL4RpQuQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ma5HMT+ddUCM7OGj20ewZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rY2cFaWbW0+v5UAHk6Z13w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zUHrRMib70eiYo3BjosLQw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: q5bk5I8990Cixk6uwwg/hA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: s6fa4RGdXEyDUM125FpZog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YQWZtx9+a0eHsIteGGzbBQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8YJUWZFtnUiEhO0fwts69w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nuK1kDpTmUSimXmKZFXwHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X9xGPfYcfU2q2gQEyMUZsg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Zz116jk5eEqIw+hBOXCusQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dqzulwuZTEeNhdAZyFCdfA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BwJKhk3jRkeqE9B60lMfkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2CIjB8nAp0avxVv7G7022w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qU8O58EVh0GJrJW/21YquQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qFy10DAesE2nKmYlRhnWag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kamEL2OaOES4k3JXZ1iO7Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xnjp5Aj20EyGZ2KlV87xlQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: epQO1xghokez5vX+6RNQ+Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KvNFu84EDEaQ3HGiXFK+tg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sxVHZKY4C0OzNTq9CX1pbw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZYekNKMlKUGCF9P7fkXuzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2TCfMTES+E2aIzlSrr3cYg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HzbKICcfJkKloivb9Ishag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jIc1q6OFo0WVRQb82AtStA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +8JfBTOoxkSP3m1SoYeL2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: E05Ww9C0sESh/IgBWxgLpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: N+Q0i9sf7UqAs5Q2hvce4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: FO7VpiofBEmFuadrns4ZSg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: x45jJTwX8UGtuhl6zSY+Zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: LYgSRToo8E6GuL6t/h14ww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: eIF2BSBma06p96Uj2moVxg== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 2 - ConditionalVisibilitySettings: null - Name: tabPage1 - RefreshOnShow: false - Widgets: null - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 3 - ConditionalVisibilitySettings: null - Name: tabPage3 - RefreshOnShow: false - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Grid_Tabs -TemplateCategory: Grids -TemplateCategoryWeight: 90 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_With_Navigation.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_With_Navigation.Forms$PageTemplate.yaml deleted file mode 100644 index 5e857db..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Grids/Grid_With_Navigation.Forms$PageTemplate.yaml +++ /dev/null @@ -1,2583 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: 3 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$NavigationList - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Items: - - $Type: Forms$NavigationListItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Navigation item 1 - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$NavigationListItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Navigation item 2 - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$NavigationListItem - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Navigation item 3 - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - Name: navigationList1 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Hover - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Striped - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: grid1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tTRKie4ek06u8xMLdJsrcw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rTiyxxzbSEigk7ymXTkZ/w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HFpjJSW97UeKLfsjenV2rg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hfvpSNHoLk63u384cLKk+A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z2lgeCw9BEybAo35HyTXLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y+wxcvB09ECjtt0PRfESpA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fONIWBgxUU+tglKaLgR3mA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iUuDfRszskm78EzpgnEHcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4mseDclmP06mtZGn3IhDHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: s/0x50S4K06zE+zTpWyS4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PdO7+nFA3UyLiVmMr9GxyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: C8y+ffG8XUaQXM6j3XGkPw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: +y0tU7rvuUmnhQiNO6HTnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J1UuuZLqIkKI6Lz+UGycJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - TranslatableValue: null - TypePointer: - Data: v1SHVgp3dE2JneF64c7zEQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +vS0pYOf10CNobULBMu1rQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 9mb4BXxU8E+bWt/IgntWxg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aox7Zwg530WOnMi/GNfF+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hSkfF0lNDEaNJVi8g039Sg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2Yv0oLs3O0+3w1fmiCSmrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Nl6SmLZk9Uiu04uB4pdajA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dtmob40eykai2zswhCqddQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qC8pjq8EAUSKrC63tvMSBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B0w77sQIw0e65NyJBcoKig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: shcuTnnUEk+r0RYwKwbG2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WPxitkutS0WvLqAUgJVx5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HUFpnE7di0eNwBKB8Miwlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pb3ERV97N0mDpieSMSW1bg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Z1L32hZHLE2jE1/ZDrsvxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7fn/sl/qN0GhwCIFdBEwlQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: i96tkByyekODyq0yBmel9Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qXGR9kWjA0aYXO/7HEB4Mg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MM6qmBpP4k+0mBr8uFWiSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HyPTJe0cMkObqeAQpFB/LA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QlVFSmeXbk2cRzlZxU+e8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hVAi0m9Y/Ua8S04CCtGDhg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IE8hpLOGvke3G40K76GzTw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y5MII60aCEyG9Uhr8U6NFg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZrpEvq9MnUeMx5Xf1regvg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5h+6OlgPK0O2c3CRpw+kEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WzDXNI0I6E6zeC51e9JjqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ld8EE8MHgEuN2oi2TcxGLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o7f0jdyNskG3kE9GusNzdQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vXuejTXRvkGwaW8Y4ko/kA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uQmbEBhRzky6y5VurwzqwA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qcP6glIjnUaeaeF4QYXciw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: P+h333xE6EStW5xltDMoyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TNcQ2GuixkGdJeg2NRET3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bKtJuEwM4E+72OBUSkcxTA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: /dV6TMGjdECGfktV3OiDpQ== - Subtype: 0 - - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y+wxcvB09ECjtt0PRfESpA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: attribute - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fONIWBgxUU+tglKaLgR3mA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iUuDfRszskm78EzpgnEHcQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4mseDclmP06mtZGn3IhDHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: s/0x50S4K06zE+zTpWyS4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PdO7+nFA3UyLiVmMr9GxyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: C8y+ffG8XUaQXM6j3XGkPw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: +y0tU7rvuUmnhQiNO6HTnA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: J1UuuZLqIkKI6Lz+UGycJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - TranslatableValue: null - TypePointer: - Data: v1SHVgp3dE2JneF64c7zEQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +vS0pYOf10CNobULBMu1rQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 9mb4BXxU8E+bWt/IgntWxg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aox7Zwg530WOnMi/GNfF+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hSkfF0lNDEaNJVi8g039Sg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2Yv0oLs3O0+3w1fmiCSmrQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Nl6SmLZk9Uiu04uB4pdajA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dtmob40eykai2zswhCqddQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qC8pjq8EAUSKrC63tvMSBg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: B0w77sQIw0e65NyJBcoKig== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: shcuTnnUEk+r0RYwKwbG2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WPxitkutS0WvLqAUgJVx5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "yes" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HUFpnE7di0eNwBKB8Miwlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pb3ERV97N0mDpieSMSW1bg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: autoFill - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Z1L32hZHLE2jE1/ZDrsvxA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7fn/sl/qN0GhwCIFdBEwlQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "1" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: i96tkByyekODyq0yBmel9Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qXGR9kWjA0aYXO/7HEB4Mg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: left - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MM6qmBpP4k+0mBr8uFWiSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HyPTJe0cMkObqeAQpFB/LA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QlVFSmeXbk2cRzlZxU+e8Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hVAi0m9Y/Ua8S04CCtGDhg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IE8hpLOGvke3G40K76GzTw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Y5MII60aCEyG9Uhr8U6NFg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZrpEvq9MnUeMx5Xf1regvg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5h+6OlgPK0O2c3CRpw+kEw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WzDXNI0I6E6zeC51e9JjqQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ld8EE8MHgEuN2oi2TcxGLA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: o7f0jdyNskG3kE9GusNzdQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vXuejTXRvkGwaW8Y4ko/kA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "true" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uQmbEBhRzky6y5VurwzqwA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qcP6glIjnUaeaeF4QYXciw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: P+h333xE6EStW5xltDMoyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TNcQ2GuixkGdJeg2NRET3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bKtJuEwM4E+72OBUSkcxTA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: /dV6TMGjdECGfktV3OiDpQ== - Subtype: 0 - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ITfo/Z09hk64x59e7O5qyw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AQck87x1Mk+td7NQzMaSqQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1of6CBM4jkuX8ArzyRsa2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wVrnx6jsx0eeLNQiSr6wqg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "20" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W5wSTRZFs0GhYzQ+Kl1T8g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iY2h8B3Hx0yhLYJJYl4I5g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: buttons - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: C3SumEQJ0k2vOL9x+ffx0g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /Apg8m9xAUyip73JLdIXBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: bottom - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /JQ8BNzFhE+hnvgUZOe3ig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QzfqumvfXE26Fkd8UrDVYw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: none - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NaQP6n+uNUeWewby0/cPlA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dvuUB60DfU+MgRLYXFSS5g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mENNNUv4Ok+S6xaeaZW6EA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TP+sZPcF9kev33rz5l9aRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O4tRDh2LBEarHC8z7r0SYA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4WmJSydHgUSin/5o5PqL8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QIyvWi3GXUKC/7B7L4VN2Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oOMB1zl3lkaZS+0OztMS8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8jW5cLM5J0GMf/ahLexTHg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4TQx9ik+jUSmVA1TY9+hEQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /Q+q+Vy7LE2wyjllb00mUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 447XgT4MNU2Vp0X7/T8gTg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: L+yIRbeIy0SHAdrV77HQPg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Fyab3ASC3UOc5JMgEe/jAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: k2rN+51taku3NzlwywmRYw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YYeXp6lX2kitN2cmbK+H0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A+PQxA3FaUS/5w8TFRAC5g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9npF7duCHUSGwuJybDxwiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BtT22mmNW0ieOurf+4/NVA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jdpBquEo60WXT1/p+SP5bg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IC0lD9g5Y0OTmwYswrM4zQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: erfO7hc/gU6BR3fHhxHG5Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SNbitZxlYEu2n7MbD9CN7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qSjVJM59AESbUSd0dptVRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 0PwxYqvkTk+BCeQaRMG9+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: /uKeMI8kbUWF5zJ40P2S8w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "0" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pMcEJiywrkekB0rNy67GFw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aOyqvN1+Qkav2sKFiA/aQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IpAPS1aLdUuVtnNRzWodkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4d0hn06pOEuUjLDQNYGpIg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: checkbox - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mWxUEw1rHkm34tHnVCObww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Wl/zORQndkuszKsKGaGiRQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1XZhY96UdEiC0pegwcUyow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9PdtQYvni0uuSunQXLuW7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: always - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XLpLl04beUy/ScDKkXx9sw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gbArXbf+6UyTHXX0eLWC3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: single - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ynXljswj3UeYqATjjRRp+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UTF/tIlMgUOZMIUHeSjz8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8LzgKyQLaUqk9/f8KeCrqA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CdLCtohfp0u2MEgzipThfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Export progress - TranslatableValue: null - TypePointer: - Data: 1griNfshvUibCNpPqM32pQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PCzYWL2RAEiBzNacX/FIpg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel data export - TranslatableValue: null - TypePointer: - Data: eNsaXQBsg0Cm1zFEe1YRoA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WDgQJC6L90e7J3Vndhvlsg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Select row - TranslatableValue: null - TypePointer: - Data: LIhHxhtyIE+FmrLUkHL4Fw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: XbwqVQNWvkK+GYiZ1wpsRg== - Subtype: 0 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Grid_With_Navigation -TemplateCategory: Grids -TemplateCategoryWeight: 90 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List.Forms$PageTemplate.yaml deleted file mode 100644 index a07cc49..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List.Forms$PageTemplate.yaml +++ /dev/null @@ -1,407 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: List -TemplateCategory: Lists -TemplateCategoryWeight: 20 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Columns.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Columns.Forms$PageTemplate.yaml deleted file mode 100644 index 0cff13e..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Columns.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1117 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton5 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Action - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: lv-col-md-4 - DesignProperties: null - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView1 - NumberOfColumns: 1 - PageSize: 10 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container13 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mx3QvwCDvkyhvFkbabinHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bD7tSpaPxU+47m+xqFfvPA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gMkFLovtN0aRLLPazSBDKQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PdPJHxbv8E6AEbIKnV6Fmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 34YDJJvTJkuRV5eEO+Zniw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Tq884KHg70mBUoXxJrDozQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qe52TbcQFke3DO9AaZvOhQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: RojkiNqJjU6iRXToAnjCKQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3QfdIkbI+0+09DvA+zz+3g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: N5TPipSr0kOhQ75UFlSRig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BteKQAHwwUCk7Dk/XM9qFg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HAr+Qm+nrkuWDxiOkf6M6Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: nHrvgtY5EE2prQ4q274/Jg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PIup82Uz2UCujhIt/M8MzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MsU0CuyYHU64NJPGMCkZoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Svn+uh52REu8liNng1D1jw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: K+9CjSaLlEynwp3OH2eWJw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: l0zigR5Qc0WDsJYKFmz5jQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UvlQ3wTwQE2GtrwX8gj1tQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: nN78F/KCkUOiiJ7eOqTpRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2gllPcEKZkWUmF97rb9Glg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: v0M2dC5q4kejy5n1WtcA+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: slBM1rzhPkO9VI8fs0Ypeg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qYFTYAFOzkSCEplxJQUHBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Xi5YWwTn2kiT3P9orym+IQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3WApzr5V8EW/LxZ5JbFrgQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rkK4A3zbYkWytngTDyFP+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: w0IobPYn/kuPJOK2qJm1yw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yTxSWA4FuEul/ViQYlukZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cds5+g0PmE+60sudh/UM7g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 29SKyONFEky3IWrHpczhRA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: imgokIsg+0ODG/v/CJ65JQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0Ze6t8Y1WUazSf7I0wqSRw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xGvVNjWcr0qvIaqoBcuGag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: lWbZHVQjK0uiMtlOkt6Dmg== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: List_Columns -TemplateCategory: Lists -TemplateCategoryWeight: 20 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Filtered.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Filtered.Forms$PageTemplate.yaml deleted file mode 100644 index 8d2cbac..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Filtered.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1213 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 0 - Name: dataView1 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DropDown - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - EmptyOptionCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Dropdown filter - LabelTemplate: null - Name: dropDown1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ReadOnlyStyle: Inherit - ScreenReaderLabel: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DropDown - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - EmptyOptionCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Dropdown filter - LabelTemplate: null - Name: dropDown2 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ReadOnlyStyle: Inherit - ScreenReaderLabel: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: null - Name: datePicker1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Date filter - ReadOnlyStyle: Inherit - ScreenReaderLabel: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Search - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton13 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qk8BXFchOkSFdKu9CN3Fpw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8BYA0d8VhECuib3xQ3Pp6Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wvRdJcJUhEOxp1XdVB6+eQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /6ERZm6OW0O8k24y48l/jQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Mqyduc7E5E2Of3w5GX/utA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UgTikhS/pUGx+Pbk8nWytQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: SC0fHOuThUCKvKVX7WV3+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 8V6tg0gMS0+JvyHsuL/lCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DJIj6XGu10CI7XrrVzSUeA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5UFBrPNrckqsiSkbeNQQGw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JkF2oBzde0WAd7kIKYheAw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: W51U9dH96ky8gemPuH96GA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XOdMXoPXS0aa5IQzaJ+7LQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Knl/QtU/P0aTrKnhOv0ZZA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IAnMqBe9HUuoi4sklSTDcA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ACjY6kfO2EqZQMv6CIuSRA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Wk595Kxx6UyiGS9iONdWMg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cOiYV2OI7USsfdyX9+Jdfg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LV6qwiabI0GbjjHoZSAvJQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: YbC+zvElEkec4JZ8k78y7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CH9ZlW5ze0O4fxiAO18epg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: C9tD40n7Z0aQR660CgVUbw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ynZhD9xGhUevBWVYsuCOiw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YluGTsQfK0W6kZdKEwXERA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Qz2j3emd1EqaFCIwHcug1Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GCIfnlS+I0aekSazcencpA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: W/4Snw/szkSwKQDhX502xQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8T4nESlUUkSTjCh9sZKn/Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uS1byQ0cRE2drGf51+Exow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8RInXKYGkkCKzjqDSNe/CQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eZCILkebxkiOiVjb2TcZ4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: k2rlwJe8TkiPVXEGK/dnrA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wHCeCnNmuE+Fsj9jGbQpGQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 48czMw/34UmrvkvgE1o3gw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: WvEIJPKk5k+cGKch6NhXUQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: List_Filtered -TemplateCategory: Lists -TemplateCategoryWeight: 20 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_MasterDetail.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_MasterDetail.Forms$PageTemplate.yaml deleted file mode 100644 index 3f1bf4d..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_MasterDetail.Forms$PageTemplate.yaml +++ /dev/null @@ -1,941 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1204 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: no-gutters masterdetail - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: masterdetail-master - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: 3 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: masterdetail-detail - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: form - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: margin-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: form-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListenTargetSource - ForceFullObjects: false - ListenTarget: listView3 - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: First name - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Alice - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "+00124059134" - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Sall.doe@company.com - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: 11/24/2020 - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Biography of Sally... - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: List_MasterDetail -TemplateCategory: Lists -TemplateCategoryWeight: 20 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Status.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Status.Forms$PageTemplate.yaml deleted file mode 100644 index cc373c2..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Lists/List_Status.Forms$PageTemplate.yaml +++ /dev/null @@ -1,3088 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1204 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: link-back - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Link - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Back - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: pageheader-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Rounded - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ODZjCxZ+0U6yhAzoYiA7SA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: U/OOQqwtlk2+aeMhrty7mw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FmbGzzda6k2SDZOk3QV8ow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1LAndgP5cUqGf2TuwuWObQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7vBSEI/7D0S4jA0XwjJAmw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CdT1tfA2cE+7uqIh+f6bow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YZGqG9EUDUyQO4K0+ojctg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: LAhqv1I7BUKSNDkIE5rx1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8qkcGqosIkeuSV9heAFomQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KTRnKac+4kOQQP1/5wt00Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UNWTLuDjcUClxlM9idr6Mw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: P07M6pVqckiaMuG7NnPRtg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jJQ1oN7yZEy272SW3pg6AQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vgupYTkeiU6RCwCuKrP0tQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Id/UvGyNTkq5yhXzw+6IPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WNCuctoFHUOsFxDp5mzZ9w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 90RGYD0oWUCzgp+8r8tfNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 81NJyf4siUya8gdI7S38ew== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vUZGBwaAb0+0ym/kW9jhOQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: KuP8ADZeckKS8vEu+3Bzrg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YWoNXxd7kUiDOu0MTMqxrg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zvEjF7+e+keXglsXmLQ3/A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xSIRTC/EHke2ydbaWY6HDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6HsXOXW2Ck29W4WRt944Og== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VEnwkfjk/EioIARxpfLHnw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ramBgcadQ06GrS/VHro/+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g/gRezXfgky4upk1TQ++2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "64" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KbXNoQupfkC0uqHPJWHPyg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3gBlEkkPHUawK1eyKQCU0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: V9EhKgNTBkKTZOZRTNQAvg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sXOpvTebqkey7iSqGkCQkQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /6+iWggwbU2hVnG3IgLh+Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6R4EY5/paEyaRgkPxjcg/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: tsUqd/ELUkalBwa+qWTOwA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 1CHPzMTvZ0CLVXRlF7cO/A== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Pills - - $Type: Forms$DesignPropertyValue - Key: Tab position - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Left - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: PUkwwVIwMkq9JbjxrVwXkA== - Subtype: 0 - Name: tabContainer1 - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: All - ConditionalVisibilitySettings: null - Name: tabPage1 - RefreshOnShow: false - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bordered - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image11 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: u7sSvWBmzkOrtTPJGOlIOA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hSQtP26qgk2+xDeyIR4klg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3W0LPkuDK0a/tP9iirFzbA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KMndqYxlpkygMuyYwdFG9A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yKYrl05bK0OTc7yVjvXsRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jljnovkJ/UWqMCA+vysGWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MfBh5X92+UOLD9JVpUKokA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: E8t1QwdTT024zQMp3e1+Kg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: jsUfi/FbbkikllQbJUoYtg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: d2ix9SWtYU2OGYydX8GBXw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LsYSXnyRVUiBXn3ZLUeyXA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HyLCaKk4p06AeVc3ENlcTA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: O5X5m06yBkCOn5eIzNifCw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YnxCO1DOFESiBzSG7n2l5Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: bHNfUI/ebUO4i6IeMhqkEQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GWOrI976wEucDTcxZ/sYEw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ecQ5Jymo2Ua9kjDucs5A2w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Wkv4OP/+OE6TaqqbhLoAIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Yzp5xM1jk0y1oBbWI2Qivg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: TGQNCqMjX0awosqXWtE0/Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9SeKZ5MSI0uEXIgxYz/3nQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O/0VYpcgZk6SiTHxhqHSoA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2mS1wiJEdUm0/w5zMMyIHg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9Qxf4REFmk6bTzOrHKY6Ug== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6kj9MeRvvkKEssvZvjWhng== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CSix9K2PTk2c5Zc2OtXC1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: g3yLsThOFE+EQE/acVgNag== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: kfvpcjXzGUOs88EQcKZPAQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RwllxxZBIkyMPIFfyjmO7w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: At1zRGjh6EG9ZGJUR+B78w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TGx2xnTQAE2mtVAFWFD5Ug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wHvPb6aBZEeqTkrKGCb+kA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rGtObPIHIkerxssf6i7n5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zqN+3FNVZUa/hhsOvn4HBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 6sQBI9PcqE2nvvkmqS6XRQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Status 1 - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bordered - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView4 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid4 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image12 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZSOsDF62r0yxa6693vaNZg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LVbtaC/CjUC/ZewnSjSn9A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TjDqlyRxTUqMfLhnUZvJPA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ge2Km5OcfUOwlir4cPV03w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vIOspPyuDE6c8OGjPKpbmA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0SvCmyrnYEaV7lEMFSqmFg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LuhCftySyken1Lwh+8w/4g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 65F/povZ0EifvSZrpUzYBA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KIXnCjuRpkCVVcBJKWv8Ow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: h5szYyRBIEC6C4m740AIJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Iv6B2wx9YUmzbJaAIQ23tA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Jr7geK5vkUicMpLSQsDHLg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rI7j3CSIdkOt+fbCyoG9Lg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZTZED89mCU2LjrNR9/ya4A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EQDWUunh1EO5ywdZ8bWvRg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 05dlwu2aEU+a3FxpVC8lLA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pC4B4ZCekECIpSBh99Gi4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YshKJM2Pm0ynv6v0PDm6dA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w5iZ6RpxMEaiVGzUt1nKsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: iKgM/467rUW5O8AKtm/EkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: R/QccIbMREqhId31MG1OCg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7uAGaMbbfEC1n+Mrtdp5cQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Tg0xxYLIN0isR5xWP/16dQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: v6h6qHTQ3kmZIloPz1RPfg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XwxPfM7H1kKmigYHIONC1A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: azlDLT9EyUa/lPdX6mnoZQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iIkSv4yeRU6GqrvnZg8wcw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: x+7C56AtbkOJBbYk19oJIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EjLDXv/MXEKPszQS/+f1uw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3EkHzxJeAE2INq0cDUzf5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WpnI8zNDT0OdJ5Zl/5aWdw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GghZDOfc9E2gzD4P3OPmTw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3YHLu6OeyEC0LImmAnitBA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DBbDhrWmdEGYZZr8Ijt4ZQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: e/nfg/uFb0KiohoIFD+nWQ== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text11 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text42 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton6 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Status 2 - ConditionalVisibilitySettings: null - Name: tabPage3 - RefreshOnShow: false - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: background-white - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Bordered - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView5 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid5 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image13 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IyGFWDGS90e0u7ovlRkKSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7gTizJVQWEObmVLSXwd3Pg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: uSvcmpmO5U6stiRpYyd5Zw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: lAgMfcecKUGXfHe/XGESCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NohzmeoDCEqsU8rBgs3KFQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iXw++aNs8EalSqieq16NFw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: G900FtbtLEe+g2dd9TCgfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: w1m9XhLVXESFIYOA/GVapg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ByJmpy3jCkOk9nxuYvgatw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TdK7inMquki76hJMgDGmFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VyDwKg+Tq0CTLPfTqQXMpQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LOjJa5emdUyauAEe4q++oQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +Jqm6OYgX0mSPVCIhEQp9Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +zIG/Cx4nUG+4+45eHmGgg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tY3rVBI+okesQs456VQ84Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: VaNhUeOKr0O6wrOZN6UZeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hZKK7RZsfkSgPm1kMARHrA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Dwsne7xP+kac0E4oSVpCKw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VTg9L945Q0aXFBi+khuAxw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: V0jZGzsw5UC/pLoNTopnkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2lykV0memkysE+kya/mRHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GQ+NkmpNU0CZ6PVb4U7L8w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9R3zf2OgPkOQGVUR8e2C9g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4+605wy620WzlwFqrCLrxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Fg4AUFsuCEmYIW01NAXt7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YOSIhH5Ee0in+f5MfHPgTQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: E5rFdgncREWObdKZKru4DA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "44" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cm339UCzcEa22zwvpLudzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aN/UYJEpr0e4np+84+1uww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rzws6g3cC0GVfb9zKVxfWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5U+2pqJjZEK0Llqenv7hxg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1ZMzhbKaQ06kS+HqLiwBvA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ltk6GkztgU+eIwj34kuCQQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yEnhW1rbEk29TY2R5l8q1w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: O9lXu078AkmXFUafTjf08A== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text12 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary text - Name: text43 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton7 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Menu Right Icon - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: List_Status -TemplateCategory: Lists -TemplateCategoryWeight: 20 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Logins/Login.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Logins/Login.Forms$PageTemplate.yaml deleted file mode 100644 index 19763b5..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Logins/Login.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1092 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: spacing-inner-none h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid5 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Cover - - $Type: Forms$DesignPropertyValue - Key: Hide on - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: Phone - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VHWL9phEWkq/8B7xIUhP4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2w5qwH/JsE+7OYRGKVPFbA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: G/tKORu26UaxH7RrCh3tqg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: HJB//tyOgEm4EUHxsTw9HA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TI0fIm9zOEyBBdkzoWRoFg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: jiUueWNaZkiOxG3VHSfo8w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QWc7T2AQ/Um9qdO/GTe1Pw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 5VXABNOpSUSbSJv/XGv1xw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: etyEeryTk0m4urY04OQDFQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9wETUU6oW0mL7C9aALoweA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MsKSaQqFGUK+3JJpz5tK4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 07YM9ZcURkGa73zjhPk60g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EIjxtSQjAkaVkONj+hbDSA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: seNXxEOEsU2/g0c0emUULw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: h1SJkFsc5km0eMmjuUgpHg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9IPwa46tN0iLtNSatm6g9w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aWPIRnBf2EeEpOYR6uXjrw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9yxh+t0iO0CamoquiVKW0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Z1KzbtD8vEO+zWCp+bG0ww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: ORzKS5goZ0CW+ByDvEuIew== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: dWJluKE2YE+fc+zm8D60Rg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: I3gvO077Y0GPYfVVpkjOig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ADlIDo2f2kGAXoGrdM3BjA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: syMVi6jiTkO8qaqU1FNv3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: st89wFDkFkS8YM/mLD7rdA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: P497S6F/wk+5w+9J2ZpmjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LovRptkF10SHppHHm5Mv7g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6TzhE1YVxkmzj44F7yQp3w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XE+inm21XUqLCK7zw8nG3Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IfG8cq2YJE6/qItcgAXgcQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ahGhEwgepk+kdR1/BAb5GQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zrlNmKIuI0e3xhVDRqF6Pw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: DxVO4TXd4kyY2V/tBWxGHg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3UDlHmZnZUiNZvpMIB4P3w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: SSggLk5zdEmZuTdxiXVi4A== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: h-100 col-center - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: spacing-inner-large - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid6 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container8 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Sign in - Name: text41 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text42 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container11 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$NanoflowSource - ForceFullObjects: false - Nanoflow: Atlas_Web_Content.DS_LoginContext - ParameterMappings: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$CallNanoflowClientAction - ConfirmationInfo: null - DisabledDuringExecution: true - Nanoflow: Atlas_Web_Content.ACT_Login - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Sign in - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView1 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: form-group - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: "" - Conditions: null - Expression: $currentObject/ValidationMessage != '' - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Atlas_Web_Content.LoginContext.ValidationMessage - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Atlas_Web_Content.LoginContext.Username - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Username - MaxLengthCode: -1 - Name: textBox1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Atlas_Web_Content.LoginContext.Password - EntityRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Password - MaxLengthCode: -1 - Name: textBox2 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: form-group - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container10 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: false - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Login -TemplateCategory: Logins -TemplateCategoryWeight: 0 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithDataGrid_Select.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithDataGrid_Select.Forms$PageTemplate.yaml deleted file mode 100644 index eb2eaad..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithDataGrid_Select.Forms$PageTemplate.yaml +++ /dev/null @@ -1,165 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Select With Data Grid -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$DataGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - Columns: - - $Type: Forms$DataGridColumn - AggregateCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - AggregateFunction: None - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AttributeRef: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Column - Editable: false - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - Name: column1 - ShowTooltip: false - WidthValue: 50 - - $Type: Forms$DataGridColumn - AggregateCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - AggregateFunction: None - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AttributeRef: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Column - Editable: false - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - Name: column2 - ShowTooltip: false - WidthValue: 50 - ConditionalVisibilitySettings: null - ControlBar: - $Type: Forms$GridControlBar - DefaultButtonPointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 - NewButtons: - - $Type: Forms$GridSearchButton - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Search - ConditionalVisibilitySettings: null - Icon: null - Name: searchButton1 - Tooltip: - $Type: Texts$Text - Items: null - DataSource: - $Type: Forms$GridXPathSource - EntityRef: null - ForceFullObjects: false - SearchBar: - $Type: Forms$SearchBar - NewButtons: null - WaitForSearch: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - DefaultButtonTrigger: Double - IsControlBarVisible: true - Name: grid1 - NumberOfRows: 20 - RefreshTime: 0 - SelectFirst: false - SelectionMode: Single - ShowEmptyRows: false - ShowPagingBar: YesWithTotalCount - TabIndex: 0 - TooltipForm: "" - WidthUnit: Weight - Form: Atlas_Core.Atlas_Default -Name: SelectWithDataGrid_Select -TemplateCategory: Select Entity -TemplateCategoryWeight: 160 -TemplateType: - $Type: Forms$SelectPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithListView_Select.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithListView_Select.Forms$PageTemplate.yaml deleted file mode 100644 index 28e73c7..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithListView_Select.Forms$PageTemplate.yaml +++ /dev/null @@ -1,129 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Select With List View -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView1 - NumberOfColumns: 1 - PageSize: 10 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - Form: Atlas_Core.Atlas_Default -Name: SelectWithListView_Select -TemplateCategory: Select Entity -TemplateCategoryWeight: 160 -TemplateType: - $Type: Forms$SelectPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithTemplateGrid_Select.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithTemplateGrid_Select.Forms$PageTemplate.yaml deleted file mode 100644 index 39b1cd7..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Select Entity/SelectWithTemplateGrid_Select.Forms$PageTemplate.yaml +++ /dev/null @@ -1,92 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Select With Template Grid -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$TemplateGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Contents: - $Type: Forms$TemplateGridContents - Widgets: null - ControlBar: - $Type: Forms$GridControlBar - DefaultButtonPointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 - NewButtons: - - $Type: Forms$GridSearchButton - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Search - ConditionalVisibilitySettings: null - Icon: null - Name: searchButton1 - Tooltip: - $Type: Texts$Text - Items: null - DataSource: - $Type: Forms$GridXPathSource - EntityRef: null - ForceFullObjects: false - SearchBar: - $Type: Forms$SearchBar - NewButtons: null - WaitForSearch: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - DefaultButtonTrigger: Double - IsControlBarVisible: true - Name: templateGrid1 - NumberOfColumns: 2 - NumberOfRows: 3 - RefreshTime: 0 - SelectFirst: false - SelectionMode: Single - ShowPagingBar: YesWithTotalCount - TabIndex: 0 - Form: Atlas_Core.Atlas_Default -Name: SelectWithTemplateGrid_Select -TemplateCategory: Select Entity -TemplateCategoryWeight: 160 -TemplateType: - $Type: Forms$SelectPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Card.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Card.Forms$PageTemplate.yaml deleted file mode 100644 index 96e9c41..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Card.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1082 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: TXiALaBHOkeQVpgsgvn+0g== - Subtype: 0 - Name: tabControl - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 1 - - $Type: Texts$Translation - LanguageCode: ar_DZ - Text: Local Users - ConditionalVisibilitySettings: null - Name: tabPage4 - RefreshOnShow: false - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView5 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox20 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox21 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox22 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 2 - ConditionalVisibilitySettings: null - Name: tabPage5 - RefreshOnShow: false - Widgets: null - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 3 - ConditionalVisibilitySettings: null - Name: tabPage6 - RefreshOnShow: false - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Tabs_Card -TemplateCategory: Tabs -TemplateCategoryWeight: 100 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Centered.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Centered.Forms$PageTemplate.yaml deleted file mode 100644 index 68ade00..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Centered.Forms$PageTemplate.yaml +++ /dev/null @@ -1,2888 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Pills - - $Type: Forms$DesignPropertyValue - Key: Tab position - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 - Name: tabContainer1 - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 1 - ConditionalVisibilitySettings: null - Name: tabPage11 - RefreshOnShow: false - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: iZWI4tlZH0ybBfv1zp/rfg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: l+H33kZehE6JoDm3MeqS+A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: b/QtQrKJ4EOouIiGRPHSLQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6+taB72BLU+KAZttgy244Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: x2/HD0LyLEu+GWRvI4QrhA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ALMiPozbpkemtrGk0FTmEw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: k0RDJuAV3E22zPzy1iCJRQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: jOL51372zkOOgewNnCz6tQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kFWsUam65ECpIujCYwam7Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: smVUon5mmUeKVf4GWsQRZA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sDrgj8ROBUOE7Q9i7OCCCA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ReUE+Pn0Vkqg0ORIvcYmyg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TErgKUY3s0O8HzO/xqJrDw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EUnVrbCkNUyj6m+ybUONNw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: kPQoT0uXUUGUSl9tOoLefg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 552pJx4SdkGiB2MHEwCoxw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7AR4/JyZs0uhSQA5BgS2Sw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nP0jmTV2oUSv4MzBToTfSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6pybITac/EKx1SxWF9yjNg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 1lf+ABwT3Eih6FDmaVgFCw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BHBC2TS/GU6CKspJollfeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: IIj2jj0qDUekkz/HPcbQkw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IIG/vWnB10qRMK67cmxwKA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: v9VZrMX4y0u/JsSwT0wO7A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9X64odwCs0iFucRKGAbKUA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fzceoEL8HUS+TgMYw0s/4Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: CxG/iiL95UyJxB0CNnDXxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eTi7JELTYkmSvnazYp/AeA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l9sZvGS5Y0ygVHMTlFaPrg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: hOoW55q2hkyHpoOdk4OxmQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: BKQUzlm+N0aWn8TUBG7l9A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 6XNoPeQ49EWsaypv6HDs0w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: OSObxseknU69Zkm1n9XceA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: X1izIbJYwkGFeS/uSJtNHw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: VRpd2uQ4u0uKqQCxy/6A7Q== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text24 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vCDMTxEuP0aJ4vIFIW8M2w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M7gf9I7xREOBqLKzUtyTUQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Vb1/gCFhbUSFCMgkzEorsw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TYvEm3Nt7UCQ1aztXL1WMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +caWgdbccUeEM9L9KS8z0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Nm0ZKdAEaE+gKnml2VjrzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5rW62tusJk+8jaY1WTdDZQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: QM5QFgRLq0mKs43lTp9hPg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: frNcbt5u9E69TXHO5elrxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Z/VZabYoUEmGAkrJdh3qCw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cbSMm0OXyk+i7UiDmCLeAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +qPHl6cqH0eFoKcSex4UdA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UgTJ6Mnnj0aouufZpmQsYw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: suJDp7DkrkO7X5xqVNZtoA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZRL1aCZdGUWYjfbgvOSGNA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8mijydVB4UCJ81b4XW+pZQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QwVoD17k2EiByEm2C/SAAQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Heuy9WfpO0+uR/exoDkVWg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: i2xwLNVI0kiFYvEBTBKlbg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: p1MVAeZeckm/F6f1PPecYA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UbM+apwaikumdIY/hqlbiw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aB3vzcCp5UChdX8h+BBqzA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 76Uq1gRmXkqO7al50MfZGw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 23CYII9WukuKx+DDZOilog== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 4VFo9ps0SUmXUYh1TdTETA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SlOaY+FHoU+49rH4NDJPGQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9cYiD9afj0yxixqdjk0jIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /Vl5pugjxUioCIAL08kjrw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IqtK7neZZkGd+DFoslmsiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: c04NDoIYTkiG45szDaJKpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1VU7rzeXT0W3hITlCsXq4w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 20cVXlJQkESkg7n6UVJKrQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: igiJ2Q4iF0CpMDA29Lrp4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: vGAK5eRzR0mHWfEXRQPzDQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: oca0UaIvMEy2+N5BMsHmfw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text25 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text26 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image3 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: o99YluS3tUWWHGhwysyRcg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MWn54d0fdUKtP0OE9qIzAQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PF3ea9s9BUGwCCZ/ekisKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DjOtyXgR0kKTx8QQe+O2dg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HAvqwixk30ue9jjl6loSPg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: enIPk/IKDEaKSmW106PnSg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vSeJAoGoUUuRuaLOFowTTQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: JijWnLMSSUKyQBTyY4iQlg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yA3rWMG58Uq8x8OfcU/7Aw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ZgR97p4FAUiuo5lbOFzFaQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NjOJVdH/e0yaEHJz+umeJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: K+V8p0/cVkiLJmLMs5+3Ww== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: VGiSj7TNqU+eWoNngqhwiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: itxQ5yTPmUOiG2E4NWm/Rg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 17JIvLCMuEW+LCRPEkmR6A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B/zx3TaQ50ymAo5jr0jalw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 6oDe1Qkk0E+NB+gST8QM5A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: H8WoNtyFLkmiQnmLhuYf6Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2CwSVhG73UOo1pdxL1nV2A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: I9oLwsDbp0ys2CRGtTwa2Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UqAaQrZhD02h7r47o7AHMg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2t9ZjD41a0aAk12X7gXpZw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Wjt+xhgeCUS0xDj+1AL+rA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: QZ/RGOjtdEK0X4x1wVQGag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oTspadh/hEypnrq+sh3KGg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: yMUdj43bf0CZ6Mja7R7qlw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j5nNKu5up0GNSq87Nt/yxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: b34bqWj2WUGyKGXJ76Nu3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xqklb09+MkCN3/9j9NLKnA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: nBzUoDKHEkmExfUG0oN+XQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ixukY8N6G0yGdQp0xeuAHw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PSYTEbCJK0+z/UwUOZyIyQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MwOo108Se0aHYNrBA6ZRUg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9JS+H+EPp0Go9vUig7Tvuw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: JJxZ4enUGk6yE3Z3fd9aIw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text28 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container8 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image4 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: UhlD84AIOEKIuwhAFMlWGQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: RU1BlobMq0KWfevOaQu7nw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 9ACblqzg1Eu+YQ1/mTiJoA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iyACYf3INUOTxhy11xnuUw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WGlFElY7dE28QqqsTtqLUw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: qwYKavrutE2AC6K2niVi1Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NpTGV87I1k6kanT7TOb23w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: aolGDpgM40G0x7kpBx0gvA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2FXDTmQTpUivtA0rrxUwLg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0OwwR1sp7UC1pqwu4eh8tQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EdFbrKONOUiLvugTEeSBog== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: EskHNEpIukyvAFtn9sw5QA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hcHjgPaEFUC3ycqizTIbUg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: eSSMVOIurEiTGzUwGuvEwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wjIy/F35xUmUycIdwAvVmg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 3ULnH3CVI02jtxGnzNzteA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: loF4atxmvkSqOD5TdOwG0Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 06nhVgaFckSFsDTyNudwfQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1JLhidFuQUe56eF4Zxy/dw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: m7wL3xBHu0KUOT+6RTSj+g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NYjs4sq6TESkzTMeJuRSEQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GVFuSFSsSEaMI9wjCC+TvA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PKlfLRE0Q0uuY5571zx3/g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: x4cdMsfX5UWeXvm+nbCc1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z7raRty8ski9Z3CA3gnIHw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: h18zp8qZcUOVRZRbtc+UwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yQHHKSA5nEiGJlypXQVPBQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 75m66Yv7uEWe4JmN+n/gXQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LUrYa31fSU+edCCUIgKtIA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WfEoKjPlxkaRhwsoK4wyqg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +xnI7ytPMUOlHt2krG2VDg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: mdx5OeXTSUS9PLm63ABQkQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: WmRcqT782E2LXe88170scQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: R+sF1zxCE0iSjlzEKXW5rA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: rLVkhRveHEK8+mji8PEalA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card-body - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card title - Name: text29 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 2 - ConditionalVisibilitySettings: null - Name: tabPage12 - RefreshOnShow: false - Widgets: null - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 3 - ConditionalVisibilitySettings: null - Name: tabPage13 - RefreshOnShow: false - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Tabs_Centered -TemplateCategory: Tabs -TemplateCategoryWeight: 100 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Fullwidth.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Fullwidth.Forms$PageTemplate.yaml deleted file mode 100644 index 6e82fcd..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Tabs/Tabs_Fullwidth.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1058 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Justify - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 - Name: tabControl1 - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 1 - ConditionalVisibilitySettings: null - Name: tabPage1 - RefreshOnShow: false - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView5 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox19 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: 12 - PreviewWidth: -1 - TabletWeight: 12 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox20 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox21 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox22 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 2 - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: null - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 3 - ConditionalVisibilitySettings: null - Name: tabPage3 - RefreshOnShow: false - Widgets: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Tabs_Fullwidth -TemplateCategory: Tabs -TemplateCategoryWeight: 100 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Wizards/Wizard_Form.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Wizards/Wizard_Form.Forms$PageTemplate.yaml deleted file mode 100644 index 66e8392..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Wizards/Wizard_Form.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1058 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard wizard-arrow - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-visited - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container18 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton18 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-active - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container15 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 2 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton11 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container16 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 3 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton19 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container17 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 4 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton13 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: null - LabelWidth: 3 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: false - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox15 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textBox16 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Previous - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Next - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Wizard_Form -TemplateCategory: Wizards -TemplateCategoryWeight: 130 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Wizards/Wizard_Form_Centered.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Wizards/Wizard_Form_Centered.Forms$PageTemplate.yaml deleted file mode 100644 index be28e29..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Responsive/PageTemplates/Wizards/Wizard_Form_Centered.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1190 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Atlas_Default.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: pageheader - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page header title - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: pageheader-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard wizard-circle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-visited - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container10 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "1" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton6 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 1 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton14 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step wizard-step-active - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container11 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "2" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton7 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 2 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton15 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container12 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "3" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton8 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 3 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton16 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: wizard-step - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container14 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-number - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "4" - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton9 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: wizard-step-text - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Step 4 - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton17 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Previous - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: None - Weight: -2 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Size - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Large - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Next - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - LabelWidth: 0 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox14 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Email - MaxLengthCode: -1 - Name: textBox15 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textBox16 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Atlas_Default -Name: Wizard_Form_Centered -TemplateCategory: Wizards -TemplateCategoryWeight: 130 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Security$ModuleSecurity.yaml b/resources/App/modelsource/Atlas_Web_Content/Security$ModuleSecurity.yaml deleted file mode 100644 index 03fe35a..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Security$ModuleSecurity.yaml +++ /dev/null @@ -1,5 +0,0 @@ -$Type: Security$ModuleSecurity -ModuleRoles: -- $Type: Security$ModuleRole - Description: "" - Name: UserRole diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Blank/Tablet_Blank.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Blank/Tablet_Blank.Forms$PageTemplate.yaml deleted file mode 100644 index fc36340..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Blank/Tablet_Blank.Forms$PageTemplate.yaml +++ /dev/null @@ -1,23 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Blank -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: null - Form: Atlas_Core.Tablet_Default -Name: Tablet_Blank -TemplateCategory: Blank -TemplateCategoryWeight: 999 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Dashboard/Tablet_Dashboard_Springboard.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Dashboard/Tablet_Dashboard_Springboard.Forms$PageTemplate.yaml deleted file mode 100644 index 11db1c3..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Dashboard/Tablet_Dashboard_Springboard.Forms$PageTemplate.yaml +++ /dev/null @@ -1,959 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Equal.Left - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero springboard-header justify-content-center h-100 - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Dashboard title - Name: text9 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Equal.Main - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: springboard-grid h-100 - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: text-danger card-icon - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton17 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Danger - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text3 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton18 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text4 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-success - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton19 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Success - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text5 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container5 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton20 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text6 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton21 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text7 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: card springboard-card justify-content-end - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container7 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: card-icon text-primary - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - ConditionalVisibilitySettings: null - Icon: - $Type: Forms$IconCollectionIcon - Name: actionButton22 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Folder Open Icon - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Card action - Name: text8 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H5 - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Tablet_Split_Equal -Name: Tablet_Dashboard_Springboard -TemplateCategory: Dashboards -TemplateCategoryWeight: 1 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Detail Pages/Tablet_Detail_Masterdetail.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Detail Pages/Tablet_Detail_Masterdetail.Forms$PageTemplate.yaml deleted file mode 100644 index 8f31821..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Detail Pages/Tablet_Detail_Masterdetail.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1448 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1030 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Left.Left - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView1 - NumberOfColumns: 1 - PageSize: 10 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid8 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 7RQBfmC3C0KYSgeKNDAYeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: g40e3SlnxkmIRd+YVlr4YQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w++kx7bPhkS2mOf5ZORuMA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 7zZ4A7dBUkqoYUh5+NFQ0A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 0f/6W+GKA0+5Xufx5U/gYg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: FLy/K1W7SEO5XJb4TUo8ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XSWK1+ll10uq3hx7HyoXCw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: sj/0vuBsCUyPRHXTVPkxWw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: XbbAaQD7Dk2/7WQ8yqpv4A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: A0g6UYdzw061CCNoR+K8uA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QyOKL/Oy8E62s6f/x8QsoQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: a1L1lJ4ep0qHOFw3RXXe/A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RMCbOlOgxkG0FAt3y1dTLg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ql+B+wOQNEKzmDB5pGERcg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: sNetx4qSLkG/he3uooWb+Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: J+pzxS0fEUewLRIYxbbXwg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: MtWJ2504sUSDNfaWturApQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NqlJ7Lqdn0yXAr8r8lxmHA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Lr2Vfvc6gkaXvmAL9wuOow== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: QtyEtDilBE6kdl2Clf0log== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zxx8Tzu0UE28a9APFOsvVg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1yme8iq8fUCKm7SXwDSN1A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AWiQzAJZC06e7IQKH/u5IQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "40" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: aHTcpQy8DE6jEl+1gj84jw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Xmyp32tgR02m2mDRFVvu+g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sxuynAIFIkqKIjTy25hMDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HMtRxZqmI06F8sZcKImAQw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4MBzC02vT0K3vcqKFc5Heg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: URAYO0kQvUmJGNMwiuAgeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1ct10wcDPEWol7uftk3apw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: tK0k5shPhUeoIqIiYIcuVg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: NOcJxf7qlUqscSArfFj9Zg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: z2lLsvAJ902U9oop8mPyuw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: UCFxB+q6C0qgUVVQjERH+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: mpLuCVGDGEuh5lbPz3iyLA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text29 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Left.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: border-left - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Background Secondary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListenTargetSource - ForceFullObjects: false - ListenTarget: listView1 - Editability: Always - FooterWidgets: null - LabelWidth: 3 - Name: dataView1 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image fit - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Cover - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image3 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LcXbueN8OESJ1inV7pTINg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fgoNV/a1dkylJaXSRQpqWA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: qHU7M/0kt0GMwH4sPG4//w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: YGKbHJL6rEqf1McOU0fVMQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: eEobDs6yF0SwWE35O8JqvA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: uzWpZ2LTPUa7g79SsCSdwA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 2PrkEHg9LUyc1rFuj1Wf6Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: S8P1HokuEECK6VeEvU/Rjw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: TMJ85w/nUka9o08VSIuW8Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: R+VW1JVD4UmyRrX8qHWJPw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q2+rOsP4OkaGbsya7Nx4aw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0h5cco7mBUWUvAvD+FC2ig== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: oQAxmz8uVUyko5XCAal1yw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: x2HRV1ejs0+fCpAKCpK7Ow== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: A9Wkr0ZpQkqFYxYw8Og6FA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: CC4uiZ+fVEaQ7tkF0mcWUA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vi6uS8Ac+UqZ0E1Ut9bx3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: cctbMZ+G7EykFArUe65gLg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: AxWsoRZaGUuC8pX01KjMKw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: B4g000hAOU6Mcl67Q4TAJQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ne4vFTa4aEa4VPpMmUsnfw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: percentage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y4xyjl4QdEO9QFCBHcDjXA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: LbXtGmZij0u/Vfz/KYAO0g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Zm3vcJWnSU6EIB8O6vwEYQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xPVvpbhBuUioWxBF/41hJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: B8QSUYjC7EKI4VmZL0Kn2Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wvbQfQIP2ECFf6sxUUOWWw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "250" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 0+Vpxtsb3kio+oTVYtnLsA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: hBqlN8EZo0Wv21GwtgB3Zg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: iFuPAClviUya0PMQG0oImA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vhM8NkR5bkGM9zf7SYBo+w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TEXy8jyAxE6PdxM8nnyo4g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: EVryypT0VUCyU1vJX8/mWg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Z64/bCL+Fkq840s1SXq6Gg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: MQYTaPN4LkqdNytYB5bXXw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Main title - Name: text23 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H2 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Weight - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Normal - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Secondary title - Name: text26 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, - sed do eiusmod tempor incididunt ut labore et dolore magna - aliqua. Habitant morbi tristique senectus et netus. In nibh - mauris cursus mattis molestie a iaculis at erat. Posuere morbi - leo urna molestie at elementum eu. Urna duis convallis convallis - tellus id. Lacus viverra vitae congue eu. Arcu non odio euismod - lacinia. Id leo in vitae turpis massa. Donec et odio pellentesque - diam volutpat commodo sed egestas. Interdum velit laoreet - id donec ultrices tincidunt arcu non. Nibh tellus molestie - nunc non blandit. Tincidunt arcu non sodales neque sodales - ut etiam sit amet. Facilisis mauris sit amet massa. Lectus - urna duis convallis convallis tellus id interdum.\r\n\r\nLorem - ipsum dolor sit amet, consectetur adipiscing elit, sed do - eiusmod tempor incididunt ut labore et dolore magna aliqua. - Habitant morbi tristique senectus et netus. In nibh mauris - cursus mattis molestie a iaculis at erat. Posuere morbi leo - urna molestie at elementum eu. Urna duis convallis convallis - tellus id. Lacus viverra vitae congue eu. Arcu non odio euismod - lacinia. Id leo in vitae turpis massa. Donec et odio pellentesque - diam volutpat commodo sed egestas. Interdum velit laoreet - id donec ultrices tincidunt arcu non. Nibh tellus molestie - nunc non blandit. Tincidunt arcu non sodales neque sodales - ut etiam sit amet. Facilisis mauris sit amet massa. Lectus - urna duis convallis convallis tellus id interdum.\r\n\r\nLorem - ipsum dolor sit amet, consectetur adipiscing elit, sed do - eiusmod tempor incididunt ut labore et dolore magna aliqua. - Habitant morbi tristique senectus et netus. In nibh mauris - cursus mattis molestie a iaculis at erat. Posuere morbi leo - urna molestie at elementum eu. Urna duis convallis convallis - tellus id. Lacus viverra vitae congue eu. Arcu non odio euismod - lacinia. Id leo in vitae turpis massa. Donec et odio pellentesque - diam volutpat commodo sed egestas. Interdum velit laoreet - id donec ultrices tincidunt arcu non. Nibh tellus molestie - nunc non blandit. Tincidunt arcu non sodales neque sodales - ut etiam sit amet. Facilisis mauris sit amet massa. Lectus - urna duis convallis convallis tellus id interdum." - Name: text27 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Tablet_Split_Left -Name: Tablet_Detail_Masterdetail -TemplateCategory: Detail pages -TemplateCategoryWeight: 2 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Forms/Tablet_Form_Details.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Forms/Tablet_Form_Details.Forms$PageTemplate.yaml deleted file mode 100644 index 5431874..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Forms/Tablet_Form_Details.Forms$PageTemplate.yaml +++ /dev/null @@ -1,545 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1199 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Equal.Left - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero h-100 - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Left align as a column - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text9 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Equal.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: h-100 - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Background Secondary - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Center align as a column - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$DataViewSource - EntityRef: null - ForceFullObjects: false - SourceVariable: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox13 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$DatePicker - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Birthday - Name: datePicker4 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Bio - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Tablet_Split_Equal -Name: Tablet_Form_Details -TemplateCategory: Forms -TemplateCategoryWeight: 3 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Forms/Tablet_Form_Master_Detail.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Forms/Tablet_Form_Master_Detail.Forms$PageTemplate.yaml deleted file mode 100644 index a6b4dd2..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Forms/Tablet_Form_Master_Detail.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1255 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1198 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Left.Left - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid8 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: card-image - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: ZrSx4y1UqkSRO1xUYQJYhw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Cx2lE8AVZ0KWWcvxINV1xQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IdG/dV/umEigXjrmZ4+fsw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 2tbRyA3k3U6KvEAOoWap9A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +SsDekr5NkWR5hN9uiTONg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wpiPntd9zUKyjZW0w84kvw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: QBQRAH51zU+DCUoVvn3MiQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: vXmnuQO23k6dVK8rU09q9Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3SHc6aP5QkGLmmOq2Nh6Eg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ga4Dhw0AP0Wjv3Wptn3Dnw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xvvlo7nvEk+ZbCX2eLSEfQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /ZMzL9oeW0qm/hFTFGb9rw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aaxovmPHMk6OhIwEv6niYw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wWYHejTd+ku6VuG6tlQlzQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: lKQtfyVeuE2Rzn0JPwFtJA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: zmY7Cb6idECy0RotxcSq1g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Q9++2uF3TkOECmvTJOf6yQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: sxyXMwiRL0W4aOeH5xTQog== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: d4zWaOHgKkGzfFIkavSMSQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: Jzrs4DQCAUa4fct31/buSQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yDmsdCqPgEaSFLFDERfa9g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: dksXTUJyZECv6S76fAm1Lg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8zi+xtmX8EuqI0De+8Wfjg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "40" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5arrO0d+PkKo8ol51olf3w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: i0WFmolKjkaRfHeeu3Se/Q== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: auto - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AlPh6m/rK0mbQU9s1E0yAA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zJYdmQx2w0Kb7Ert2ignxA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "100" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: T15ptfFk5UqTFf6uib3LLg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: wchH2ns07ESe6mOWyeCb+A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5oCEDYKFoUuSxPpDZ5iaDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: cnx1kLbsvEO5IXBR/MQYug== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /1DxZLCQ10ahmDwewcEEBw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: d6TsNzJhAUSmkwmoIQLvgQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: y2ZsI0GCIk6XjL5t4f3NpQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: 8/jd6/6wtUqvu62nT84Wog== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: card-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: List item title - Name: text29 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text30 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Left.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: border-left h-100 - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Background Secondary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container2 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid3 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: formblock - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container6 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: formblock-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Request details - Name: text5 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListenTargetSource - ForceFullObjects: false - ListenTarget: listView3 - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Submit - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton4 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 0 - Name: dataView6 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Name - MaxLengthCode: -1 - Name: textBox17 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Phonenumber - MaxLengthCode: -1 - Name: textBox18 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: M - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Success - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Knop - - $Type: Texts$Translation - LanguageCode: en_US - Text: Approve - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: None - Weight: -1 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Full width - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Danger - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Knop - - $Type: Texts$Translation - LanguageCode: en_US - Text: Decline - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TextArea - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - CounterMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Editable: Always - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Comments - MaxLengthCode: -1 - Name: textArea1 - NativeAccessibilitySettings: null - NumberOfLines: 5 - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - TextTooLongMessage: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: None - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Tablet_Split_Left -Name: Tablet_Form_Master_Detail -TemplateCategory: Forms -TemplateCategoryWeight: 3 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Lists/Tablet_List_Doubleline.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Lists/Tablet_List_Doubleline.Forms$PageTemplate.yaml deleted file mode 100644 index b422d7f..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Lists/Tablet_List_Doubleline.Forms$PageTemplate.yaml +++ /dev/null @@ -1,710 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1200 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Default.Main - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Tni06/EJnUyY5D8XhMEHzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: XXpuuexSUkun5vovl7L5PQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yTfxDAbFzUijjZISBBL2Tw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: gUFerorQ3USJhXn/3tMVmg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: v9FWtc3frkmZYg3I3W55Jw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: bmYfOWE1KU2bNlEJLw/M7w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: rnbR06lXWUKK8i7GLFWt8g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: V7j/mqTSwkWbHJ7i9eN60Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: j8CyM1Y5T0SFdh0w1pfz5w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 8nC1WuDqSUqK2uluIbEf2A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5UDDg53BA0esK23ZQ2Caqw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: ff6XvEzWnkamokY9C5XHAQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xTbsThiz0k+XwnnFtKhBuA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: /FzydKTPJEeosWQxnKxyDQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mbaOGEwhU028nMkOEiFDeQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xSUdEBXY/kWJ6IWaTEK+2g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: X/o8sCnQtEmopdLuuGqODg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KLv0wPrXeEaDbYe5Y0qVnQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: YY53fM2E0kK1+O7zFUzrvQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: CCyFoqu0P0KUoIoQPOHSdg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FQu3HOpnZEWGBVjkKbyUbQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 5G2fcdlO9kOT5tE66GyNLA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 8DnZSSzptU+nsnYPrScw1g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "40" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: AIN/R9eR4kSWAhuhSBF79g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: HkmnuG2+EEedW7zhSXjAgA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: fu3SVpXO0E23AI31cHlAwQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Nu632uYNGUKT8viwVA8dHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "40" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: xfqfPPrbMUiqlBuSIQVNGg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: yobT88WaWEeuDrYZOTh7BA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KENC0NZJgkm6q0yB4BunJg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Ff+zTtlJy0mfRgOay9hNIQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LzTtBTtLBUusj7XUpLv59A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +CMUbl14CEO0P5QUDN7yhw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: pEO03t90XkaSNroxLweyDw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: hcZQUAKQTUmBMjCkp06sdw== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Listview title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Tablet_Default -Name: Tablet_List_Doubleline -TemplateCategory: Lists -TemplateCategoryWeight: 4 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Lists/Tablet_List_Tabbed.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Lists/Tablet_List_Tabbed.Forms$PageTemplate.yaml deleted file mode 100644 index c06364f..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Lists/Tablet_List_Tabbed.Forms$PageTemplate.yaml +++ /dev/null @@ -1,1475 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Default.Main - Widgets: - - $Type: Forms$TabControl - Appearance: - $Type: Forms$Appearance - Class: listtab-tabs - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Justify - Value: - $Type: Forms$ToggleDesignPropertyValue - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - DefaultPagePointer: - Data: iVUcUFD6zEGrNqC+FPnJhw== - Subtype: 0 - Name: tabContainer1 - TabIndex: 0 - TabPages: - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Tab 1 - ConditionalVisibilitySettings: null - Name: tabPage1 - RefreshOnShow: false - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView3 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid1 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image1 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: xhGk5/Dnnkiz+4MgAm61Aw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: SMzCTE7Lq0uzIYMj/7p5/Q== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: aavEBeB4v0GyYDd/PNsARg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: rItuz/K7rkiyqOcP2GNFaA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: G+p2kglUnki2+IgqwpObEA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9h5Y2Ys/ZkCqx4Iv/9UdFQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: JkK8o0JDO0il8mTpR3OHOw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: T3tw4elBX02PZphFB9qKRg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: NqP4zwVkmUCBt3tM1xHHCw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: MhAnd/ZoiUWIFLL9hmsw0g== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zWFg2IEzZ0ubT+ffzcfkjg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: wWF5G6+jiUGNvy6putjMBQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w0IWPGpa/E69tPESv9puAQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DGbMmMIqtUCNzJLrlE6ngA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: q+X9zwGbhEW7Tna6tkBNVg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WYIhnVIUVUO5aFg8SshEfA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: elcewliEYU6T8RvzZs9A9w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: TFZ+jEFo7US3HS66lr0/kg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zL4+dk5J7kyGkwOn6rpUiA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: T0eTMCk6X0mgumxDXW5fkg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RyHTnUh1n0S/tv6DGdL7aw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: X05yx+R2L0WzGtl9DHNhSw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zP2GpN/8206e3eerT3jIHQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 31GqjBrQYEC26gEm56/Tyg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 1i7YF4JitkuW7ajiosm2nA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 4HeRH89jv0WPud3KDRpw5A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +58NQvdp2UuNzH8GNme4Cw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Gxsp5Hf3iEqpa40N+bqQIw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: y0QQiR3nQkGG+2+42IV3ww== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: PA/i+3yXyEOMbPJ4QiawjA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 3vjBfDR0UUGgsKyPNROcGA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: DV6MUFMQDkST4dEx0tD7+w== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: mwQt4y63NEqMMN/Zq7tjXA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: LyqL2YpJK0ycZlXt10wb3A== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: td3+6xu7HEa7V0t3VvQJVA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Listview title - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text39 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - - $Type: Forms$TabPage - Badge: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Page 2 - ConditionalVisibilitySettings: null - Name: tabPage2 - RefreshOnShow: false - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Lined - - $Type: Forms$DesignPropertyValue - Key: Hover style - Value: - $Type: Forms$ToggleDesignPropertyValue - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView4 - NumberOfColumns: 1 - PageSize: 5 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: - - $Type: Forms$LayoutGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: layoutGrid2 - Rows: - - $Type: Forms$LayoutGridRow - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - Columns: - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -2 - PreviewWidth: -1 - TabletWeight: -2 - VerticalAlignment: Center - Weight: -2 - Widgets: - - $Type: CustomWidgets$CustomWidget - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Image style - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Circle - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - LabelTemplate: null - Name: image2 - Object: - $Type: CustomWidgets$WidgetObject - Properties: - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: l2tQtww8nEGdhom9jgwf/w== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: image - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 9jFrSGWRCU23FXwpuWZaag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 37Im8diYk0OqF3hlY/GNnw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: 1948EjdmCUi9nIPOM1H/ag== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: 5WQXjCzsiE6EPlema9ErHw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: O25s4zO2Rk+hGTNNRYMrCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: w7mwwT5DekuMfBOxFeeqLw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: +5v3h9N/MkWoa2BGHfMhog== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: t9Ny1pBvikCIHdzGF0W1bQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: +kVTCa6jPEKL7gmq5AinOQ== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: IL68QSlQN0ONoldhNOebjw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "false" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: t4kJChif4ke1/CLo3pV7Qw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: gnAYhn3ABkO9O0R4gmf1vA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: k1Q9rTssEUiA4WAKifkwDg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: PsmKU0YiL0qWAE9K7eYFsw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: action - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: Ylqth+h4dUi6DPLnyFeUkA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RJ2HUT3xUkOvXfWX1QiMAg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: anI/g/LSA0SDXhT/CO3Khg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: KRVRFneA8ke7a00OlWepBg== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "" - Selection: None - SourceVariable: null - TextTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - TranslatableValue: null - TypePointer: - Data: 3RyEEP2TQk+LJFsmm88UvA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: vzxgHyujlUWLLMUEVk+u3A== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: GI4f6UI9Q0SpL7cItoBIaw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: RHpx1Fpal0O6LmgZRreQKQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: WrGZGD6000OaQSPjWrhmMA== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: zIV9MbGRwUqeBeak2BLOsA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: pixels - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: KQZRo29bTk+Tsuxv4JGjCg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: FdJ04q6tsUK9vkZ9h4ms2g== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "48" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: BSUHV4vme0i2PKk3WgSmNg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: Cq2/hAKV70GU8YkTCZyoPQ== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "14" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: p1+dh6pTSE+G2kWWh5uKJw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: +gJ3Nz3kbECvWBmfurwCzw== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: fullImage - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: V1n8Md+wp0yhfMum2dkNZg== - Subtype: 0 - Widgets: null - XPathConstraint: "" - - $Type: CustomWidgets$WidgetProperty - TypePointer: - Data: pWpvVstLTkqbAdhVH6n8AA== - Subtype: 0 - Value: - $Type: CustomWidgets$WidgetValue - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - AttributeRef: null - DataSource: null - EntityRef: null - Expression: "" - Form: "" - Icon: null - Microflow: "" - Nanoflow: "" - Objects: null - PrimitiveValue: "true" - Selection: None - SourceVariable: null - TextTemplate: null - TranslatableValue: null - TypePointer: - Data: M5rOmWC9LEqIJfFdatT1tw== - Subtype: 0 - Widgets: null - XPathConstraint: "" - TypePointer: - Data: LdV+fZ0Gp0i0Ffnta6fEIA== - Subtype: 0 - TabIndex: 0 - - $Type: Forms$LayoutGridColumn - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - PhoneWeight: -1 - PreviewWidth: -1 - TabletWeight: -1 - VerticalAlignment: Center - Weight: -1 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - - $Type: Forms$ClientTemplateParameter - AttributeRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Listview title - Name: text11 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H4 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: None - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text40 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - ConditionalVisibilitySettings: null - HorizontalAlignment: None - SpacingBetweenColumns: true - VerticalAlignment: Center - TabIndex: 0 - Width: FullWidth - Form: Atlas_Core.Tablet_Default -Name: Tablet_List_Tabbed -TemplateCategory: Lists -TemplateCategoryWeight: 4 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Login/Tablet_Login.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Login/Tablet_Login.Forms$PageTemplate.yaml deleted file mode 100644 index 35de3a3..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Login/Tablet_Login.Forms$PageTemplate.yaml +++ /dev/null @@ -1,577 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 1199 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Equal.Left - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: headerhero h-100 - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Align content - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Left align as a column - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Brand Primary - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container9 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-title - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: S - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Form title - Name: text9 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H1 - TabIndex: 0 - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: headerhero-subtitle - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: White - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: margin-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Supporting text - Name: text10 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Paragraph - TabIndex: 0 - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Split_Equal.Main - Widgets: - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: login-formblock h-100 justify-content-between - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Background color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Background Secondary - - $Type: Forms$DesignPropertyValue - Key: Spacing - Value: - $Type: Forms$CompoundDesignPropertyValue - Properties: - - $Type: Forms$DesignPropertyValue - Key: padding-top - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-bottom - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-left - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - - $Type: Forms$DesignPropertyValue - Key: padding-right - Value: - $Type: Forms$OptionDesignPropertyValue - Option: L - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container1 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DataView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$NanoflowSource - ForceFullObjects: false - Nanoflow: Atlas_Web_Content.DS_LoginContext - ParameterMappings: null - Editability: Always - FooterWidgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Knop - - $Type: Texts$Translation - LanguageCode: en_US - Text: Forgot your password? - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container3 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$ActionButton - Action: - $Type: Forms$CallNanoflowClientAction - ConfirmationInfo: null - DisabledDuringExecution: true - Nanoflow: Atlas_Web_Content.ACT_Login - ParameterMappings: null - ProgressBar: None - ProgressMessage: null - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Sign in - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton3 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$DivContainer - Appearance: - $Type: Forms$Appearance - Class: text-center - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Name: container4 - NativeAccessibilitySettings: null - OnClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - RenderMode: Div - ScreenReaderHidden: false - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: - - $Type: Forms$DesignPropertyValue - Key: Color - Value: - $Type: Forms$OptionDesignPropertyValue - Option: Detail color - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: 'Don''t have an account yet? ' - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$ActionButton - Action: - $Type: Forms$NoAction - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Knop - - $Type: Texts$Translation - LanguageCode: en_US - Text: Register - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Link - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - LabelWidth: 3 - Name: dataView1 - NoEntityMessage: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Control - ShowFooter: true - TabIndex: 0 - Widgets: - - $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: - $Type: Forms$ConditionalVisibilitySettings - Attribute: "" - Conditions: null - Expression: $currentObject/ValidationMessage != '' - IgnoreSecurity: false - ModuleRoles: null - SourceVariable: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: - - $Type: Forms$ClientTemplateParameter - AttributeRef: - $Type: DomainModels$AttributeRef - Attribute: Atlas_Web_Content.LoginContext.ValidationMessage - EntityRef: null - Expression: "" - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - SourceVariable: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: '{1}' - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Username - MaxLengthCode: -1 - Name: textBox1 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - - $Type: Forms$TextBox - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRequired: false - AttributeRef: null - AutoFocus: false - Autocomplete: true - AutocompletePurpose: "On" - ConditionalEditabilitySettings: null - ConditionalVisibilitySettings: null - Editable: Always - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - InputMask: "" - IsPasswordBox: false - KeyboardType: Default - LabelTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Password - MaxLengthCode: -1 - Name: textBox2 - NativeAccessibilitySettings: null - OnChangeAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnEnterKeyPressAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - OnLeaveAction: - $Type: Forms$NoAction - DisabledDuringExecution: true - PlaceholderTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - ReadOnlyStyle: Inherit - ScreenReaderLabel: null - SourceVariable: null - SubmitBehaviour: OnEndEditing - SubmitOnInputDelay: 300 - TabIndex: 0 - Validation: - $Type: Forms$WidgetValidation - Expression: "" - Message: - $Type: Texts$Text - Items: null - Form: Atlas_Core.Tablet_Split_Equal -Name: Tablet_Login -TemplateCategory: Login -TemplateCategoryWeight: 4 -TemplateType: - $Type: Forms$RegularPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithDataGrid_Select.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithDataGrid_Select.Forms$PageTemplate.yaml deleted file mode 100644 index e0fd108..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithDataGrid_Select.Forms$PageTemplate.yaml +++ /dev/null @@ -1,165 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: 'Select with Data Grid ' -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Default.Main - Widgets: - - $Type: Forms$DataGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: null - Columns: - - $Type: Forms$DataGridColumn - AggregateCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - AggregateFunction: None - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AttributeRef: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Column - Editable: false - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - Name: column1 - ShowTooltip: false - WidthValue: 50 - - $Type: Forms$DataGridColumn - AggregateCaption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: "" - AggregateFunction: None - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AttributeRef: null - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Column - Editable: false - FormattingInfo: - $Type: Forms$FormattingInfo - CustomDateFormat: "" - DateFormat: Date - DecimalPrecision: 2 - EnumFormat: Text - GroupDigits: false - Name: column2 - ShowTooltip: false - WidthValue: 50 - ConditionalVisibilitySettings: null - ControlBar: - $Type: Forms$GridControlBar - DefaultButtonPointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 - NewButtons: - - $Type: Forms$GridSearchButton - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Search - ConditionalVisibilitySettings: null - Icon: null - Name: searchButton1 - Tooltip: - $Type: Texts$Text - Items: null - DataSource: - $Type: Forms$GridXPathSource - EntityRef: null - ForceFullObjects: false - SearchBar: - $Type: Forms$SearchBar - NewButtons: null - WaitForSearch: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - DefaultButtonTrigger: Double - IsControlBarVisible: true - Name: grid1 - NumberOfRows: 20 - RefreshTime: 0 - SelectFirst: false - SelectionMode: Single - ShowEmptyRows: false - ShowPagingBar: YesWithTotalCount - TabIndex: 0 - TooltipForm: "" - WidthUnit: Weight - Form: Atlas_Core.Tablet_Default -Name: Tablet_SelectWithDataGrid_Select -TemplateCategory: Select Entity -TemplateCategoryWeight: 160 -TemplateType: - $Type: Forms$SelectPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithListView_Select.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithListView_Select.Forms$PageTemplate.yaml deleted file mode 100644 index 40c9fbd..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithListView_Select.Forms$PageTemplate.yaml +++ /dev/null @@ -1,129 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Select With List View -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Default.Main - Widgets: - - $Type: Forms$ListView - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ClickAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ConditionalVisibilitySettings: null - DataSource: - $Type: Forms$ListViewXPathSource - EntityRef: null - ForceFullObjects: false - Search: - $Type: Forms$ListViewSearch - SearchRefs: null - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - Editable: false - Name: listView1 - NumberOfColumns: 1 - PageSize: 10 - PullDownAction: - $Type: Forms$NoAction - DisabledDuringExecution: false - ScrollDirection: Vertical - TabIndex: 0 - Templates: null - Widgets: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$SaveChangesClientAction - ClosePage: true - DisabledDuringExecution: true - SyncAutomatically: false - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Primary - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Save - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton1 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - - $Type: Forms$ActionButton - Action: - $Type: Forms$CancelChangesClientAction - ClosePage: true - DisabledDuringExecution: true - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - AriaRole: Button - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Cancel - ConditionalVisibilitySettings: null - Icon: null - Name: actionButton2 - NativeAccessibilitySettings: null - RenderType: Button - TabIndex: 0 - Tooltip: - $Type: Texts$Text - Items: null - Form: Atlas_Core.Tablet_Default -Name: Tablet_SelectWithListView_Select -TemplateCategory: Select Entity -TemplateCategoryWeight: 160 -TemplateType: - $Type: Forms$SelectPageTemplateType diff --git a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithTemplateGrid_Select.Forms$PageTemplate.yaml b/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithTemplateGrid_Select.Forms$PageTemplate.yaml deleted file mode 100644 index 6dde2f5..0000000 --- a/resources/App/modelsource/Atlas_Web_Content/Tablet/PageTemplates/Select Entity/Tablet_SelectWithTemplateGrid_Select.Forms$PageTemplate.yaml +++ /dev/null @@ -1,92 +0,0 @@ -$Type: Forms$PageTemplate -Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: Select With Template Grid -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -LayoutCall: - $Type: Forms$LayoutCall - Arguments: - - $Type: Forms$FormCallArgument - Parameter: Atlas_Core.Tablet_Default.Main - Widgets: - - $Type: Forms$TemplateGrid - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Contents: - $Type: Forms$TemplateGridContents - Widgets: null - ControlBar: - $Type: Forms$GridControlBar - DefaultButtonPointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 - NewButtons: - - $Type: Forms$GridSearchButton - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ButtonStyle: Default - CaptionTemplate: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Search - ConditionalVisibilitySettings: null - Icon: null - Name: searchButton1 - Tooltip: - $Type: Texts$Text - Items: null - DataSource: - $Type: Forms$GridXPathSource - EntityRef: null - ForceFullObjects: false - SearchBar: - $Type: Forms$SearchBar - NewButtons: null - WaitForSearch: false - SortBar: - $Type: Forms$GridSortBar - SortItems: null - SourceVariable: null - XPathConstraint: "" - DefaultButtonTrigger: Double - IsControlBarVisible: true - Name: templateGrid1 - NumberOfColumns: 2 - NumberOfRows: 3 - RefreshTime: 0 - SelectFirst: false - SelectionMode: Single - ShowPagingBar: YesWithTotalCount - TabIndex: 0 - Form: Atlas_Core.Tablet_Default -Name: Tablet_SelectWithTemplateGrid_Select -TemplateCategory: Select Entity -TemplateCategoryWeight: 160 -TemplateType: - $Type: Forms$SelectPageTemplateType diff --git a/resources/App/modelsource/DataWidgets/ClientActivities/Export_To_Excel.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/DataWidgets/ClientActivities/Export_To_Excel.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 73ec690..0000000 --- a/resources/App/modelsource/DataWidgets/ClientActivities/Export_To_Excel.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,59 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ExportSuccess -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Export To Excel - Category: Data widgets - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKTSURBVHhe7ZtBTttAFIbHDmwijFhwAI6QchGQsmi7IiCiCqkSR4CeACEhVSFISVeFBQhOAkfgAEit5MIq9nSe8xIcnMSxnyczY8+XxXgSK8r78uZ3bCvMYrFUGgfHCXY+f9uquWHPYbwhdtnAp+lw1rq97v7CmRYkBEDxK27wWGjhcTST4OI4ZsUJzqQVDzis3/zS3sOZchICmOPs4pY8NJKQWALNr22OmxG3v7tTc2JRPr7fBBosh2QHLBMNOkGtAECxhKUL4CHfx813FEpYuoC7m6u+ThKULAGdJCjLAF0kKA1BHSQoFQColqBcAKBSghYCAFUStBEAqJCg9lwgKxLOHbTqgFREJ+BWYZglQAKVFyA9A6jI/jx2CeBYWWwG4DhGtwyQjV0COFYWmwE4jknLgM3jf8X9tp/Cy/nawplTv6g33r6/PeE0F8Z2wPrl+klttfbodT3SWaKRAqB4zvlpNAlZnyLBOAH1y3pjXPwIggRyBsxas0XvF8f76bXEV9fD6Tsua/ltP9P1AiOXgH/k98W3nrxylKMTjA3BoiQYKwAoQgI5A7KS5Ti/KJRMMLoDRszthCshZw6lEADMlBCw3jwJpREA5JFAzgDq8d3reKRMyUSN7fuHQlKMUnVAKtAJH44O1RLAxWMw2fXlEQDFjR7TGL5yEOVEDHIGZEXG74A4UdiJVsfpkBnFA6VaAlmLB0ojIE/xQCkE5C0eyJwBukEpHjC6A6jFA8YKKKJ4wEgBRRUPTMuAP2KQ94+RFNIyB+4FwOVwnA7JWTyQ6ADOGelGg2zgRkgYhj9wSioeSAgIuAunk3+HMz15PXo9jSQQiwcSAh5uOs+D0P0kWuEen9ISkBAMgm1K8RaLpeow9h/m2ZyA+gqK3QAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKRSURBVHhe7ZvNTuMwEIDjqhVXHoEDK65dnoQbUpr+ZKV9joUn4AE4pFXaStx4k3JlQWLfYLmiRjUeOoS2bkmTiWs78QeSM1UVZT7NTOIgPIfDUWsYrmtEUXTSarUiznmbMXaMH5MR5xt0u90RhkYgCYDkm83mrMzEVzFNQgPXFJH8jarkAXHuYRzHfQy1IwkQF3iBh8owSYLUAuPxmOPhB0EQbJ0T+7J5vlVMaAepAg6JCZWgVQCgW8LBBSwWixAPU3RKOLiAXq83NEmClhYwSYK2GWCKBK1D0AQJWgUAuiVoFwDolGCEAECXBGMEADokaN0L5EXF3sGoCsgCKgEPS8MqASqovQDlM4CK6utxLYBrbXEzANcU02aAalwL4Fpb3AzANSVrBlzevpX2bL+Nu99He8+c/mO/PTobPWBYCGsrIPgb/Ekayazz3CHtEq0UAMlzxq8+Au4NKRKsE+C/+O00+U8IEsgzYFfPlv29VfxHf8AaLMLwC+YNJqeTXO8LrGyB6dl0yBdcenNUpBKsHYJlSbBWAFCGBPIMyEue+/y+UGaC1RXwyXeV4D/7A4y2UgkBwC4JjLPoOwmVEQAUkUCeAdT7e+epQ5opeRAPUOH0dLr2ar1SFZAFVMLm3aFWAsRQ5OJ3rRKrI0Bklv5sQ3zOG/zXZguQZ0BeVDwHrALDDkodwyU7kgcq1QJ5kwcqI6BI8kAlBBRNHsg9A0yDkjxgdQVQkwesFVBG8oCVAspKHpD6O47j/0zhf4xkkTVzxN6/Lfb+MwyXFEwekCpAJE/6Q4NqxI4Pru96GQkIyQOSgPl8HnLOXzE0ksmPCbwWv6YmD0gCwjD8lyTJTyHhHj8yEpAgrvGckrzD4ag7nvcOxdi/5mFO/wkAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: Export_To_Excel -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: datagridName - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: fileName - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: sheetName - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: includeColumnHeaders - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The number of items fetched and exported per request. - IsRequired: true - Name: chunkSize - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/DataWidgets/DomainModels$DomainModel.yaml b/resources/App/modelsource/DataWidgets/DomainModels$DomainModel.yaml deleted file mode 100644 index 197d610..0000000 --- a/resources/App/modelsource/DataWidgets/DomainModels$DomainModel.yaml +++ /dev/null @@ -1,6 +0,0 @@ -$Type: DomainModels$DomainModel -Annotations: null -Associations: null -CrossAssociations: null -Documentation: "" -Entities: null diff --git a/resources/App/modelsource/DataWidgets/Projects$ModuleSettings.yaml b/resources/App/modelsource/DataWidgets/Projects$ModuleSettings.yaml deleted file mode 100644 index f6ae021..0000000 --- a/resources/App/modelsource/DataWidgets/Projects$ModuleSettings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Projects$ModuleSettings -BasedOnVersion: "" -ExportLevel: Source -ExtensionName: "" -JarDependencies: null -ProtectedModuleType: AddOn -SolutionIdentifier: "" -Version: 1.0.0 diff --git a/resources/App/modelsource/DataWidgets/Security$ModuleSecurity.yaml b/resources/App/modelsource/DataWidgets/Security$ModuleSecurity.yaml deleted file mode 100644 index 3d32b8a..0000000 --- a/resources/App/modelsource/DataWidgets/Security$ModuleSecurity.yaml +++ /dev/null @@ -1,5 +0,0 @@ -$Type: Security$ModuleSecurity -ModuleRoles: -- $Type: Security$ModuleRole - Description: "" - Name: User diff --git a/resources/App/modelsource/FeedbackModule/DomainModels$DomainModel.yaml b/resources/App/modelsource/FeedbackModule/DomainModels$DomainModel.yaml deleted file mode 100644 index 197d610..0000000 --- a/resources/App/modelsource/FeedbackModule/DomainModels$DomainModel.yaml +++ /dev/null @@ -1,6 +0,0 @@ -$Type: DomainModels$DomainModel -Annotations: null -Associations: null -CrossAssociations: null -Documentation: "" -Entities: null diff --git a/resources/App/modelsource/FeedbackModule/FeedbackWidget.Forms$BuildingBlock.yaml b/resources/App/modelsource/FeedbackModule/FeedbackWidget.Forms$BuildingBlock.yaml deleted file mode 100644 index 69e2232..0000000 --- a/resources/App/modelsource/FeedbackModule/FeedbackWidget.Forms$BuildingBlock.yaml +++ /dev/null @@ -1,13 +0,0 @@ -$Type: Forms$BuildingBlock -CanvasHeight: 600 -CanvasWidth: 800 -DisplayName: "" -Documentation: "" -DocumentationUrl: "" -Excluded: false -ExportLevel: Hidden -Name: FeedbackWidget -Platform: Web -TemplateCategory: "" -TemplateCategoryWeight: 0 -Widgets: null diff --git a/resources/App/modelsource/FeedbackModule/Projects$ModuleSettings.yaml b/resources/App/modelsource/FeedbackModule/Projects$ModuleSettings.yaml deleted file mode 100644 index f6ae021..0000000 --- a/resources/App/modelsource/FeedbackModule/Projects$ModuleSettings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Projects$ModuleSettings -BasedOnVersion: "" -ExportLevel: Source -ExtensionName: "" -JarDependencies: null -ProtectedModuleType: AddOn -SolutionIdentifier: "" -Version: 1.0.0 diff --git a/resources/App/modelsource/FeedbackModule/Security$ModuleSecurity.yaml b/resources/App/modelsource/FeedbackModule/Security$ModuleSecurity.yaml deleted file mode 100644 index 3142cc4..0000000 --- a/resources/App/modelsource/FeedbackModule/Security$ModuleSecurity.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Security$ModuleSecurity -ModuleRoles: -- $Type: Security$ModuleRole - Description: "" - Name: User -- $Type: Security$ModuleRole - Description: "" - Name: Anonymous diff --git a/resources/App/modelsource/FeedbackModule/_v1.4.0/_ReadMe.Forms$Snippet.yaml b/resources/App/modelsource/FeedbackModule/_v1.4.0/_ReadMe.Forms$Snippet.yaml deleted file mode 100644 index 4d6404a..0000000 --- a/resources/App/modelsource/FeedbackModule/_v1.4.0/_ReadMe.Forms$Snippet.yaml +++ /dev/null @@ -1,65 +0,0 @@ -$Type: Forms$Snippet -CanvasHeight: 600 -CanvasWidth: 800 -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: _ReadMe -Parameters: null -Widgets: -- $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: Mendix FeedBack Module - Name: text1 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: H2 - TabIndex: 0 -- $Type: Forms$DynamicText - Appearance: - $Type: Forms$Appearance - Class: "" - DesignProperties: null - DynamicClasses: "" - Style: "" - ConditionalVisibilitySettings: null - Content: - $Type: Forms$ClientTemplate - Fallback: - $Type: Texts$Text - Items: null - Parameters: null - Template: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Tekst - - $Type: Texts$Translation - LanguageCode: en_US - Text: "For installation & configuration please refer to documentation\r\nhttps://docs.mendix.com/appstore/modules/mendix-feedback/" - Name: text2 - NativeAccessibilitySettings: null - NativeTextStyle: Text - RenderMode: Text - TabIndex: 0 diff --git a/resources/App/modelsource/MendixCLIExtension/Constant.Constants$Constant.yaml b/resources/App/modelsource/MendixCLIExtension/Constant.Constants$Constant.yaml deleted file mode 100644 index 42446bd..0000000 --- a/resources/App/modelsource/MendixCLIExtension/Constant.Constants$Constant.yaml +++ /dev/null @@ -1,7 +0,0 @@ -$Type: Constants$Constant -DefaultValue: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -ExposedToClient: false -Name: Constant diff --git a/resources/App/modelsource/MendixCLIExtension/Constant4.Constants$Constant.yaml b/resources/App/modelsource/MendixCLIExtension/Constant4.Constants$Constant.yaml deleted file mode 100644 index a2cd724..0000000 --- a/resources/App/modelsource/MendixCLIExtension/Constant4.Constants$Constant.yaml +++ /dev/null @@ -1,7 +0,0 @@ -$Type: Constants$Constant -DefaultValue: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -ExposedToClient: false -Name: Constant4 diff --git a/resources/App/modelsource/MendixCLIExtension/Constant7.Constants$Constant.yaml b/resources/App/modelsource/MendixCLIExtension/Constant7.Constants$Constant.yaml deleted file mode 100644 index e726461..0000000 --- a/resources/App/modelsource/MendixCLIExtension/Constant7.Constants$Constant.yaml +++ /dev/null @@ -1,7 +0,0 @@ -$Type: Constants$Constant -DefaultValue: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -ExposedToClient: false -Name: Constant7 diff --git a/resources/App/modelsource/MendixCLIExtension/Constant9.Constants$Constant.yaml b/resources/App/modelsource/MendixCLIExtension/Constant9.Constants$Constant.yaml deleted file mode 100644 index 06e6c88..0000000 --- a/resources/App/modelsource/MendixCLIExtension/Constant9.Constants$Constant.yaml +++ /dev/null @@ -1,7 +0,0 @@ -$Type: Constants$Constant -DefaultValue: "" -Documentation: "" -Excluded: false -ExportLevel: Hidden -ExposedToClient: false -Name: Constant9 diff --git a/resources/App/modelsource/Metadata.yaml b/resources/App/modelsource/Metadata.yaml index 58c050b..840123f 100644 --- a/resources/App/modelsource/Metadata.yaml +++ b/resources/App/modelsource/Metadata.yaml @@ -1,4 +1,4 @@ -BuildVersion: 10.12.2.41995 +BuildVersion: 10.23.0.70273 Modules: - Attributes: $ID: @@ -75,6 +75,21 @@ Modules: NewSortIndex: 4 ID: anwcVtQfBESck7qCSr6wYA== Name: FeedbackModule +- Attributes: + $ID: + Data: qNGl5jx+SU2UyV9NjwJkRg== + Subtype: 0 + $Type: Projects$ModuleImpl + AppStoreGuid: "" + AppStorePackageId: 0 + AppStoreVersion: "" + AppStoreVersionGuid: "" + FromAppStore: false + IsThemeModule: false + Name: MendixCLIExtension + NewSortIndex: 3.1761271853677124 + ID: qNGl5jx+SU2UyV9NjwJkRg== + Name: MendixCLIExtension - Attributes: $ID: Data: rOLa4hehRU2AzTf/EaZ+Hw== @@ -120,19 +135,4 @@ Modules: NewSortIndex: 2 ID: xn10Fre2rkKqvyVdyirurw== Name: MyFirstModule -- Attributes: - $ID: - Data: qNGl5jx+SU2UyV9NjwJkRg== - Subtype: 0 - $Type: Projects$ModuleImpl - AppStoreGuid: "" - AppStorePackageId: 0 - AppStoreVersion: "" - AppStoreVersionGuid: "" - FromAppStore: false - IsThemeModule: false - Name: MendixCLIExtension - NewSortIndex: 3.1761271853677124 - ID: qNGl5jx+SU2UyV9NjwJkRg== - Name: MendixCLIExtension -ProductVersion: 10.12.2.41995 +ProductVersion: 10.23.0.70273 diff --git a/resources/App/modelsource/MyFirstModule/Home_Web.Forms$Page.yaml b/resources/App/modelsource/MyFirstModule/Home_Web.Forms$Page.yaml index e96b863..efa529d 100644 --- a/resources/App/modelsource/MyFirstModule/Home_Web.Forms$Page.yaml +++ b/resources/App/modelsource/MyFirstModule/Home_Web.Forms$Page.yaml @@ -6,7 +6,7 @@ Appearance: Class: "" DesignProperties: null DynamicClasses: "" - Style: "" + Style: 'background-color: yellow;' CanvasHeight: 600 CanvasWidth: 1200 Documentation: "" @@ -200,3 +200,4 @@ Title: LanguageCode: en_US Text: Homepage Url: "" +Variables: null diff --git a/resources/App/modelsource/MyFirstModule/MyFirstLogic.Microflows$Microflow.yaml b/resources/App/modelsource/MyFirstModule/MyFirstLogic.Microflows$Microflow.yaml index 97744c6..0377b8d 100644 --- a/resources/App/modelsource/MyFirstModule/MyFirstLogic.Microflows$Microflow.yaml +++ b/resources/App/modelsource/MyFirstModule/MyFirstLogic.Microflows$Microflow.yaml @@ -9,18 +9,23 @@ ConcurrenyErrorMessage: Documentation: "" Excluded: false ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: YnSuHVnSgkygVUhmo4WQNQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: tCZ8lwGiKkSAKHUntgr4dw== -- Attributes: - $Type: Microflows$ActionActivity +MarkAsUsed: false +MicroflowActionInfo: null +MicroflowReturnType: + $Type: DataTypes$VoidType +Name: MyFirstLogic +ObjectCollection: + $Type: Microflows$MicroflowObjectCollection + Objects: + - $Type: Microflows$StartEvent + - $Type: Microflows$EndEvent + Documentation: "" + ReturnValue: "" + - $Type: Microflows$Annotation + Caption: "Microflows are used to define server logic in your app.\r\n\r\n- For + client logic you can use Nanoflows\r\n- For business process logic you can use + Workflows\r\n\r\nDocumentation: https://docs.mendix.com/refguide/application-logic" + - $Type: Microflows$ActionActivity Action: $Type: Microflows$RetrieveAction ErrorHandlingType: Rollback @@ -34,15 +39,7 @@ MainFunction: Caption: Activity Disabled: false Documentation: "" - ID: ZkMk1r+fwk6sCrj2vasdoQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: cD35k6/3SEq/Gr6T2SEBMA== -- Attributes: - $Type: Microflows$LoopedActivity + - $Type: Microflows$LoopedActivity Documentation: "" ErrorHandlingType: Rollback LoopSource: @@ -52,39 +49,18 @@ MainFunction: ObjectCollection: $Type: Microflows$MicroflowObjectCollection Objects: - - $ID: hC0KyNPDzEKwKKrJC9Tl3A== - $Type: Microflows$ActionActivity + - $Type: Microflows$ActionActivity Action: - $ID: uq6IUlVGSEKw7+axm/Enxw== $Type: Microflows$CommitAction CommitVariableName: IteratorUserRole ErrorHandlingType: Rollback - RefreshInClient: false + RefreshInClient: true WithEvents: true AutoGenerateCaption: true BackgroundColor: Default Caption: Activity Disabled: false Documentation: "" - RelativeMiddlePoint: 214;100 - Size: 120;60 - ID: VZ7hc92BekaOZ3mFg9x5OQ== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: 2FZrVXv8eUimYpiJfqptag== -- Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: rMd3RSkQAk+zg6kL4IZHjw== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: MyFirstLogic ReturnVariableName: "" Url: "" UrlSearchParameters: null diff --git a/resources/App/modelsource/MyFirstModule/MyFirstLogic_2.Microflows$Microflow.yaml b/resources/App/modelsource/MyFirstModule/MyFirstLogic_2.Microflows$Microflow.yaml deleted file mode 100644 index 3b33b2e..0000000 --- a/resources/App/modelsource/MyFirstModule/MyFirstLogic_2.Microflows$Microflow.yaml +++ /dev/null @@ -1,91 +0,0 @@ -$Type: Microflows$Microflow -AllowConcurrentExecution: true -AllowedModuleRoles: null -ApplyEntityAccess: false -ConcurrencyErrorMicroflow: "" -ConcurrenyErrorMessage: - $Type: Texts$Text - Items: null -Documentation: "" -Excluded: false -ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: 5G1feUZ0KEqLb+AHowiM1Q== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: fR6MfnO5oEu/fcJIRkUvqA== -- Attributes: - $Type: Microflows$ActionActivity - Action: - $Type: Microflows$RetrieveAction - ErrorHandlingType: Rollback - ResultVariableName: UserRoles - RetrieveSource: - $Type: Microflows$AssociationRetrieveSource - AssociationId: System.UserRoles - StartVariableName: currentUser - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - ID: DPLnwz2UXk6XFs6p7evKaA== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: qKGcyIU7x0avf5jA6Oo6SA== -- Attributes: - $Type: Microflows$LoopedActivity - Documentation: "" - ErrorHandlingType: Rollback - LoopSource: - $Type: Microflows$IterableList - ListVariableName: UserRoles - VariableName: IteratorUserRole - ObjectCollection: - $Type: Microflows$MicroflowObjectCollection - Objects: - - $ID: 65XA16ccpkOWudNTUaSiDw== - $Type: Microflows$ActionActivity - Action: - $ID: eTrKLrAR00mqzazdqple3Q== - $Type: Microflows$CommitAction - CommitVariableName: IteratorUserRole - ErrorHandlingType: Rollback - RefreshInClient: false - WithEvents: true - AutoGenerateCaption: true - BackgroundColor: Default - Caption: Activity - Disabled: false - Documentation: "" - RelativeMiddlePoint: 214;100 - Size: 120;60 - ID: Ue9SE51gWU2L0RwcFsdeuw== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: LOrhCRNU1E69feYzrvjiqA== -- Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: vZdFrbJ1X0S6KMJQLOsKCw== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: MyFirstLogic_2 -ReturnVariableName: "" -Url: "" -UrlSearchParameters: null -WorkflowActionInfo: null diff --git a/resources/App/modelsource/MyFirstModule/test/MyFirstLogic_2.Microflows$Microflow.yaml b/resources/App/modelsource/MyFirstModule/test/MyFirstLogic_2.Microflows$Microflow.yaml index 76522ad..89ea3d9 100644 --- a/resources/App/modelsource/MyFirstModule/test/MyFirstLogic_2.Microflows$Microflow.yaml +++ b/resources/App/modelsource/MyFirstModule/test/MyFirstLogic_2.Microflows$Microflow.yaml @@ -9,18 +9,23 @@ ConcurrenyErrorMessage: Documentation: "" Excluded: false ExportLevel: Hidden -MainFunction: -- Attributes: - $Type: Microflows$StartEvent - ID: 5G1feUZ0KEqLb+AHowiM1Q== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: fR6MfnO5oEu/fcJIRkUvqA== -- Attributes: - $Type: Microflows$ActionActivity +MarkAsUsed: false +MicroflowActionInfo: null +MicroflowReturnType: + $Type: DataTypes$VoidType +Name: MyFirstLogic_2 +ObjectCollection: + $Type: Microflows$MicroflowObjectCollection + Objects: + - $Type: Microflows$StartEvent + - $Type: Microflows$EndEvent + Documentation: "" + ReturnValue: "" + - $Type: Microflows$Annotation + Caption: "Microflows are used to define server logic in your app.\r\n\r\n- For + client logic you can use Nanoflows\r\n- For business process logic you can use + Workflows\r\n\r\nDocumentation: https://docs.mendix.com/refguide/application-logic" + - $Type: Microflows$ActionActivity Action: $Type: Microflows$RetrieveAction ErrorHandlingType: Rollback @@ -34,15 +39,7 @@ MainFunction: Caption: Activity Disabled: false Documentation: "" - ID: DPLnwz2UXk6XFs6p7evKaA== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: qKGcyIU7x0avf5jA6Oo6SA== -- Attributes: - $Type: Microflows$LoopedActivity + - $Type: Microflows$LoopedActivity Documentation: "" ErrorHandlingType: Rollback LoopSource: @@ -52,40 +49,19 @@ MainFunction: ObjectCollection: $Type: Microflows$MicroflowObjectCollection Objects: - - $ID: 65XA16ccpkOWudNTUaSiDw== - $Type: Microflows$ActionActivity + - $Type: Microflows$ActionActivity Action: - $ID: iCfOlvrga0CpekmS6SuX5g== $Type: Microflows$ChangeAction ChangeVariableName: IteratorUserRole Commit: "Yes" ErrorHandlingType: Rollback - Items: [] + Items: null RefreshInClient: true AutoGenerateCaption: true BackgroundColor: Default Caption: Activity Disabled: false Documentation: "" - RelativeMiddlePoint: 214;100 - Size: 120;60 - ID: Ue9SE51gWU2L0RwcFsdeuw== -- Attributes: - $Type: Microflows$SequenceFlow - IsErrorHandler: false - NewCaseValue: - $Type: Microflows$NoCase - ID: LOrhCRNU1E69feYzrvjiqA== -- Attributes: - $Type: Microflows$EndEvent - Documentation: "" - ReturnValue: "" - ID: vZdFrbJ1X0S6KMJQLOsKCw== -MarkAsUsed: false -MicroflowActionInfo: null -MicroflowReturnType: - $Type: DataTypes$VoidType -Name: MyFirstLogic_2 ReturnVariableName: "" Url: "" UrlSearchParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/GetRemoteUrl.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/GetRemoteUrl.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 798bc72..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/GetRemoteUrl.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get remote url - Category: Client activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAVUSURBVHhe7ZtbbhNJFIa7204Qb5kdZFYwNhuArGCCUEAa5WIjwWvMChJWQHhNEHZuD4iHyQ4gGyBegpeQh5FGIb7w/1Z3VK6u7rq5k7ZxJAvJrsv5vzp1Tt0IgsXfgsCCwO9MICyT+NPT02ej0Wi9Uqk8HQ6Hq2EYrtA+/NvF9z18Lvr9/mWz2exNy+5SADg5OVmHyA/4rBoKO7i9vf04DRAPCqDdbq9Uq9U2hK8bCr8rRo9Aveebm5td27pi+QcDAPGrEP/NYtSVOgGisbW1dewKIXKt6FMvTzwEdfBZg4v/gdEN+UFfdYBqcdTlfvF95+zsrOZqz717QJZ4iOsiwD3XzWsEyn2I3hMFEwzq1lH32hbEvXpAzsgfQ8CaTjzFwd33B4PBu4l5jOCJ6dSyFT/OMC6VXOrkiYebN2zbROY4iKJoV6h3jWnzp60X3IsHTFs8RcML9uH6osszo1iDLBxAEeIJIB7pj5LnPLP1pEIBFCU+EYm4cSEJ/qs0AHzEI9LvnJ+fX3GhpBHUk4NhaQAsLS3tKhY5x7qAR/HM7ZjfteXl5W95EGwDngpOYVMAQpmqxBWasfjE0ARC1qgaeIjWIQoDwJ7j0SYEa/GJ5Yj2cqC7E4WoXxMVcjGlVSwVKBRAAsHU7WXjsSVubm9vd7JEcR8g/VY+ALoRSea8rXgGWSyEdqR61puiwj0gD4CreLYJ9/9Xcv8elsnfdcDl370AcBS4ObHtlOV9xLNfNMGP+OdkhzMAIc/vQUzbBoKPePbDTRNS5VqyFOYW2vVMwAmAvMiBMQ1TCL7iE9A8CYohcBv93mYAxLLWu0HfFR4XObYBz1WcST0rAPMmnoCMAcyjeGMA8yreCMA8i9cCmHfxuQDiS4srny1tmaJ9VkbIDII4dOyo1tpFbWxMUhbLvDq6GYllv7x5ZBzIVX0oF0IQ3yijeFNINuWUAFQXDw898jaibMqmAPCKWp73vLTIa3Ray1sbw6dVNgVAPmTgRiPvxmaWxRNiCgBGXz5azjxk8BGPU9+26QZqWqNtGgRXxYJw/26OAS2XVEfx9DSbXWRREFQesCJ2lnf0zNggHkTqzvDYbiI+6YMQcL39oSiBuna15wG6c/kEgot4GserbT530Rla1O8qAD2xM1xwTEwJ2RB6CE5j6nmnt6qRT8SbXovfGwD5bJ2vtnw7l92+LOKVWQBfXoqCMUd3fW5gyixeCQAuyXu5awHCCqbBxJMUU4+wFf/P4X8107ZNy734dFPPK5uKARn37i3k7JZpp/QYW/EvD3/uDcKlq42jvnzZYdptqtzGp36jOgp+bBzd7mc1oswC8IID+UUWHzIiXWk9ITlDUKwo+ZBJ+Q6I4sNwNDYyCgadaUCg+Gg0GB/XR8FwLwtC5lYyfnp2JZMjGOwUCegyeaQYnx3UKFqxixynuizxG4c3tSgMUv0Mg0rj65tqahVqsh0Wxd/ZDyOGQfjk69tH3YkYl+df8bbY6tJDBUyX6l4d/t8IwijVjwqCDkCWeKw4Xn95+7gj25e7EIpze131QNFwYn6P3+/18sqPDRsNm2nj7KaDrXhlFpCNoJtzBLHSM16tERjK8x0v57yYUTI5+EJwEU9jrI6TGODwlJ3nBX+jLp+z19hInDb5nP0S31243NImZHTTQTUFXMVbAzB0e+9ieRCYJcQOhmGlmUR7MeBlzXnZOCsP8FZm0UAWBG0TcENT8aX1AN10yIRgKb70AGigsSc4iJ8JAHcQgvAz//OQcvQdxc8MgFwIHuJnCoASgqf4mQMwAWE8F9TLW22mmPUCDIzj4Lj4WxBYEPAl8At5ieKM4CECpgAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: GetRemoteUrl -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/HideProgress.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/HideProgress.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 2be029b..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/HideProgress.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Hides default progress bar -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Hide progress - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATBSURBVHhe7Vk9bBRXEJ55e0SWEiWmSmuayMEoOkckSpejS6ozJg5HmouVc1LalKns69JhSuAkTAN2jGOuo7PpkBCYiABJdyUdR5qQ+HYn84zXt29/3+2dfbePe5Il2ztvdr5v5s2bmQUYriEDQwaGDBjMQHGmko+DZxmMHc6V5srCwrsff3Ianj95eC8Mq7EESPCAsCJBI0AhigR+Zt7ygveiEy2aXF+vPVb+Zxr8KPDk0Kwf/H50mENBHPjf1mp7x8G/jDkCacAbEwFpwRtBQDfgM09At+AzTUAvwGeWgF6BzyQBvQSfOQJ6DT5TBBwG+MwQcFjgOyagWJwftd79Zx6ICgg0xn0W/wzCoiYByibnju2Ien3tSkPXKq1SuHj+pzFLONdlW6mruM9yKy1HVHWISJwHTF+Ym7fQWUXA8T6D6uT1eQH0/fip0//++cfD+3EbYwmYLlUWEfEXDvWRTt4+ELIII4jwVdw0KDYHSM9zyC/7wRDRNiB2fNZ0SUmT8Ga+q+RtG/IoYDEsLzmEFzdXrwawRBIgz3xO2DusbLRtODWRoHp7tRaqSBdgnFwa8H5933xbWSALmQho207QbJGYDMsJIswgS9hLfvAC4cygg5dYbv9aWxZIZ/jX5gE2hFGZxMOwBgiQ3ueEV/YKS8+v31Rnab3wuKujF5732iNtRZuqCga+wYrFsiei3zwNXINnS5UFgXjJE/qNjVu1E15lH8y/HDtGx64TUJ6TZEBpJ+R8+PoBjP99M7BFzvCixli6+qdLc1ucCAuuvANQ3bx1jaO7vQIRwN4vKi8gVDZI8DnK7TB1hUEGLzGwg+q+KPjST16QAIS8V6hl0+/evy3KXeoWuNR3mJ4/8DhZd1QCZPWqrrAkqIR03T9HR5zSDcEouSjwf71/AboNe+87g1k/WLqH3gJxAImvlG4IiAP/YuTzblSn2htCADW8muSt4DtHj1O9KSbspecPA/yM/8NoiPMCBBChQoBAWwn5XdydTRMF/fC8LdR8RggB54UQ4ChfUTnhKbfCq8vHGy3cnXQIlAQTFxX9AC/teVMatxeX8cqtsCfjN7xYLo/m/nvnpff/cbV00nHodZGT9D73eVgvwy3yCX9iDERA/caNJof4tvdF3FouBs6ThiX9Ai+bIx7YLCkmEqxo9wI2iVne3DxQwLW0Y+HW2dKPCxq490T6BV56no/nlr+X4WZIKY1dHJETof2uylMSu1v4luDqUBZI/hrBlThq8PsTK5mrpsKmVkh0MaqRix2JnTv/wxIIoSQS3QgYILnqhq/+99oWOxF6/nRne+Lkp69A4Be8KWNTob35xc8bqzWeaEWvxJngs6eP7n808dkaknOcr8T8AHk20hQ5tbLJ+npz7drdJHu1psKukoOzRjTFbSaT0V0rnGSc/nNq8M3V4LN+r/X6veV6/XI7gSco6YiAMF1HnfD0SdGT7IqArIOXFKUmwATwqQkwBXwqAkwC3zEBpoHviAATwWsTYCp4LQJMBp9IgOngYwl4G8BHEvC2gA8lQI6TeAbIn8bV1YtvdXrV+dFKBdrhZ08evTg5McmfCLHgmmIqeIkvdB4gByEuCSaDT4w1eRwShYYCQwaGDAwZyDAD/wOPAZ2wNNpg2wAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQOSURBVHhe7ZtNTttAFMfH+UDqjgtUCjcIi64bTkB33UBSL7uCnoDkBLDrMiDCojs4QWDdBeEGlnqAZlcpQMz/URuN5yMzdpw4HmwpElVmxu/3nzdv3nsFxqqnUqBSoFLAYQVGo1F7EV7NYXZ2eXnZA989RDjRcXquCkDwnuedc3z9g4ODgcjrpAAK+Jh7FyJMeBGcOwI6+Pl87ovwJIRTHrAIvtvt8sfhzQmcESALvDMekBXeCQGWgS+9AMvCl1qAPOBLK0Be8KUUIE/40gmQN3ypBFgFfGkEWBV8agGGw+F2s9k8wsQOPq3oU3hBGYbhFJXfBJ/r2Wx24/t+YGuUVSoM8BbAhxG47dqFjYMg509PTwMbIYzV4NXV1VGj0bgvC/yrW3veN2zYPY7OsWkXFnpA1EnpmxbZ8O+VjZDYZq0AtPNwpTMF3G2Ws2YrUpaAR30/1Ptt2HWCD8WmxAOOH4eHhyoWdT+Azjy5PRbbjleiQIOfB7qFbAEXjcsCL653cXFxXKvVSIg32zFm+vj4uKuKCcoYUK/X+yI8/r236fAkRq/XOyNbow2L9aHbi4K49EgC0O5DQeqm8s9A1U7KY9dpjTx2nreFbMWREBugHbrGRZulGECREwqecq4fYOd3+Ilff/5rhfXa0GNhGyFXWjSNMB8bAWs3f0tTqIena2PZro/YMMbYDsdCR7jPz5c8APD7wgsSEwie1T3EByy8wfDEgGNww7OA7bMoniQAJrWFSQ+JSfXa6bLgtN4qdz62F8nQNW872FpGAYToyaSz77Evti6oG6eDn8w+sWXdnn+nGPVVV6QxE5Qg/l+HmZ9F8H+epQ3K/B7biSoBAn4y3QoJN2LexHZxcdy64WF74jjDHmnzjAIgIUq4vPc89xFdUnvBuuFJfOQzogDS5qmC4B2/c+Kt8Ov7h4A9h7ssZNe2nlAEPNlGqXHCe4Vb4XWMCBHV/H+Fidpc2iRC3kmO6X3x96paBunwjhQYVQuKCUR0dvbSZoNFwVNxhCtvLKTz50iCfJFXeQtAKV/MpTFxbFNfxy8oCj7aeRF+Sg0S1WZry2GqqhBE3lLieDKECfAzFUsPOo9YNzzdVFtbW/uwjQJ2RwRNXQ5zu0ig2l8vsT2PRY4DvJT/J4K8yThNfW2aVvj3tv0L66Yo9QgUZXLhoBoDbimO2TRFrQSIX8KfNSqaxLqhQDUoLgWw6Q7B7gzgU1tbUgmgWnTdAc8WzHbcUgKUHZ5EyiyAC/CZBXAFPpMALsGnFsA1+FQCuAhvLYCr8FYCuAxvFMB1+IUCvAd4rQDvBV4pQPQ3NvQbIYknj/+rs83P1zlOaolRl4eaCLwRrsKbYsBrN8hleKOnmf7kzLhANaBSoFKgUmDDFXgByviXE5gVmTQAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: HideProgress -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: Required - Description: Identifier of ui which should be hidden. This param is required - IsRequired: true - Name: identifier - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/IsConnectedToServer.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/IsConnectedToServer.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 2847c97..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/IsConnectedToServer.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: IsConnectedToServer - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMJSURBVHhe7VpBctMwFJXkrtJ04iOEGyRH4ASFKQNlBcxQOrBqb1BOALtMIDPtjikDTLgAPUI5Qm9AFl20tNavlMFgbNnyt2xLceRl8/X13tP7X7JqQvzjFfAKrLMCVEV++8n+MGD8mBIYEUJD5wUCMr8Fdvj9dHqBxZoRQJLfYNH5ShBPsgWyECKMsSKwtGIbNHq3cuQlCUpC6VqsAzICEEofYJO4Ek+BiJLFPZkS2Hm6B8kUXz99VPYJ3DTNRZvizTqgOaxOZvYCOLksLYLyDmhRbCen8g5wcllaBIU+B+j23fTvdXNJn0t0eHTz+xLQKdT139feAege4JojfA8wXJG1LwGtAA93Xx0YitzY8J3dvWemyVU94JdIGpomtjUee3+RcQCjcN8WeNN5gcMLbI6MABEn29gkTsSLS9GAk59YLBkBKKVH2CROxItLUR7QMywW7TlA2urb6ewEm7iN+EePXx5AQMUt9r/HuAekgbtKXuL88nn23lRo7TZoOoHr49deAG0PwNaU6yuexrf2DvACrJpl68aL7gG692/TO8G2e44vgbot5VK+wWQw3Jpunfc+9EZ5uDrrAEk+YpF8Nxgxzs56s95YJQK6B7i0wnlYYvKU0GEcAwCLG7gZX7++vkiO65wDVOSXhDmZp8nLP3dKgDzyEMHJ5ZtL5WVJZwSoQl46oPE7wTb29arklSUAgL9WstkYTcgrBYiAyVpZ2CRVdm5T8koB5JeWt5yNCcC8LJAqcYPjQbg52TyqMlaOqYO8sgdUBYQZJ8nz33x5SAEiOvS+ukNj9nkZW9Tt83K1/hFkknwMCiNCXSsfz93+NnhFQkE4TK6IOLE970/72u986yZvrwT+nNOTR9WlhQvKoQny1gQobGIKEZoib1WAsiI0Sd66ADoRAh68la+0mVIpONtjdiMnBCgSQUWmylZXJErr2yB2b0/G103eGQfEJHPf5SsecsqUgzMOKBKhiZWP53NOgL89gUY/xLcK95okX8Yh1mJkOfQn/f/+928NjJ/YK9BdBe4AHs6ZFe8jx7cAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALqSURBVHhe7ZtNUtswFMdtJ9n7CO6inWGXHIETtDu+PDG+AdwATkBvEDIJC3Y5QXME2HXaLOAGZJmZfJgnqDtGllGeJcuSrSyxLP3/P733pCjCcezHErAE2kzAZZkfjUZBr9cbJUnSd13XNwDQbL1eX8Zx/IzVmgNAzHe73QdDjGf9LgHCAAvBo4mB+RsDzRMbPolabATkAID5H9hONGrfx2rJpcB0Ok2ynYRhyKwT2IGqai+qNxcBVQnVtV8LQNeZUaXLRoAq0rqOYyNA15lRpQu9D+Ctu/Rz2UbofQlPD298mwI8Qk1/3voIQNcA3SLC1gDBGWl9CnABTCaTC0HIlb0O2iLRznM1ADp9MfRE6I0F9vyCdSJ0KEq1rvd3u12MHZuVAt+xnWjSful53iNWCwvAFbYTTdr7oGOO1cLdB5CwGg6Ht9iOVbQfj8cXnU7nJjuWcA2ghetqnuiMouinKGjuMig6gO7vtx4AtwZgc0r3Gaf1tT4CLADTQla2XnQN4H3/Fj0TVF1zbArIDimd+oueouBscfZw+ue0X6SrsRFAzG82G/LdoO+4zvz47/GABQFdA3Sa4SItGfNB2gbuOy232+3g/uD+Ofte4yKAZZ4Ydh13Rpsnf28UgCLzTuLc3n27Yx6WNAZAGfPvkUF9ZJ8JqljXy5pnpgAciD6aUOhSjSLmmQDgsmFMKqYJEETNMwGQm5awfg4AwqxKCCDeP1mcXJUdQ4Z5Zg0oKwjzHjH/f5PiQIX+yq7QmHX+re0n1b6oL+WXICnzqa69Icia+XRg5cvgarXyIb18akbOYc/Ovecr23xtKXD0+yiA4+w5rDgBBaIwEqowXxsAMjAGQlXmawWwL4QqzdcOgAcB/nfh+t9q8TFVSlR7bVYBlpBP0iHfXKJ5LSIgdbgXBMnmtQLASYdSm5x9NmfKN0I8UcxIqGDmUx3aAUgjwet4vzzX+1Jme8uDbMRzEgnhIvzw278Rwq1IS8AsAq/wmGjzkbOzXQAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: IsConnectedToServer -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/RefreshEntity.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/RefreshEntity.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 4f3ce65..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/RefreshEntity.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,35 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Updates an entity without needing to refresh the whole page via passing - an entity. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Refresh entity - Category: Client activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAVFSURBVHhe7VtLUhtHGO6WBHJ28gkiTmA5F7B0AuNNKKp4SAtSlZUhB0hELmCSTarshTCvKjuLwAnAJwCfAPkEsDNG0nS+TxmRGTEzPT0PZkpMV00J9fP/vv/V3SOEKErBQMHAY2ZApg1+6d03lfYaQoljMbK2Pvz8Xd90rZLpgFz2l2JRlOX50l9f66byzQYBRC1lTZVLvcdLADkQqmFKQOoxwFQg0/7TMebDRtUI0+y4gClzdv+CgIjEzcwwT39hOmFEHQcVRNfM0Qbk+cRjwDiXIqdKKZq5AD9OcdHzvE5592NAufQmN8Cd0kfM8+YEkO2clih5XgflXgyI61O6BU3bdfLo2nXrFWlQx9Cstz96C0gsBrzsqVp1MHgthGqOU6hHUUJeKKF2/t6ovg9rWTof17Xr1knEArh3qA5usXdQXT/w/6Vz1cCCuz+++3YZ5eyuAxOlPRECsGs8BfB6WAFgdnVVKZ3SasKOSatfbAKW3n5tm4CfACEJ87c3m2kBCztvbAKUlPB7R1HW+5vK/FOey52PGFoLAm3uzV3pRVhB0+oXmwApZMMl3Eh0TzryelpgXljezD1xaTwoXqQFeHre2AR4AfUT3ouYhwLqt07iBGQNyHT92PsA0zxs2t8UkGn/wgKmGTPVUNw3P6a3uKYa1vUvLCBLC8BLw/7HjeqCn5b29/ebSqnFUqn0DH3q9iNQdy2lvLAs6zM+j1dXV890ms5fFiAIZW17Cba3t9cGeJwt5CnAc6PVnIBnf9TXWMc29kHfSzzrUUh48CwQJGSv16vPzc3x/R4BGxdYRn84HLY6nU5/Mvjg4KCB+n9gJZ6WlpsYQA1WKpXzqOBtyyCB54eHh4v8boPHQU3SfTxLLgggeAi5a5v2naD0dTy78PVXg8FgYWVlRfLB309R30K9171CjRrHnF18Ejzdxbdk7gLUEqSj5l2FwGHOWzDna53blMvlLuJBYAwgcV7zJG4BJmd8+PxYWx7gt+CzwB4MnuPo72tra+3RaLRlHDQwIDYBSokz58LV4eBN2Nse+CujuMs/YdYdgN8xBbO+vs4xXdNxCRBgfXIuimuvtqiULrlDDNolMuJD+23nWHzfhjZ3TUGwvx3wNk3Hxibgdv7JDqygb7ow/BaXp/9rnykMmjfWoAO8NuClEgN4xpcjq2VKgkfQenDwJCS2BXAS3vZ8/AlbWmV1cO19EdIamOKuJ31hDZ9DjnN1YxD1SnWovyuIK1d+c8dOg1GEdo5hJsAGqBFnPx9HhswJiCN8EmMTcYEkBMlqjpklAGmxhTMBt8yST/gY8PbmKslfiPjd+GCvfqXbp9up0fe+wA8U4kqDhyK223cHZ9gKvwqVBvkC8yHMMQR4Xnp4Cq2TD0G16cguNfzNx7PccwHk9A5ou0tPusXSaLe11oLWoirD9baKB6vQBIx/cj5Sz8c/Qc+gxAUPv8cbavf5AqdK13bdCcvod7VJ8oEg5fl/BNi0/IHzwGaUtTBnG+NcvxjXzZe7LMB7PgD5zYQARnkv8Ki/xDF5J2iu3FnARFj7QmTbeb83DYTAj46OeKfwK9ruWQ1vjXQ7zMwJsH2eWup6aYpEwCpO4NdflpeXx0ERKbTO7TN8+wXqeZ1Wc47lIQDffw9zusyUAGfAw1X4IoD0dOlR5xo2+F/CXqpkFgO4yQHYu1SHwHcMjT5nvQ6kXzt9HnP+EBY858nMAoJA8sUIgDAQfo/PQBntMy83TX+GMfnpdXNJwERI+9XYS4B7BqCNiXvYrtPH5yfUnegCXVSLKsYVDBQMzD4D/wJGWJsHb7laOQAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: RefreshEntity -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Entity which will be refreshed. - IsRequired: true - Name: EntityToRefresh - ParameterType: - $Type: CodeActions$EntityTypeParameterType - TypeParameterPointer: - Data: AAAAAAAAAAAAAAAAAAAAAA== - Subtype: 0 -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/RefreshObject.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/RefreshObject.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index ed6d845..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/RefreshObject.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,34 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Updates an entity object without needing to refresh the whole page - via passing an entity object. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Refresh object - Category: Client activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAUhSURBVHhe7VpNctNIFO6WHQw7c4JxToDhAjgnIGwmlaokjhdQxSqEA4AzFyAzm6mChUP+qhgWJCcInCDhBA4niHcEbKvn+zxyRrLastrWn0FdpYoj9c/7vn7v9XtPEiJvOQM5A78yA1IHfuXvbxVVsFpSqKqQspx5gpQ4EX17+/2zO5emsvoIIHhRkOdzAdyNVqmO6Kv7piRYPsYK1uu5A08Q0FRqrakG+AmQYtl0kqz0H5isYfObwNvvyj3H+yclrZ8wXCe27iszyuvXgNhEzebEOQHZ3JfkpMo1IDmus7lSrgHZ3JfkpIotDnjUUuVSt7slhKpJKWo6SErICyXU7ocnpXfTQs5kHMB8otT9cS6lao4DP4heEbnBBvd+f/u9PchBUmix+ADE5GcAHhoQ1LCiitYZtSZpDiInYOXNt00T8EPAJOHWj+vnc0+AkhJ272rKfnddvHWXOYX7Ej17UeCZu6uU1sO5J0AKWfWA6IvmaUN2RoExb79euO3Z8SB/ERcxkZuADug44XXExAV03LyxE5A0INP15p4An28xZGDuCTDE6+seeSQ4GpmZCph0BeqX14BMEYBi5KWpxszaPzsEoK4vlb0zKyDT8bH7gKRt2pSA7GiAqeQR9c+0BhwcHNSUUsuWZd0D3opzCdzrSCkvbNv+gr8n6+vrn6blI5ME7O/vI6OUW7i8ecUYlCCEzrMJIowLK7GbgEmO32q1KoeHh2fY8VZY8OQEfSu49qAxbc7h5gnzVXk/sVxAKeFRx1Kv+zpMtQdC1ovF4jkErU2tziBiYWHh/OjoaJlzEDy0A8UZ6SHFPX/kGqCU/dm9AMpem6JotRkhjosSCZ47iKvsHktbx7UHW3/c7XYX19bWJC/8vov7S7ivU/kynn3EnE0HvGfOUXIj9wH/FUNZD9SXxEaPRe4ShOLOexqB93q97Uaj0QnSCKp8oVBowmzqQf1InO555BrAHF/27SWYAh1TYIPwg93SgN+GQwP2YPAchz6XGxsbm/1+f3vSeokQwEVY7fnnaYklrwbK3hfjBIO90tN77BNq3QD4XVMw9XqdY5qm4yI3gbACUHXh9DwOCtqwA/DGILimy+GVdTIkZgJhCYDd4oXJ/7vPszwu8EEyRe4DwhKgcVqx7PwkeVIjAILxiOsMBYQ2fJkkrO45nejo8cl+uH/T4Feuxs2dmg8YCsSTAL6gOks8Pw1xN8SPDp71ZeMswqQxNk0TSAOvb82flgAci0vICRgyS17hfcCb66s4vhQdDYERq1/pnJdbUOdoXDRVFfiVKpMixxmydvAJccBj3Tw+DeBHC6YLTtM/BHgKrhV60npwqjXX6VLGb17a5iMAcXwDZ0hn0iJxPncqPkvYtWk3w/OGmolVaAIGX1vjq2vBT9BTaLOCh93jqxRvfoGs0pOiu2Gl9h0wnJTnm+ShUAha/kR293wa7jHnJsZ5vhifNF/mTgGEyFsA8sqEAHp5HXjcbyNN3g2aK3MaMBTWKYjsMN8fB4DAj4+PWVN4iT4+rWHVaFKEmToBjs1zl5o6oCQCWnEKu/66uro6cIo4QplKV2HbD3Gf5bSyeyyTAPz/R5jsMlUC3A4PpfBlAGE12APGxBTY1wH/ImxRJTUfwCAHYG+OOji+E+zofd43Be0ymzbmfBAWPMelpgFBIJ0XI3SEvwFQoIxOzsug6a8wKj+6biYJGArpvBp7BHD3ALQ6NA/HdC7x9zPunU5ydNNqVD4uZyBn4Odn4F89l3kKleyr5AAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: RefreshObject -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Object which will be refreshed. - IsRequired: true - Name: ObjectToRefresh - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: RefreshObject diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/Reload.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/Reload.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index c4766dc..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/Reload.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Reloads web and native applications. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Reload - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATJSURBVHhe7VvNbttGEJ5ZUafKkWLlXuUJKvcFaj9BbPjQ5hQZaFAESKyqD9DIfYDWdE9FgUY5BT20sZ+gyRPYfQK5d//IsfsDiOJ0RpYQiqRELrcyqZoLEDDEndn5vp2f/aEB8pYzkDNwmxnAMPAPPv2iVlDuCwSqA2Al8wQR7DukWgc//3Csa2uAAAFvqcHhQgD3oiXoMQkruiQoP2MWDr5bOPACAqEiXqvrAQECAHFdV0lW+iMBh6xeC4TA5sPH5FXxy6sfQ/OE3jDz621qb9AD5mdrJjXPnYDNzx4/2nz4+Tk/Xfnbz4Lpe1NW504AILWvkyrW2NjdgMGm7w0ZmD8B3nUEUi9or2edkei9GQNzJ4BcagEQL1CoRy7s+M01fW8GX6qnr5lmVVODdOVN7Z27B+gCuun+kR5w0waZjqe7brn1HpATYOpyiy4fmQN0Y+qmCcmrgCHjeQ4wJHDhxRc+B5jOQB4CpgwuunzuAYs+g6b25x5gyuCiy996D8j0OqDavFwFl9YR1Ud8pFbjSxs5WAUi6iHgEZH7OyjcP7WX3iT1xEwSsNy8aCCp5zgCHAWOCTkmwPbZXullVF//+0yFQLl5Xq9uXx4qKLyIC14ASV+F0GHZLusYesm4jXR2pxGTGQKWt/96ZJH1G4Op687iuL8QUaTiYbX5bl1+E/AjnROkePVnggABr9DtMICK1ziJdSLsELgbfSjcP7FLKI/8Lb+R6wZdnm+JEdTr6rPL9gj8hE4/uannAJmlIhT5e4TJxuA7DjqtC/tub5ZHiMtbbqGNSgWu3bxyQlyYnlQ9gI2v8Cy9DhpGrdO9pa0o8CLHfY5Pv7/TcGHAFzD6LVUCOF6b/mTnAmyd2Eu7ulDO7PIuh4StK5caAeK6BNSYiHmgnTO71NEFMU54XA5mhkGmQqAAatU7+1LLHXC0Z96X7WcmvEwRoKgwOVsEL+PEvB+Ep9RpgxddqYWAH4jiJW0S15ck6i+f13qIP/W5fjjUzqfpzkAZvKpb4NZO7TuJCEhCmlcmdQ+4sEtHaYHPVAiYzmRS+dQ9IKnhUXLV1uVa+UnvLucADnN5wltYDpCEkSijhg0x7W6Rd27n4cnrvRYpjbwivB8FNqwyjJfXo7ODNyd7pY1YZZBT5pHugEn6xwDf471AqNFR4xVca3XcZzTO1AkNhMCA1BYL96IGmed7mTUGv8brgkSTgQhNr328vO5MszdAgHxt7bhqhcvn/jxBTtNtCr767M+2f38xwP7b2DngpkDfa15NfJM8Hle2wbITTGLHcuvdhnLVr15ZPjewucx+GdsDkgz8X8rw7DXubV8919NJuPz07wYO8KdJ8NR1YLA7S1dqX4JP8wCvJ3Ae2JH9/nQAhOUnFxWraH3NcR+YZV4Cr0WdGKdOwPDYC90dPgjlf9QINgkJ/t74AAvqj5NvPxgmxfLTf2qFYr+ODnwiW+BgRZH1P3zD4NtRnpQqAd6ENzzIJMWnwaZrEMEOX8U9VEltJTjc/3tKnewHHOyvyO9Rsza1ggB1++B8HBe86EnNA2aBfH8xAh/Kqf9sQobu3uM+e3Fc3q8rkwSMjRxejRE9kKsxTmh1NrYi70aAj/ndW+bnICrRJfWoXC5nIGfg/8/AvxIKDUjRsgFSAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAASuSURBVHhe7VpdThtXFD53PIYg8eCuoM4K4mQDhWceAhK2pQopthIj5SmlC2hMNhCSl6o2rY2gkXCUBFaQZAWQFeCuAB6q2sbje3vOOEbj+fGdmQvMjBhL17J855w533d+7i9A+kkZSBm4ywwwN/CtViufzWZbQogCYyyXAIKOhsPhVrVa7Qa11UEAgdd1/SQhwK14L5CEh0FJ0OyMIfjXCQRPMHIUtUEjwEEAgl8NqiRGzxeC2uJIgYODA2FVsrGx4Vongr7opp5XtdcRATdlaFz13jgB+/v7T7CdYzuj33YiVPtVib1xAtDAOhVVbHlsOy4Gq/YrcXAbBFzNI3BeceFirWp/vAlA0FvYugQe27bdWtV+JfQonI4CqgwmXV4aAUkDGHTechtFMNYcpgTE2j23YJy0BgTNqVuweeoV6VpAkfG0BigSmHjxxNcAVQ+kKaDKYNLl0whIugdV7U8jQJXBpMvf+QiI9Tyg3OwtCQGrANoDjDTcVIW8GXG0vQbsFIB/w/+ODmsLX8JGYiwJKDd6FQHayyvAEnR4ktPFVn9fm98LSkSsUuDnxr+FUvPyBJjW8gueAKMX8wikXWoOzsq/98ZR8v0z1jk48yImNgQUm8aTEeifGYhCUC9OniciIMNOSrt9TBsAAj/W+T11XBTHggACr8GoDfa7CONcbwsm1sDg9w9r84wa/Tb/E9wZ8nQII9in4h+9OoF36LSREHkNML3Esid25xDwgZ7dOq6yi1kRYYZ8BuqYNo5jN6ucSVzcIuBxS+QMyH5ygMfDlE5trioDT3KHzxe6h5sLFTpgCZM6kabA/HD4wlHsBK92Nu/tBAVDMkLwN0HlIiNgXK1FZdpgvo3ebAcFMSl4DNjMNIhXCmRgyep9Gsv7enDPW6u9rODFigCc6Ex5S3C+5yfn7SAmQ10Y8KQrshRweINpR2FC3yyiblf5sCrilNls+HXupTsWw6Ch6fnOs3uhCAhDmlUm8gh4t7l4GhX4eKWAqitDykceASHtloqVdnvLK3+LH7AG4PICm8fH0UE3uq7zpqjX2WK50T+XVW4aGju1+ftStLYHio1BQWMwnl7jeoKD9uX95tyar2EQwZ8GfWGo52WXsNFwXQxdjZa9j3Fj6eoZWhwBz3nJOFIALxxXPW5zyd57ff0IPgPGMhXIUEo1/YVVTjDW9k0A3bY2DOMhkhDJsEQhqwK+2BzivcPp9b9m8K++a0AoxkMIlZuDqTvJExW0DKaVYAiVsP5nfy3D2ccp7wN/06kt/OI7AsK8+DplsGRXSo3Ll4F0YpUv7hqVzAj+mpJjcMYM2JmlK7Kb4F4RYI0EZoy2ab3vCQCBr7yD3OJ/l7/hMy5e5suyHePoCTC3vWAbR5/XbkApJYDx4xGwfz48nTOL4nqzT3t/BW0kfjKXwM6tNBQTrxB8XRZJ0RJgKXi0kck4tGRzAxmg8eIHfvW7qRLZTBCt7FqrvbkeGAkcfcA75GXoMedR5yO/4EldZBEwC8vVwQiIHzEiZttIHmdwgcXzrZ+Qt783lgRMjKSjMeDwGHd8H+A2eIEJyFEfAaZI0YT4ijsax7JCJwuctD9lIGXg7jLwP1/pHncVLK9sAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: Reload -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/ShowConfirmation.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/ShowConfirmation.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 5cc90c8..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/ShowConfirmation.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,53 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Shows a confirmation dialog during the execution of a nanoflow, to - make perform actions based on the user input. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Show confirmation - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQbSURBVHhe7VpBUtswFJVkd9HpJkfIDUp6AnKC0GQYCBugTdolzQkIJ2hZMqQDbGiYNpScILlBc4NyA7LqsEj0+xVIia0EOfhbtqk9k8mMLX399yS9//0txrIrYyBj4H9mgM8DX9r4mHeEPOEMVhjjudQTBOxqBKLRvTi69mPRCFDgXTH+9SyAz6IFNkQSCn4ShJ8Rl48/PzvwCiRnObWq/Xg1Ahjna6lf8gsAcGC4pb2XtgUq1TrMNul8O56rE2khyYRHXwFpQUbkZ0YAEZGpNWNdA0ob71ddLvYYn+QY+TvmYAiMD1CkTjvt4zNKNhOjASq/KFfrPVeIHoYkjDRT8JMYlcOZWMX7p5Vq7ff6ek1Ta0pSZm1Z0YD75Ko3AWm8eF46vGeLBCsEOGLc9M64gQVMWqTLfpZK2zkjXyEbRE6A2vOc8e1ZPwGgz6QsqhxD/QSHAkjw7X2eFy9f7ITEZ+weOQGO4B4QAGxw2W4VOxdf+1Pvvp+3BpcXrR0G8nDWY855yYggZIPICWAArz2gQDYW+TwC94u3rZ66hsSrdY+cAM6FR9FHt6PBIhD3b2rDf89RC5SAUoO2GgWm+3z63+2ePQCciwwMz2npiHwFBHV3mido0eL2NlJCEkEAJkh7qgij5QlYxDCvmKAUz28XKwHTWUfgKH7+0hsMsSR3EA6euXdsBCycdfRZ5Qkj6RR+tFueqGCGs3yL2AhYOOsADZUnzCtgLg/P3CM2Avyu2Zx1q2HQPAd3LWzOeiIJCEoUdbvEbAFqYEHtZQQEZeq5trNeE7RNZGJqgraBBx0v04CgTFG3U6kwVoBv1K+89WGf2n5Qe7GsgHL13dpDKowlcYBmBWuHQZ2mbBcLASD5ih+EDFQyp4R+ZysWAnDQvh+KcFw8lGH/ioWASUVYSnzXV+UvfO/HN8DO+VHXPnx1bsJ3meJmHE6GGdOEJ5YVEAYQdd+MAGpGE2RPbW/j8Z55GnCDHXNBgQQ9Q1TZrG+rz99B7UbVzu+vtgXUtzvqwcubtf0kgGcSrrTw678xBrGL9zA80Vyowif4kbNJY+3pVoDJmxFztO+S2gpQ1diRFAWsTWtsLTN8qbSXK2/WVXKzs0y/EG3V8T7tp4Ajlt5Yum8CHZU1OWCKq6r/9ESIfigCrgVnb9XncNM4tp6Th8H1rdrK/VnjvBcE4MpyikkCr/wjJUApvQSuHbSe1Pz/vNIOKtua5cfGISNgodIDHE5q/t1DMmGlJI6EgEeU/qDTbn2idJjaljFT8g/oF0GVN3DuP8qCBx8la+C5n1Nqh6nthV4Bc8ArpS+mATy5CGIYTqTSWxHBJCt99AQkXOmjJiDxSh8RAUrpYRdfL5vUymzT3hOjwCSnT43SE6+A9Ck96YpSr7mkBjNj8TLwF2oslvTp/LjwAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPBSURBVHhe7ZrbcdpAFIbN7Z0S6CCQCqCCOO+ATQUOFYRUEKcCCJfnOBVAB6aDuAPzzi3/75Fm5JXErqTd1QqLGcZj9nb+T2ePzl5ubspPSaAk8JEJVKLET6fTVqPRmJ7P53alUmleAaCn/X4/Ho1GL6KWEACKr9frz1ciPKh3BwgdEUJVJALxP69QPGU26dWi3hAAiL+9ApePk9CWToHlcnkOVur3+5FxoiiQZHpCHlAUYbrsLAHoIlnUfkLzWzZnsgpdLBZdBNoH9MOA1GJ/yDd2+G2Lv7PBYPA76xjB9jI91qYA8wsYs4bQNQzkm+ZNPD/ea5dgZgD0D/VC0VonlGBfVgB4yRWFd2VCAIFg1rYgWAFQq9UmnjCZfr+8ienwB+Caqg3S1jMOgHO+Wq3eCQZuILDHHMPLMzqn0+nd3CcwZKX3aYWptjMOAELfiWCwg+gegt3GNxL/b4fD4T0g/AoajrpfVIWkrWccAER8ChoHkeM4Y4/H46NQZjwY2gDwTsThcNjGAeBKja/EQHmTATTt01VpZxyAP8/9vxAZFBiyER5zsVxFVJI6xgGoGuPnCagvPnGjQJwAsFqtHrgJA/FdAdhO5jGqgOPq5QrAf+qY94/iJgxjAb4/sgqUtc8NwIWnTps3CJYdvCrFt4JMT+Ly3ABceOpj5glRG5iJ1Sk0yA1AhG3WnnpwbGcA2HzqTgJQ8FYjVZzxACPqFDotAShAuuoq1vcEbdN0Zk/QtnDV8coYoEpKdz2mwtgue+UXbvpdd/+q/eXiAfP5/NZPhb1F0IR7h6pG66yXCwCIbkeI+DgAuNoTAQAK9wOsf3LxAO4Ic63vrfm57ucK8K919RiwzAPyoO7SmLlMgRKABQKIKxV+ZUOFKjAxSXJLTPUOEfq94/G3zCDT5aK9UbfEtrqNYKbngnjoehK1hQDgMuFIOJ7KxAMpL+/mTTJ1oqExziRfeVtUCoC7sdySBoQQrSR28Gwfbv8sng4n6SNJXYwT+aFwFKxx8PpZ6aqsbFDZ+prt/Rsh4qUIGPKC377yOFw2jq1y7a9BXm3x7hq3giIoHp7FSxHOiKd9WgEw0qPPqIvWb3v+tg47kniPNgBxkZ63Prw9/10Sw2zV1QIgLtJzwYOrL99siUkzjjRTEjsVgyBEbsX1vbfKG0P8LI1RNttk9oAI8Yz0vSKI1x4EXY30lzwqswcEOnc20hsH4HqkNwqgCJHeCABGejz5Efb3Jjajtu6xUsUAL6cvTKTX6gFFjPRavcbGFXatBpedXSbwH68Kzsrv26JxAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: ShowConfirmation -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Set to empty to use default text 'Confirmation'. (Only for native) - IsRequired: true - Name: titleCaption - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Question - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Set to empty to use default text 'Cancel'. - IsRequired: true - Name: CancelButtonCaption - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Set to empty to use default text 'OK'. - IsRequired: true - Name: ProceedButtonCaption - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/ShowProgress.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/ShowProgress.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 6e078f3..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/ShowProgress.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,38 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Shows default progress bar -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$IntegerType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Show progress - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAO9SURBVHhe7ZjNT1NBEMB39hVDIonlP4CLQTGmGEy8CTc9FVCkeqnEosfC0RP05g04Kk2AixSBQG/egBsXBKOIx/4BJpSTH/S9cVY++va91/aVtrbovISEZndmZ36zOzuzQvDHBJgAE2ACTIAJMAEmwASYABNgAkyACTABJsAEmMD/RADKcTYcjgeNy9/jArEHBLYJAfTXCB9mUcAuWbJmWjKdXnyd8WuVLwDhoRdthrRmaXKPX8V1njeXs2TCDwijlKEDj0fiBlgpENBRam4DjYekwKcdN7p/fv28vVXMrqIABiKxcQB4RVu9uYGc82cKiGYAce/azW6x/2l7s5BQwSOgIk+DU05BRNwQAGWfNX9Wn2/W4JNYyDRFCKQY98pLFsLYauqNyxe1micAdeYD0tyh4WDeJMwCisRyKump6HymV1/q4aPYKBpAIETedhTZHMour5wgvUwwpDnhdF6C6G1055Uvy++SUxKwl/7NnvkGIqiSuJevLgAq+pTwovbJKvJLb5O71Y9XbTQqW8HEhOYD3WDhcNS2o49HXUegPxIblQCTtq2fWVlIttuVXYkftDVh0ywKDFGSdCmtxK1v0y2+rmY/awxERtYpEfaczrWESKwuzNDuzn+uHUDRD2vKETQB5XwAAzuErqfazvtxqpw5FKC0Yxfcdcq7AYAI2SflTPxo/21gYLLRHT+LOBprOgBVveqfVxLUtnR6ST/7dDz6yolCPee6s767dPe8BYoZjXSl1NOpaq/tAQAz9kXUreA4R7vVNqJW+gYHY9pxFh7BcwFABA2ABFPb8kdwNHxRdoEp9XyGIFzB8wBgaXUzJTztVjicbs3k4KjLQqElmFpFsRK9x6Vx/qMyXrsV1Ijrzg1Ho8HAr0sHdsFitXQlBtZS1quXoRa53ZkYXTsgPT+fpS2+YTeOWstx13mqpfUV6lbNET3YTGhqUMz57gVMlMMknM/2VEtbBqz3R56PVmhbzcVV5Ol4rjt7GWqGtNL41JCCZedJV2UriU9F6Jag6lAVSM4aoebeFVjg5MVK5ao+r1crQBwr1MgVrbsfDD2bEFJqiaReTlawbmLFUf/bdRV9Edrf29novH7rUEi4Q0IX7FXoz/vFy5VUkl60Cn8l3wS/7H3Yutp5exHQaqUrMVRBJP6aqHq1MtG4v7o4877UomW1nmdnDbGP2kyCUd1WuJSxhccxQzdXhs76Zu5Hy1Q6PZ1P4OdXypJMgAkwASbABJgAE2ACTIAJMAEmwASYABNgAkyACfyDBH4DuY8vP2OgKx8AAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMZSURBVHhe7ZhBbtpAFIbHNlB1lyOQG5ATlJwg2XUDol500VXSEwROEHZdEgQssktOQHKCkBtwg7KrBAT3f6oded6M63FaZNM+S5ZAnvf8/m9m3ntjpeQSAkJACAgBISAEhIAQEAJCQAgIASEgBISAEBACQuB/IuAVETsajY7q9foFbNq4m/FdxMVexkZRtPI8b4H7br1e34dhuHR9kRMACG9C+CgW7uq7tHEAcrPdbgcuIPy8KGez2UWtVns6FPGkByvhEybsaTKZXObp++0KmE6nV3DQz3NS8ef9TqczyIoxEwDNPJbS0GL48Ja9tk9ImKjWbrdrIa4r3JSbtAs6vna7XZsWZQVAe56WPZwdJZ4o0eD3IMvRPgUW8T0ejy993ycQr7HDfrXZbE5sOcGaA4Ig6HPx+H9adfEEqtfrDSnWeMISdlS9KIkblwGAZh8Ee2zkAPtoUWQmyhxLsWJL8H3fpjLO4zK2AGVOELxOLf0lZv44bfjx249mFPgjT0UtpFzD6Z+Iv/38zqk0u7wDuWGOce2UFtrC/bStsQIg/ow51wxIvAo85Ac4/sviXUQVGYNtcJ8eD20fuL0BAEYtZvSsGQX+ddWFJ/GiGbpLxw5tzVwALHsqY+976rzILJQ5lmd9W4nM7QQNAb/K4T9z2QAs0+qoKmjLSHmLQ1GP2LXtjLiNycsFgIZIW/Leyy5UB7IK0M9wAMbk2ZLgI0uCWlW4/fJ+qV6iExUpLcFUcVVQa8ySoFYV6JlRc+Mz/3dmmNlLV1E4xWQ7y6AdPjYSo00AbyDivXN6KN0gHY5Q8uasnb9BExRyvdYqAFIh76VhOHc5X5e9IuKZ5+JX9IHEFltm20mnKiSR15Y4MQYYqhJ0WHquyoqgStVoNM4QGyXsNhda+DicOMCMk1AtkZQ9w0XfD/FG/68l+TyHGefrPLPSn7t+v3A6edESo28ElmNy6UIzAnigPObyUdQJQPKS9F6jQxM/N5RIg/LSEjE9ItkNIXxVYizyaiEgBISAEBACQkAICAEhIASEgBAQAkJACAgBISAEKkzgJ3agNqJW1gM/AAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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/tmzigx8BRsJuwQgACqIT1MImBYIGwAsAUyPGPURMChAABjEpzQCpgUIANMjQH0EDAoQAAbxKY2AaQECwPQIUB8BgwIEgEF8SiNgWoAAMD0C1EfAoAABYBCf0giYFiAATI8A9REwKEAAGMSnNAKmBQgA0yNAfQQMChAABvEpjYBpAQLA9AhQHwGDAgSAQXxKI2BagAAwPQLUR8CgAAFgEJ/SCJgWIABMjwD1ETAoQAAYxKc0AqYFCADTI0B9BAwKEAAG8SmNgGkBAsD0CFAfAYMCBIBBfEojYFqAADA9AtRHwKAAAWAQn9IImBYgAEyPAPURMChAABjEpzQCpgUIANMjQH0EDAoQAAbxKY2AaQECwPQIUB8BgwIEgEF8SiNgWoAAMD0C1EfAoEDoAEjUpxoN9pfSCCBwE4H0AuambwBIKQa99ZpWptsZAQQQiJ9A7cpUydyUJ/166RsAQjrHvI0k6+xOv0b5HAEEohdIN6S6vFWlIz/260WQAChKkVQm2c0ywI+VzxGIXiCZsosDwLZf9+uFbwBk05l9Qsorcw1ZltW4bH2mx69hPkcAgegElm9q6rESdutcRSnE4Gyy5qBfD3wD4OAz1hVHyp97G0rVJrvvvLep269xPkcAAf0Cy925WFOfKjooW8L5jZq7ftV9A0A1MFtT+zPhiPPextz1xm6VOo4tLL8ifI4AApUXqGlMNbVsbt5d487FktbPzyTdORvgT+DJu6t3oiNvJd+0hLXU2650xMXcVK5vcir73sTH2YEANfkKAggsUKDWvdWXvNNura9Pb1XX49SSvKgpKWVC5Lfs72k4GaRE4ABQje3snX5aCOtXwq0apHG+gwACEQq4k18I+eyBnrp9QauGnsjqTKAgU78XtlgXtAjfQwABzQKWOJ9wct8OeuSf602gawDerl8r4DiPWqKg7g7Ia//xBwEEohdw5547AUeFcF6eSdQEPu33djT0GYB3452/mG4TCdElpf2EtGSbmyYd0StQEYEqE3CfzpXCOmkJeWymJh3oan+VCfHjIoAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCAQWuB/Nc8cSJLsdNYAAAAASUVORK5CYII= - Subtype: 0 -Name: ShowProgress -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The text to show while loading. - IsRequired: true - Name: message - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Block the user interface immediately. - IsRequired: true - Name: blocking - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/SignIn.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/SignIn.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 0c813e4..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/SignIn.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,41 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "Tries to login using a username and password.\r\n\r\nReturns an HTTP - response status code, for example:\r\n- 200 when the login succeeds\r\n- 401 when - the entered username or password is incorrect\r\n- 0 when the network connection - is unavailable\r\n" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$IntegerType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Sign in - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQnSURBVHhe7ZvLTttAFIbPsdNNRVVA7Z43KPQFCE8QLqpougFa0u64PAHhCap0VxHUdMNFVbg8AeEJmj4B2beFIKFuwHN6JiklJI6dGY+DDR7JQiiey//5nzNj+xggKQmBhMBDJoBhi8/Mvkvbtj0ORGkEGgXAQSA4uCJr9XD3cy3s/v3aNw6gIdiyXnDHk/8Fu42CoM4Qxu4aQmAAmVeLo3YKx30Fu0AggMre9saE31UK83dlANeCkSANSOmGpXULu6C8szGkW91EPV8AmdkPI7YlMkg4Cigm1QVTHQgPiJxjBx5VUpY4MTHwW20EiCmuAKRoC50VC2FOWzBC1RHWYfscn8nm2PkhFM2Y0gFAik9ZzhELH+ltmPIKQ4UQK26C29sIDQB3pBNTOgBMZxdLCMhXvlu5EWwjHX/bKlZ7A9U8K0wATEA5pnQA4AGe8ThbAhvViaAKiAcoxI/y7mZFRbCfA8rbG75xyKu/dqCq7Vkujd+K6uXt4tDeTnGCl6tCUPFBwIVV1w1AWH1Fst0HD8AtBtxaplTnlN9lDjpn/dpX/f3BOyABoGqZ+3Z+4oD7dkVV9cTOAc+XL0ZVRXqdHysAw0t/5niN/v5s6WLNFITYAJDiLRSlhnCEvCkIsQBwS/z1pWcIJqZD5AG4imcIAmDhZ2GgGnQqRBqAl/jTwkBzOgQskQXQD/GSXSQB9Et8M562lbDv1vza7yY+oNPhV2HA9clTpBwQlvj4bITwMtDzQR2XRMoBp4WnJQHOgo4Q3TpGY8D0m/drSGJFDobfE5T2tjZWdWLM8PL5vAX2l/a6gqz500+Pv+qKdatnzAHT2dxHJMo33yThIL87XJnK5vh/9dLNCXIrLOOEeovdaxgDwFaab+/GIljWHWy/IBgDoCvUq14/IBgDIIQodIqhwPPVC0Kkbob2dzfzQBICvzuUhxDr5Z1iIyAGLW4QCGjdxM2Q0VWgF6F+O0GvNq5XByn+d+GJVoDtiFO9DDoq50gnXMLlmCnxUpexGNAvSOeFoarJvmIHwKT4WDogAWCYQDIFDAO9y+bkkq58Ox17B8h9xb9D8F9+WKxWYg9ATW7n2QkAF4K8l78pM9nFk5nXuX0+5mSecFDiButrzfn2/jsTJV/njhA5EbproRo/7pG7MZnzf6ya7h5qoiQPSjWnyUSqbI2Db0Wmy/YCJFQAgg7Ku8UpFZd1TZa2wcmjBRmNZGlPIGEBIBBnjki9VHWk77o5w1+AkPwChGiSpwbHANXvA3jKtDgkQLq8a5Y5C69zKn/1iuy3quKlU3wBtNspOJCWFjWSm1Xs3cu5ygDcgPDuI42I43x4BE+X4RCU+IuRvr4H8F0FeqHmdY50SG9AqHYl7Akd2wYdY2v9wA7wG0wnkGb6vUP2wl2L9xt78ntCICFw/wn8BSLg41CwyFTZAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPzSURBVHhe7ZtNTttAGIZtJ4CQuig34AaFXoBwAuiCdsFPkkqwbTgB4QQVW7pIyk8lxKLpCQgnaDgB3AB2VfNj9/3SpLXGE4/nL9jEliyCMvPNvI/fbzweTxwnP3ICOYFZJuDaFn9+fl5yXXcN7ZSCIFjB59f43Or1eofVavXBdvui+MYBkGDP895A7GZIMK8fT4Cw+twQtAFcXFzQVV1LIJgHob2zs7Muuko2v5cGEBJMliZ7k6VVjycAWFKtbKKeEECj0Vien5/f8H1/BQ1uygoGpCfKedS7heXbc3Nz9yY6zsRQHlO4AEh0oVCoodNlVcEYBzrdbvcHm+NwUGABAIVUGlMiAEh8sVi8gfDlJB0dXeE2BLd5gtkYFgFQU9JjSgTA2dlZE2LKk8SHBePzLXK4kwTUuIxlANJjSgQAbmOPYduTYPzfwdnCOHC3u7vblhEscgAACsehuPZYoLLxPDY4m/MQvES3qu3t7RNd8TrgbNWNALDVUFrjzjyASP7p5pToStuOL2qf/X7mHZADkLXMSyufO+ClXVFZPZlzwNbp7xVZkXHlMwVg60u/7LnOz/en3SNTEDIDYCjeGTRJuOsGdVMQMgEgLH585QmCiXRIPQCe+CGEwK9eHyxIPYrz0ibVAOLEXx0sDtNB90gtgGmIJ3ipBDAt8cMBlbWQ7ac1UfyJ4jW9frW/wF15SpUDbInPzETIC3pa64MqJkmVA4YjO25vKkJU6xgdA5DfR1hFrv2drblNLKYeqowxH05/VRzXa7B1fadQud4vflUVa3UeAPGf0UCdVpVHK8s1LLHXVTo7yQk0FaZxQiXmpDrGUgBXvsI2AhCfVDs7LQjGAKgKjas3DQgmAZxEctb3tfM1FoKBtQFjAPDWqI5XZyf0Km10Hu/t7Q0HRN2DD8E/NvEwZPQukESoaCYYF+P/3cE/vtpfVBpg2fjGHJBEvG4ZckIh6K2aEk/9yRQA6vC3g1cdXZDh+pkDYFJ8Jh2QAzBMIE8Bw0CfLRzmHi6dsh3IvANoXkHn5eWlT+fMAZAVnOmJkK5YXv1ICoz2Af4ri2f6e1jsO/6WaZ+wjU6oxFTNebYt3rPADQqVJnUKDT/QvkH8bfX7/VvZ7e6WN0o6svsETWyVfQCsNp1JgFgG0AKAdzKOitssTctbGwqbpWOB2AKAR/HHwWDwVtaRwvumxC9AuOApZcIOUd0ujzjcXebjrbxw30dZ8dRhIQBWlS4QJp705mYZeycpKw2AB4QGzfEPo5I0Oi6Dq9fEStJU3wMI7wIyAnhlySFJgFBqwLbrKrbV7WO4vrYDRJ1hgYxzFj+fgfbn/9mcqP/59zmBnMDLJvAH9nwdqWFOu+gAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: SignIn -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Username - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Password - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/SignOut.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/SignOut.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 34f6e36..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/SignOut.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,25 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "If the user is logged in, logs out the user and restarts the client.\r\n\r\nIf - the user is not logged in, the return value is false\r\n" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Sign out - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQcSURBVHhe7ZtNTttAFMffs8OmogLaHoAbNPQChBMEiCpIN0BL2h2BExBOUKW7KkFKN3yoCoQTEE7Q9ATkAoWgom6K5/VNgJLYTuzxBySOR7JY2J6Z/2/+82bIPAPEJSYQExhlAhi2+PTSh5Su67NAlEKgJABOAkHthrStk8OvzbDbd6o/cABtwZr2mhue/y/YrhcELYYw89QQfANIv11P6gmcdRRsA4EA6kf7pTmnUQrzvjKAe8FIkAKkVNvSXgu7oHpQmvL6ehDvOQJIL32a1jWRRsIkoJhXF0wtIKwRGWcGjNUTmjgPouNddfiIKbYApGgNjU0NYcWzYISGIbQT8xzPZHPs/BCKx5hiASDFJzTjlIVPu+umHGGoE2LdTrC5jtAAcENeYooFwGJ2vYKAPPK9yoNgHens+1654Q7U7VNhAmACyjHFAoA7eMn97Ahs1CKCBiDWUIif1cPduopgJwdU90uOcahfe2agqvVpNpV3RfXqfnnq6KA8x8tV0a94P+DCetcOQFhtDWS9Iw/ALgZ0LVOqc8ppmP3OWaf6Ve+PvANiAKqWidrzsQOiNqKqeiLlgIn8ZXJkAbzauN4eg7EfLzb+9Pk/xoonEg6Q4gGhIOVpKCoqEIYeQNv2d+Lvx1cFwtADuCpONQQYa2Zzu4Uw9ACk8IviRMUrhEgA8AMhMgC8Qhi4/wZf5a/D+dGUCQnSVi++PPvWGS8i5QCnTZBdYBwpAG1AKLpcP1IABMDaRXG80umUQGPA4ruP20hiUzbA5wSVo73SltmWYf8iJHeB0urmdu3Et3eOTvPG7f3FbO4zEvF2VJ4V4iSfHW4uZHPt7eljFVXxgQJgK62ahWoE+UEWHyiAxxJq146Xkb+vJ7ApIIQoWjtHXWtuGJAm8tdJlTlvcWlQnTo+3C0ASQh8digvIXaqB+V2QAyzXBXHGwS009lGr4Bn149AVwE3QsNaBV7mfxf4UHdbRXxkYoAU8qv4vPAXYMa8zjsNSmAxwKmhx7gvp4NqO5ECoCo+UlPAi/gYABOIp4BX6wzge3JJV063GXoHyH3F3SX4L28D1MrQA1CTa306BmBDkPfyDyWTXT/PLOeO+VqRecJ+iQf4vqc5b27fmii5nDtF5ETonoWa/HOP3HHJnP8z1XT3UBMluVOqOU1BpMo2OfjWZbqsGyChAhBUqx6WF1Rc1jNZWgejgBqkPSRL9wUSFgACcWmIxBtVRzqumxn+AoTkFyBE8zw1OAaofh/AU6bDIT7S5W0PTFh4i1P5Gzekv1cVL53iCMBsJ/9AOmr0kNysYm83zyoDsAPCu48UIs7y1Sd42nSHoMJfjFiOtt10PKhnfAPwDoSaN0Kf82LboMR7mgKqjcsp0+2Q2/R7g/S1pxavqiV+PiYQE4gegX9WhuBNClHVKQAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPtSURBVHhe7ZtNTttAFMdtJ6FC6qLcgBsUegHgBNAFRSofIZVg23CChBNUbGFBykclxKLpCQgnID0B3AAWlSryYff/IG6d8ST2G880xPFIVhJl5s38f/PmzXg8tqwsZQQyApNMwDYt/vT0dNG27QXUs+h53hy+v8H3ervd3iuVSnem64+yrx0ACXYc5y3ErgQEy9rxAAjzo4aQGMDZ2Rn16kIMwTIIjY2NjaWoXjL5PxtAQDC5NLk3ubRqegCAGdXCOspFAjg+Pp6dmppadl13DhWucAUD0gONeZS7hss3CoXCrY6GCzaUY4oUAInO5XJlNLqoKhhxoNlqtX6IYxwe5BkAQCaVYkoIAInP5/NXED4bp6G9Hm5AcEMmWLRhEABVxY4pIQAnJyc1iCkOEh8UjO/XGMPNOKD8PIYBsGNKCACmsfug25Ng/G7iqiMO/Nzc3GxwBEd5AABGxqFh9YlAufYc0bg45iF4hqaq9fX1g6Tik4AzVTYEwFRFL9XuxAMIjb+kYyqqp03bj6pf/H/iPSADwHWZtOXPPCBtPcrVkyoP+Hj4a25iAXw4bFW6duFm9agz8D5GBicVHkDibdurkkDH6tY4EMYewOrhI7bknsX7iQNh7AFc7r5qWp5bCq/w4nnC2AMg4Re70zVVCKkAkARCagCoQnhxd4NrR4+mNk0t18ptX+7kv/YHTO7KYYzzy2aHVA2BOH3jeO0+r58sAJgun2aMQNIaA7DbU8EucpnsY3O1hs3UPbFXTO8I0SqQXD3kDRLxzytHTQnCvsBUlXaVezvLZWyx963QNFU10AxXvFYA6PltsWUA8dm0aN++initAP6XUFk9quJ1AzgQG4cnSX1zrglItAfAGfNiG7TFADw1qkLwAT1K6137W1tbTwHRZPq2+7ppWe5+Xx0DAp6sHVpngThCTc0Ca0e/EXCdCt0UiVPdsHZp84A44k3mudiZrua89jxHvO4YYFJfLNvPw4GXUuMBPNn/cmcAVMmlpVzmAWnpSaw9bLq4esbeA2hdQdf5+blL18QB4Ao2thRO2pBRlQ8Ngd45wL/twT39LVzsOz6LdE54VA0V61Ud86Id2b3AFTItDhKKiu/o3CA+651O55p73N3wQUmLe05Qx1HZO8Bq0BUHiGEAdQB4z/HSYYelaXtrWeGw9FAgpgDgVvy+2+2+43pk5LzJeANECp6GTNBDVI/Lw470gYl/lBfe94krnhocCUBUlRSIYI99uJnj3nHysgHIgFDQ9F+MilOpnwe9V8NOUujRNsdG0ryJAagCoaEBt11ScdukooPltQOIAuKPWbw+A+2jf21OJ8zMVkYgIzB+BP4A4wIiqc5XZ60AAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: SignOut -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ClientActivities/ToggleSidebar.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ClientActivities/ToggleSidebar.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index b96f069..0000000 --- a/resources/App/modelsource/NanoflowCommons/ClientActivities/ToggleSidebar.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Toggle sidebar - Category: Client activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJuSURBVHhe7ZtNTsJAFIBnSpcuWLn2COJFMBCCuhET0DUnEE5gXBpI1I1KCAZOYDwBHMEDmMABoM8+EpLSlt9p573BmaS7Tme+b978NiOETdaANfCfDcg4+Hz57iTjeM9SwKkQMmu8IBD9KTj1QefpJ8wSEYDwrjMbHgR4kBbExJeQC0twwkZcOXs4OHiElCKLUR3mjQgQUp4bH/IrACQIv0svp0gXKF7WIPjK97EfEArp9/EodpxR+OROWcM8vffWUn2iEbDT581/2Qowvw3VCGwEqPkzP7eNAPPbUI3ARoCaP/Nz2wgwvw3VCNhHQL5UjWxg1JCXc7MWULyoXbuuHBaubu+ThA5+i60AhPf38C9YWQnQSEsCSwFB+EVroYRSCt2BnYA4eJQAHtx0u+1R0l2BlYB18J+d9rw7JJ3YCKCAR5ksBFDBsxBACU8ugBp+PsWGBxVdp8Kr4FUHufCpL8tT4bTg95FHMggCAOm/AvKlMM7puLDZp8WSzkM2BiBIoVytSEdG/tcJEJXeR+s1CViWY8ACbGUk+Jug+TihIZGMAUEuagnkAlAGpQQWAiglsBFAJYGVgE0S0jgfZCdgjYTm4NAPRNbMDk1/jd9IY1ZkGQHBdYIjIZcWPPl2eJsW7b4lfw5IvhfYBlzXO6y7gA4JVoAOy5zLsBHAuXV01M1GgA7LnMuwEcC5dXTUzaQIwAPcfZ61HuNOhcd+jqwO+xRlbLwvACBGFBXTUqYH/XA5kS4wAwd/WEy0VEhjISC88VRk6hsF4K2qqefkBERtaawvFoVXd5QfBPdZvmaeexZ3bU4zky3OGrAGmBn4AzC8C8yF2nQYAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJUSURBVHhe7ZvBbcIwFEBJBOqVEToC6SS99AaUHDpAJyidoCOkBS7ckDpAR4ARugHceoCQ/l+BlNoJAez4f8xH4oCIHb/nbzv+kRsN+YgBMXDNBoIi+CRJblutVpJlWScIgrYHgmbr9fo5juNvlUUTgPDNZnPuCXiedwUSIlVCqBoB+DcP4RGzjVGt8moCAP7eg5AvQ+hUDoHJZJLlL/r8eTDyMX26KZxnjCo9obDK0+12/7VHi4AT6vbiUhHgRTcaQEgEGMjzoqhEgBfdaAAhEWAgz4uiEgFedKMBBPsIgGd5bQNjwKsVZS1gPB4/QovnIOHFJnS+LrYCEB625u+7xg7rksBSgAK/7zCUYH04sBNQAt/Ybrcx7OUXtocCKwGH4Pv9/n44WHXARgAFPJpkIYAKnoUASnhyAdTwKEDL2LrKCpfBm85wataXZVa4Lvhz5JFMgvDOkfRdAfmjMK7p+GBzTo/ZLkM2ByDIaDQahGGova+DCBn0er0PG7As54A9WFkk4CZotxO04eBgHSRzQL5F1BLIBaAMSgksBFBKYCOASgIrAVUSriIhUiYBlsZX7xMiZasDwsNzwbCONZHdEFAlwO+oLnjy7fAxPVpH2JPvBY4Bd3UN6yHgQoIIcGGZ8z0kAjj3jou2SQS4sMz5HhIBnHvHRdsuJgIwlX7Ot0qilhWGZOTS0xMjfy4qzwsA/KLK2gX/P1Pbrg0BOFgUQ6itLhiysOnwImaJJ8cqBeCpqs1mE4EEzZZLKXB/Kx8Eh4q+0jS9Kzo255JJ7iUGxAA/A78DQnS2MkIWEAAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: ToggleSidebar -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/DateTime/TimeBetween.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/DateTime/TimeBetween.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index b785720..0000000 --- a/resources/App/modelsource/NanoflowCommons/DateTime/TimeBetween.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,47 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: The TimeBetween function calculates the difference between the input - Date and times in milliseconds, seconds, minutes, hours or days, depending on the - unitOfTime. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$IntegerType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Time between - Category: Date and Time - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: TimeBetween -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: startDate - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: endDate - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: 'Must be one of: "MILLISECOND"|"SECOND"|"MINUTE"|"HOUR"|"DAY"' - IsRequired: true - Name: unitOfTime - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/DomainModels$DomainModel.yaml b/resources/App/modelsource/NanoflowCommons/DomainModels$DomainModel.yaml deleted file mode 100644 index 5348afd..0000000 --- a/resources/App/modelsource/NanoflowCommons/DomainModels$DomainModel.yaml +++ /dev/null @@ -1,200 +0,0 @@ -$Type: DomainModels$DomainModel -Annotations: null -Associations: null -CrossAssociations: null -Documentation: "" -Entities: -- $Type: DomainModels$EntityImpl - AccessRules: - - $Type: DomainModels$AccessRule - AllowCreate: true - AllowDelete: true - AllowedModuleRoles: - - NanoflowCommons.User - DefaultMemberAccessRights: ReadWrite - Documentation: "" - MemberAccesses: - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.Timestamp - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.Latitude - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.Longitude - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.Altitude - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.Accuracy - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.AltitudeAccuracy - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.Heading - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Geolocation.Speed - XPathConstraint: "" - XPathConstraintCaption: "" - Attributes: - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Timestamp - NewType: - $Type: DomainModels$DateTimeAttributeType - LocalizeDate: true - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Latitude - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Longitude - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Altitude - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Accuracy - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: AltitudeAccuracy - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Heading - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Speed - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - Documentation: "" - Events: null - ExportLevel: Hidden - Indexes: null - MaybeGeneralization: - $Type: DomainModels$NoGeneralization - HasChangedByAttr: false - HasChangedDateAttr: false - HasCreatedDateAttr: false - HasOwnerAttr: false - Persistable: false - Name: Geolocation - Source: null - ValidationRules: null -- $Type: DomainModels$EntityImpl - AccessRules: - - $Type: DomainModels$AccessRule - AllowCreate: true - AllowDelete: true - AllowedModuleRoles: - - NanoflowCommons.User - DefaultMemberAccessRights: ReadWrite - Documentation: "" - MemberAccesses: - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Position.Latitude - - $Type: DomainModels$MemberAccess - AccessRights: ReadWrite - Association: "" - Attribute: NanoflowCommons.Position.Longitude - XPathConstraint: "" - XPathConstraintCaption: "" - Attributes: - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Latitude - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - - $Type: DomainModels$Attribute - Documentation: "" - ExportLevel: Hidden - Name: Longitude - NewType: - $Type: DomainModels$StringAttributeType - Length: 200 - Value: - $Type: DomainModels$StoredValue - DefaultValue: "" - Documentation: "" - Events: null - ExportLevel: Hidden - Indexes: null - MaybeGeneralization: - $Type: DomainModels$NoGeneralization - HasChangedByAttr: false - HasChangedDateAttr: false - HasCreatedDateAttr: false - HasOwnerAttr: false - Persistable: false - Name: Position - Source: null - ValidationRules: null diff --git a/resources/App/modelsource/NanoflowCommons/ExternalActivities/CallPhoneNumber.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ExternalActivities/CallPhoneNumber.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 7588be7..0000000 --- a/resources/App/modelsource/NanoflowCommons/ExternalActivities/CallPhoneNumber.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,33 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: This action can be used to launch a phone app on the devices and initiate - dialing of the specified phone number. The user has to confirm to initate the actual - call. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Call phone number - Category: External activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAUMSURBVHhe7VpbUhpBFBV8/MYl4AqEFYjZQPz3EViBWllAxmxAzQYgvj4j2YDiCiTZgO5AvvFBzkn1UD1d088ZgakMVZQy9HTfc/reM7fvZWGhfJUMlAyUDJQM/L8MVLJAPzs726pWq/uYozkejx8rlUrv+fn5qN1uD7PMO817gwm4uLj4CkMj1ViQMBiNRptFISGIAB34mIwikeBNgA180Uio+sRbGnjE/hDvTbwH8lz4XF9ZWbntdDqrPmtMe6wzATrwcPfN3d3d/svLSyFJcAoBE/idnZ3JznO3l5aWbkFKXd7JedYEKwGu4GPARSPBSIAv+CKSoCUASU4LSU5HEbYhY152e51oFcUTtCIIoMzwJi+qvSt43sRESCeM0ImDaau9bj0TAaqQOe28vJCOBJXcWZKhJYA7LhuGHD/x2dVoQUJbGT83uYEpD3iUjV5eXl53BS2PgxbU4PLXSjgl5g6ZN697TB7wWzF6zXdRAZ55QU25N/Kd673GmzRgoCza9DFCBx6hdYTM8YfPXO85VksAFLwvL4xd3HA1xAJ+bnafeIyJ0Pn5+ROATwQLQrgGUTPGb5HAkwDjYYg5vLzrELMtkxcUDbyVAMTrLyUMPukIKCJ4KwHQgZ4qhGnne4Pan0Dw5irm1Q00hoCI94QYpqWxHIdwuVMnhwdtkRxX8ZzFOGtBRA0DGJkaBjggtfBd4vHG5z/rA/NMgpUAhEFX0YE6ng7NtN0qIglWAkR5OxEG2FmWxFNfRSPBSgBRMntTxVDnBRxXJBKcCGDRE7icvaBIJDgREOIFRSHBWhSVXR81wlt8nggg+4HwDuspEfdRSD/Lc/FeVoxsqbV8z+Xl5T7uO8C1Wl69SGcPSPMCPuagBZFOEOPreWgCC7QAfULwnFccsQ+yNl+8PIALo1h6IjrCMu6GS6E01BNs7bgsfQcvDyDi19fXiO6nuPO1SwssxBNs4IVnBrfhvAkQeUGixicyvmNbKPgKo6YvQfIbefUivQkgCD4W397eTmXAIKElDLby4OIJOvAUToZbXr1Ibw2I0ekaH9iZlmvJS6cJ/KUJ1qHaT15pT408mi/BBNAyQw0gEwmqC5kemVlJyEQADcUu1mEgK7+ryo7lQoJLvmAiATZ93N7eftLFZZAGyJMxHmHkoboACOkiR0i4sc6INE0Q6u6ULJnacJjnxvSEykwADd3b2+tCFNXuD5OV41BhdNl5mdDQXmTmEJCNSOsoi53sQrUPXX45RmEE+A3fNFkR5xuQ34ivmVL2XDwgXsjgCS1Uhu5dKkMMB4Bv+JwRVE8A+C/ytZTO1OTrXAmIwwF/mag8qkagv/jgEhIunqLTk6urK679UxHk+3cTwbSJpUQlQYIYG0EcH/BOnA51BvpcJ3ik6nT/VeW+RNKW2BifBULGag5P8VT8aS21IY0or+V04EUvMtJNlqsI6hahOLKOaIjFHgw9FZUnL+AcHAqe906FAC5EAVxcXIxwlNa6vtCNCCJ45+oVWcBPlYB4W0kExJA/vmpatrrPMwFIudPVGrKCnwkBMWhWlUV53UYEq9LsPA3w7uP/P/CiIedJEzxbzKukTy0EdLtNIniCNIWGqyj4gp+pB6ighEbQK/bxrruCjseFgJ8rAmTAMRn0CgAjGR/+GYuXSgy+H+Pat9Au9MxDwGWneeTmT3QQ8zX8XScpItmhJnxHCt5zmaccUzJQMlAyUDJQMpBk4C/hbKFZNSUQOAAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: CallPhoneNumber -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: PhoneNumber - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ExternalActivities/DraftEmail.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ExternalActivities/DraftEmail.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 871f36e..0000000 --- a/resources/App/modelsource/NanoflowCommons/ExternalActivities/DraftEmail.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,60 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Start drafting an email in the platform specified email client. This - might work differently for each user depending on their platform and local configuration. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Draft email - Category: External activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQpSURBVHhe7VpNUhpBFO4eJqmKyYJFDmBu4OQEcgIUy4huNBUwS/UE0RMgy5RjlE3ARFBOgDcgN4gHSJUsErMIMy/voaRgunF6fhjGzFDFgpru97739Xv9vu6BsfSTMpAykGQGuNfgV9bL4HVOlOOb9SNPMWlRgoujr5SAOK5KlJg81QsBc+4BXmsu7OCC4klLIOwVeWz2Ep8Boe8BL3d+TlUn/Ki+GMOc7gEBay7xJZB4AkLfAwJmpOfp6R7gmbLxCYkvgcQTEPoekOqAgDUZ9fTEl0DiCZDuAfm19/MZzT7hDBYY49mH0jJu9wFSrMAu+6Dttc8+XjufCxlAweua1UVmFt2Cj7peffvjbEnndpdicyVA51blvwl8NFrOspTVrgQwzpd8Mx3ziRwYlnSSlSBmQbIJkGSoaxvkFuzFPLMnwIMeB3fsrgScfzEP+7b2ijEQWgh5Lmxsf5gVQYViaYJvuNY4y503zEM3bK4EkAHqn307k2PYT50GkeX9lWL5QtZi3Jz7fZ7P72RXNkoXnPN9pw0AuOrfPje+fja/qdhXImBIQrNxtMxs+0AwTH1WszpRkLC6UVrQ5351GUi71UGrYeba7WpPJXgao0zA0GDz7HgfSciJJcFRQNnfl4vbu6rOvY4rrJd3bGAd1Cnz43OhR5hQlQoZ4ebDMwFkEEm4opIAYEKaaRwqhY1yJZ/fzLo5V31OKY/BV1CdYk2PS3PCgFgMwqRqb3ScLwKGJdFqHBmykkDBsavPPZFKT68gB+eSZ7cdDF7MLIAqYZBpfFU/vgkYLQmw4S3+dtQdlgTqb9wgN1XBOMcV3mzT3tLl3KngoEc+mw0zcLkFJoBAt87MU2yVhrAvkPLi7NRPqxykfAYuxHMJUEcyyKdfYkMpAafzQat8+sfAlak5n1GrLBTLSiVBKY/BS1MeGNSoxQVJeSe2UDJgaLRdq/VwZbak+wKmMbXK1dXSwqSVy6+9W6Qxd0fx8Q+pulbd3PLS4lQyJFQCRvcFuXrk87bOu7KSoBana5qsxaGqA0NF1akEPNUMGDU+VI/Ypq5kJYFvdE6oVf5TdYMWN/7xqupiRQCBIRKwTeWk6pGxLWqVYaq62BEwWhLArGWZegxT1cWWgEGrrH+6HByoJpwqaUxQVRdrAoYl0aybrxjYVQEsqjrr91wuzBanQshUuoCb42bjePf+oqWH6z64uCBVF3aLc8NBz2dCADm+v2gxVC8uVILxM2ZmBAxLQvXiwk9wKnNmSoAKwGmPSQmYNsNxt59mQNxXaNr4HlMG0Kt8P98HORT+H4CntBuckZ0287Oy7/w/g5ABspveWYEN3a8Nl06bAgEWaJILztChRG4QmH3TZxnhPadAwN1FBl5wgshWxKjpb/eBvxQ4xtKxbP111AetiPlK3aUMpAz4YOAvsa3bf56QL0QAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPQSURBVHhe7VpLchoxEDUUVLYcIb4B5ARwA7zKhu8i69gnCDkBZJ0FNp9FVnADfAN8g/gGZpvil/eowTXMCCSNxDB4RBUbRlK/furX3dJwc+M+jgHHQJoZyOg6PxqNtrpz4hxfq9W0fMrGCS6JthwBSdyVODFp6YXAgjlAV3O2nTPF4yRge0eubb3UR4D1HPD197+z9gl/vn06wOxygKHmUi+B1BNgPQcYRqT2dJcDtCk7nJB6CaSeAOs5wPUBhpqMe3rqJZB6AoQ5oN/vf87n8/3tdlvMZDKFU2GZtPuAI1iny+Xyod1uvwafhyKAzudyuTkGlmXOx61XA3tVbOicvkkJgPPdD+S4398Co1pKAJyvGjCd9KlFKQFJ98AQXyifpb4KSAlYr9cPhqxfZDoq2AJfKXYpAc1ms4cScovFQiWEnuE4+uMiHp6wTazIZZV6vd6TYZMSwAVYP1erVQULTwULdkDCRFRiZMajPoetwnA4nGB+R7DGM7CW0J+8qKyvRMCeBDB6BxJ+ChauonzO4iABZBfZp4iqFbHB8Qo2bKHiPMcoE7BfECR0YIjRcCAJAGL3+Bc7c69qXHfceDz+Drsz2vLP9fTOkBdFxEkz2gRwNRhimJGEUJgBXBe71GWY6jp4bDzX4pqw1ws2acTAkCemKPYiEeCTROmIJO4ZpjYk4bXmM9gMRdZms/kFx0uiHl+VjMgE+CUBIG2God+oJ4k5JNFUBRMcNxgMmFuo92Iw5Gmz0WgYy82YAAIDkEeGoaBUFgD+MUqpZMhns9mJIORZkUq0GZVY/zwrBOwlQWDYmScBsA4SmJIkGPJwXhjyWPeJNkxCPojNGgEeCQvsTEuUF3i3wFLJMnZs5yCXMsfgeTk4hl0dSlxLp8SpRIhVAvx5QdQ9euVrLpIESxyei0rcK9Zllu+pOKQ7JnQjZPqmxQ9gf7N0ZEeZN3a9Ona9f+QY/gwi70x2XebPWSJgTwK1ys5MJAk43GKGt9nV6e4+x5+VAL8kkBzZRjOc3z+UhM2uLrEEEBiS49TrHg9I8IM27eoSTQDBURJIZrfs4IJg+RsJslniVAiJRQJBIOzgeNHiHWJ2Fxf8zSTZqTgrGnMRAgiEFy1salQvLqI6KJt3MQL2klC9uJA5EvX5RQmICtrmPEeATTavcS0XAde4azYxX00EoFfIRPnKyAqdBnEmf/ugb4d3XAT/zxCKADj/ImPtip9Pg9hDBOD8HbrgvGKH36HjrPHGf4lICfBeg/GCM8RWnETAvpUPHefLFJw9vsR90IqTL2fLMeAYiMbAf5KbaLPkFP1eAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: DraftEmail -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: To - Description: The recipient, or recipients, separated by comma's. - IsRequired: true - Name: Recipient - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: To - Description: The Carbon Copy recipient, or recipients, separated by comma's. - IsRequired: true - Name: Cc - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: To - Description: The Blind Carbon Copy recipient, or recipients, separated by comma's. - IsRequired: true - Name: Bcc - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: Content - Description: "" - IsRequired: true - Name: Subject - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: Content - Description: "" - IsRequired: true - Name: Body - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ExternalActivities/NavigateTo.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ExternalActivities/NavigateTo.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 2473312..0000000 --- a/resources/App/modelsource/NanoflowCommons/ExternalActivities/NavigateTo.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,32 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Opens a navigation application on your device or a web browser showing - Google Maps directions. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Navigate to - Category: External activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAUXSURBVHhe7VpLUhsxELUNVLY+gnOC2CeIfYLAKhsgeJE15gQZTgCsszDhs8gqcILACSAniI/gbfg5rymNS+rR6OfRRK54qlQUM1JP91N3T/eTG43VtUJghcD/jEBzmYy/uLjoQt8PGH2MjhiN2Ww2bTab9xhXDw8P18PhcOJq11IAIAw/EoZbbQMgp09PT4cuQCQPwOXl5T4MOrZarZmAdQc7OzvGta0QwXWtwc5/CTWedERIHJEMk77JAiAUzzTK3+De8PHx8e329naTBv7vvby8DAHWvWZ+dn5+PioDIckQGI/HnY2Njd+y0pToMIa7u7tXph09Ozvbo53HaLN5PYBVAChJD4DxY2b8BEmtZzOe1mAOJcAeAcYAoCRauJIDAO7ah5Y05Ctzyej5AjF3i8noC9nK7eQAwM5tst2/Rib/ZnJ73TOsucF9GvOLy6YHyQHQarXeyUojlpVw8ARCAQ6y3vP1yQGAXerKSiLb33oaPZ+OtYoHAIBO8gDw7I14noYCoMkb7eQB4Arik1hQOhQQ3brkQgBKTpiiwQAAPCWcEF5cdnpJkFdza2tr/dAdx1oFAIRX+gDA2F+ywfgqfAoFAAZT6zy/AO71MuQAJXND4W5IHqByGgBsygbjfy47vRCgAoaFQXt9fX3k6wVw/4zt/mRpegEorrgqdm7fxwvE7ivuD5kKIDk4KX4FGmhmjlkz00aDZOzr5d2m3ZfrCcr+ZeV0kgCI4ueEuf1IUGPGaKDd1yRO7e6ToCQBIMWEFyifLZe+APniJ499UzOVLADCC4bMmC68QNvX0zxikTT1viJjGT6Dcx1FS8tb4ZGurycmiCc60GQnQkZp2HhRYjZeHsnmFq576kNe2D5vlP3h1nfyzlJSw3sG+Xso7sn1NXN6tmbKCYCYvLwNAHpOOw7jlNimgxAcggzoOQeI7hFp6rIR1hxAvDzk3WH0XZSlOVBuj0hNGyXtKk8UR4c8H8DwI/o88riHhzgdirzqalLCQE276k7zMlRgivI+i+W58IQfvLzlsuhUCIAZE5+8ptQDQnh5CL7RGJdV5QmIe+L+J2UAitxw4AOw1gMq4OV1bjmwZWQXxUXCo6TYZiGhJEYXWTRH6wEV8PIDzstDYedS1qQ8JTbIek1+8oV7Wy5Jj68rAFA3L++6U/I86uroKCy/R4eguk7PRXYBgLp5eRcldXPoBIiyPQ3bCbDpHQUAquTlqRJjblrg5UMBoHUwPKOxiAydB3RlgYvw8s/Pz/cMgM4iysZYWwCgbl4+hlE+Mq2VoA8T4/PiVObqAJgw5dqhyrrw8qGyq1qnywFK3Mbm5asyJFSOzgNq5eVDFa9qXaEU1rSeU9FaTn1eqiunsV77MxWT3I9f/8x83vv98xunFj+XWfCAunl5H+NizC37CtTGy8cwykemFoA6eXkfZY1zURPTb2Z95ZXGC3IBHS7wDs4awyWt9F7I73zIGJ4DfGPcBkhpIVQXL29TMPbzUgDq4uVjG2iTbyyF6+DlbQrGfm7tBVADjDQ8HEJ93MmVE6exSr6gNegGs9gGLCrfqWiIycvbDPhnSVBWLCYvbwMg9nNrCOQKEPMCt76SFaIDEPw/ku8JXj551891dgoBKdYL53TM+NdfdZvO43xre+4BtdUBOtcjw+hQUvNTdCrCcl5+Gtttq5TvHAL5S6vm5as0JkSWNwD0kip5+VKl89qe/w2xMtYa6hdoxJK/krtCYIVAdAT+AuvZAgkcRGUIAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABMoSURBVHhe7Z1tcBXXeYB377e+ECCQkYViMLKIDVUocoxN3Vikv5wxTpqZxgNuJ05nip1fyYTkN0P/Btz2VwNkWrczRnUzSeqPcfrLFUkcgmsI4IQpMkaiWJb5EAL0eXU/tvviEd1dLuzuvXv27r16NKMZjXb3fd/znD3vOefdc96jafxAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAgBPRKMHz1n42lmfnsNzVd7zc0bZOua2sqkcezEICAOwFD00/qhjFS1LX/iOWLR177dsOI+1Ol7yjLAUjDT+dy39G14nfNxr+0XOU8BwEIVE7AdAiv6PnC3nIcgW8HsPPg1Ka8lvw5vX3lFYcECARFwByBjxiG9uc/2ZU+6UdmzM/Nf3Eo/82Cnvwdjd8PNe6FgHoCZk++JqZrv5M26keb5xGA9PzS+J3CDcOYLMwVB2ZvzA9OX82NFaZzk34M4F4IQMAfgSUPNPakmxN9iYb4zlg81mF72jCuFzV9m9eRgCcH8Nmcf/6Onj9nNvzxc1MHafT+KpC7IRAUgft6l+4yHcEuqzyZDmQTqT9+/Vv6dTc9nqYAtwJ+jgj//FR+/+VTE/tp/G6IuQ4BdQQunb5+UNqiVYNMB1Lzc9/1otXVAUjvr2nGC1Zh+dnCwSt/uDHgRQH3QAACaglIW5RpuFVLTNe/81nbvfePqwPI5Oa+Zu39i0XtE/E6boK5DgEIhEdgwpyKSzzutkbz83w6m7V13KWscXUAmhb7qvXBwlz+SHjFQhMEIOCFQNYMvudm8vZReTz2BbdnXR2AoRtrrEJyM4VBN6FchwAEwieQny0et2s1+t2scHUAuqZvsgq5+Wl2yE0o1yEAgfAJzDjapgQD3axwdQBOAUT93ZByHQLVISDTAL+afTsAvwq4HwIQiC4BHEB06wbLIKCcAA5AOWIUQCC6BHAA0a0bLIOAcgI4AOWIUQCB6BLAAUS3brAMAsoJ4ACUI0YBBKJLwHU78HOHsubuwv//GT02/mh0i4Nl1SLQ2Tre0rf2wlOtDTN9qXh+fTxudMR0o0XsKRr6ZKGgj80XEmevzzSc+Ohy2/EzY2s+qZat9ay3c0vb+9byvfY36Xu2cRxAPb8NIZRt2+f/0Ne1/NqOTDLft9DgvaidzqbePD6y+hCOwAst7/f4dQBMAbyz5U4LAenxd2z5ze71qy4daEzl+v00fhHTlJ7f/qX159/4qyd+vUdkAbc6BHAA1eFe01ofe/Bcz9O9pw+3NsztqLQg4gi+0nv61Uc6Ru6vVBbP+yfAFMA/s0X9hDT+TV0XD5Tq8XP52NBkNjN4ZbLl+KUbTWMLw3vp4Xs6Pu1Z2TLZtyQzuz1hxgecECVO8MHFrhePnu9ms1kFb5jfKQAOoALYi+1R6aWf7Bl+1dn4zQDfJ+eutO/9r//Z4NiOWprQs5tOPNPecuNFpyPACVT+Rvl1AEwBKme+KCRI49/aPXxHz39zNjPw9une5702foH1xsnNb/34V9u2X5tutGWWEseysfPiPmIC4b1SOIDwWNe0ps0PXNzl7LGlAR8+tnX/6I0239tQBca///fjB51OwPx8eP+XPn/WluW2psFF3HgcQMQrKArmSe/fnMk9Y7VFGq404ErtExk3zFGEVY4EF+XzYqWyed6dAA7AndGiv0N6fysEmfMH0fgXZA6Yo4j5vG4L/q1ZcZVRQAhvHg4gBMi1rKJU7//xRNvLQZdp+Gq7Lbd9OlHoIxYQNOU75eEA1DOuaQ3d913b7Oz9f/H73sGgCyVBxGw+bvuKsKV72DbtCFon8syc30CAwL0ILG+c6rdeH59pUXYgzHQ2bXMATalsD7WjlgAOQC3fmpceixVsK/QmphuULdSRBURWYJnEPIFAxW8QDkAx4FoXn4hrtlV7Q2OrlDmAMw7Zekxjj4DiFwgHoBhwrYt3rvor95u/Fw6XHOsJ/G4w8qKDe+wEcAC8ERBYxARwAIu48r0UXdbnW+97pONjZbv27nNsC3bq9mIv9/gjgAPwx2vR3Z0vaGPWQrc25JpVQXjE3DFolZ03swip0oXczwjgAHgT7klgPp+0Bf06lo0ri8wva5q2O4BinLRhit9PHIBiwLUufiaXOmstQ3N6VpkDWJKes8meyjZ42l5c64yraT8OoJr0a0D32ESr/du8mftPxRJdmf9nUvl+K5KxiTYcgOJ3BAegGHCtiz96fv2QNRgnn+Y2dI0GPgrYYmYUtrKSDUdHz69Vtuag1uslKPtxAEGRrGM5k3Ppt6zF61w6UXEuQCeutubJ7db/zeVT9P4hvFM4gBAg17qKT2+0DlrLIDv1gtyv/8SDZ3tEplXH8ZEHDtU6t1qwHwdQC7VUZRtL7dQLcr/+uvbLO61FlF2BZ8ZW8wUghHrHAYQAuR5UjFxdYcv+E9QoQLIMO7MNOXXVA7+olgEHENWaiZhdqkYBvZ0XbYlApPf3k2A0YphqzhwcQM1VWfUMLjUKeHrj6f5yLZL04M5Eo/T+5dIs7zkcQHncFuVTpUYBq5eNf6+cdQGSakzOBrCCNBOCvEnvH+6rhQMIl3fNazv20bq91kKUm8bbmWZc1hoQ+Q//9cABhM+8pjVKdN6Zy99vGm8Z+jsDf+ax4QNE/sN/NXAA4TOveY1Hhh4acO7U6155eY+XAz5LDf2DTjNe84BDLAAOIETY9aJKMvecHu3a7ZwKbFl3YY9bGZ9YN7LPGfh799xDL7k9x3U1BHAAarjWvdT3zFN8r0w235HL/xtf/O1dD/SQa8lE0bblV6YTDP2r97rgAKrHvuY1//T4YwPOXP7Lm2Z2lVomLJ8L5Zq10DPzycEgTxiqeaBVKADHg1cBeimV8imtz9wR19ow05eK59eb0fWOhaSYEiE358lj84XEWTNYduKjy23mUtk1kVgqKynCnuz50HZkuNj766G1zy/YuHCysHXoL/N+GfrT+wf7Avo9HhwHECx/39Kkt+xafm1Hxtxn7ycL7nQ29ebxkdWHouAIpAzrV106YC18Lh8b+s8P/ujWd/6ne08fds77T/zv53bKNMI3MB64JwEcQI28INLjyzHY8gmtEpPFEbxz5uGXVabr9mKfzO+dQ/ypueRbsZjW3JjK9VtlBHWysBe7Fts9fh0AMYAqvCGyAUZ6xUobv5jelJ7f/pXe0696+QSnsqgyl5cGb9Uh3/qdjf+meRQ4836VNeFPNlMAf7wqvlsa/6auiwdKDfdl2DyZzQzKEVmXbjSNLQzvZbTQY2bMXdky2bckM7vdOZwWo2Te/cHFrhePVnFYLWm9tpcY7i9Ak3n/26d7n6/2aKXiSoywAL8jABxAiJUpvfSTPcO2gJmol4Zx7kr7Xq/r4GUlnayjdzqCKDgBCQpu7f7wgNM2gn7hvGh+HQBTgHDqRVuIhDt7fhkSS6/otfGLuW+c3PzWj3+1bbtzSa7I3th5cV85m3OCwiBRfVkk5DzU49Ro1/eJ+AdFOTg5OIDgWN5TknPzi9wsDfjwsa37yx0Sy1za6QTK3ZwTJAaJ7ptpxG4vEro8uWQ/Ef8gCQcnCwcQHMu7SpLe37n5JahIuDiB6zPpw1blfjfnqEAgoxQpo/z+7PijAyp0ILNyAjiAyhm6SpDe33pToaiPBhkJ/7f3/uTl+bxu+6YeZM4+1wLe5QYpY5DlLNcOnrs7ARyA4rejVO//8bW2vwta7fDV9jvW5VczFhB0+ZCnhgAOQA3X21K777u22db7mxH/X/y+dzBotaWy9WzpHn4maD3Iqy8COADF9bm8carfqmJ8pkXZfNhMqWU7TKMplbXtvFNcVMTXIAEcgOJKi8UK91tVTEw3KFv/LguIrLoyifnAj/BSjAvxIRPAASgGnohrHVYVQ2OrlDmAMw7ZekxrUVw8xNc4ARyA4gp0Lvwp95u/FzMlU4/1Pj+7CxeeK8Y0PchfL3ZzT/UIsBRYMfuX+t9536riR4NfflSlykr1OZeSVmrr6LFxpeWt1L56e56lwBGrUeeSWFkrr8pE2Yxjle3UrUovcmuXAFMAxXWXL2hjVhWtDblmVSofMXcMWmU7M/eq0ovc2iWAA1Bcd/P5pC3o17FsXFlkflnTtN0BFOOVpw0zDEOr5FcxX8RXRoAYQGX8XJ/+et97O9pbpm6n0JZEmP/6mz/9vuuDZdzwwtZf7suk8v0Lj8omHL/r8J1zSObwZVREFR8hBlBF+KVUj0202r/Nm7n/VCzRlfm/tfGLLWMTbTbdEUODOREgwBRAcSUcPb9+yBqMk09zG7pGA58GbDEzCluLIgk4jp5fq2zNgWJsiA+JAA4gBNCTc2lbrrzOpRMVJQItZXJb8+R26//n8il6/xDqttZV4ABCqEEzOcagVU06UegrdXhGuaY88eDZHpFpfZ6TdsulubiewwGEUN+lduoFuV9/XfvlndZiyGk9pN8KoWLrQAUOIKRKHLm64qCKUcDj64bWO7MNOXWFVETU1CABHEBIlaZqFLDx/tF9zt7fT4LRkIqPmogSwAGEWDGlRgFyaGa5Jkh6cGf6bXr/cmkuzudwACHW+61RQC5u2xy0etn498pZFyCpxuRsAKv5ZkKQN+n9Q6zQOlCFAwi5Eo+dX/e3VpXlpvF2phmXtQZE/kOuzDpQhwMIuRIlOu/M5e83jbcM/Z2BP/PY8AEi/yFXZh2owwFUoRKPDD00UChoto063Ssv7/FywOfGzgudzqF/0GnGq4AElVUigAOoAnjJ3HNq9HO2DUEyFdiy7sIeN3O2rB3+oTPw9+6HD33b7TmuQ6AUARxAld4LOSrrymTzHbn8v/HF39oOEbGaJ9eSiaJty69MJxj6V6kS60AtDqCKlfjT448NOL8KLG+a2fXUw2fuSKMlnwvlmtVc2VrMyTtVrMA6UI0DqHIlylcBcw5/02rG+vZLP5S5/sL/5O/OZeO3cwrI/2Xe//7w2perbD7qa5wADqDKFSjD93OX239gNUO2DMtcX9YHyO/jD57/kXPef+rjrh8w9K9y5dWBehxABCpRFu84Pw3KXH/bw2d2/9mGM3ucjV/u5bjtCFRcHZiAA4hIJcpcfmouacsbIN/6G1O5fquJN2czA/ea91ea0z8iODAjJALkBAwJtBc1ktbr2d5Tr8bjWsnU4TLvf/tU71/e63AR8vp7IV2/95ATsIbrVtYHvHuu5yXnIqGFoJ9871d5slANo8P0MgkwBSgTnKrHJLAni4ScXwYI+qkivrjl4gAiWP8S4Lt0s/X2Jz5J7+056FdJDv9Sz0aQDyYFR4AYQHAsA5e0sCqQxT6Bo61bgcQA6qhqpeHT+OuoQiNYFKYAEawUTIJAWARwAGGRRg8EIkgABxDBSsEkCIRFAAcQFmn0QCCCBHAAEawUTIJAWARwAGGRRg8EIkjAtwOINyVbIlgOTILAoieQLqNtujoAw9BGrGSXrErbUlIteuoAgEBECGRWJR1t0zjpZpqrA9CM4hGrkERDLPCz7d2M5DoEIOBOIN2c7LfeZRSNC25PeXEANi+SbEzsYBrghpXrEAifQCIZszuAWOznbla4OoBsuvEVzTCuLwjSdb2lrbvxrplr3RRyHQIQCJ7Ayo1LdunxWMeCZEPTRuYTqdfdNLk6gNe/pV8vGsY/WAUlM4kdKzYs2eEmnOsQgIB6AivNtphqSto6ZV0r/ou0XTftrg5ABMynMn+vFbVhqzBzvrFbvI6koHJTwnUIQCB4AqmW5JL2L7TuTplt0SF9eC5htlkPP54b786DU5vyeuIdXdOXWeUaRe2T3ExuYHome2LqQnbIg05ugQAEyiSQMT/1JVbEOpqa0k9JPE6m5DZRZk6HuJbffHhX80kvKjw7ABH23MHZFzRN/yfN1OpFOPdAAAIhEpCELprx16/tanjFq1bfDVlGAgUj+TMtpq31qoT7IAABxQR0bThezH3da8+/YI2nGIDV9FsKisUv61pBvg4Yt375gQAEwidgtj2zAU5oWnHvXDzledhvNdT3CMD68HP/OLtGi2v9hhF71tCNNaY32RQ+BTRCYJERMFfnGpp+UteMI3OptKdo/yIjRHEhAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAhCAAAQgAAEIQAACEIAABCAAAQhAAAIQgAAEIAABCEAAAr4J/B+YtPtU5JhO8gAAAABJRU5ErkJggg== - Subtype: 0 -Name: NavigateTo -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Location - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ExternalActivities/OpenMap.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ExternalActivities/OpenMap.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index f32d373..0000000 --- a/resources/App/modelsource/NanoflowCommons/ExternalActivities/OpenMap.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,33 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Opens a map application on your device or a web browser showing Google - Maps. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Open map - Category: External activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABXzSURBVHhe7Z1djBvXdcdnhhx+LMn9lrz6MCzFseQkrq1E6ReaNnIf+mQ5bYHCkFwgcYGunKcEkfIsya+x3PYp1Rpo3Ra1YBRo6shAgDwkK6CoEcBKZEOWo3VqfdTa1UpacZdLckkOZ6b30KAyc3eWc+9wPrir/wL7Qp57zrm/4T1z77lfioI/EAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABIqD2g+Eb/2yP5lrNbyqqeshWlAOqquzpRx/KggAI+BOwFfWSatvXLVX5L61tXXjr2/nr/qW8JQIFAGr4WcP4jqpY32WNfzSocZQDARDonwALCG+obfN0kEAgHQCOzlQPtBX9R3jb9//goAEEwiLAeuDXbVv5i/+Yzl6S0anJCP/V6+1vmqr+KzR+GWqQBYHoCbA3+R5NVX5FbVTGmnAPgN781Ph55bZtr5oN69zaSmu2ds9YMGvGqowDkAUBEJAjMPzY0L5sMX0wnU8d1VLaDldp2162FPVZ0Z6AUAD4bMzfWvfmN1jDX/pNdQaNXu4BQhoEwiLwyNOj0ywQTDv10XCgmc58+e2X1GU/O0JDgE7Cj8vwt6rtM3feL59B4/dDjO9BIDoCix8sz1BbdFqg4UCm1fiuiFXfAEBvf0Wxv+VU1l4zZ+5+uHJOxABkQAAEoiVAbZGG4U4rmqp+57O22/vPNwDkjMafO9/+lqXMU9TxU4zvQQAE4iNQZkNxysc9sMim57PNpuvF7eWNbwBQFO0bzoJmo30hvmrBEgiAgAiBJku+G/W2u1ee0p7xK+sbAGzV3uNUYtTNWT+l+B4EQCB+Au0166Lbqn3IzwvfAKAq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 - Subtype: 0 -Name: OpenMap -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Can be either address, latitude/longitude (51.906, 4.488) or interest - point.This field is required. - IsRequired: true - Name: Location - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ExternalActivities/OpenURL.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ExternalActivities/OpenURL.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index e57ee25..0000000 --- a/resources/App/modelsource/NanoflowCommons/ExternalActivities/OpenURL.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Opens the provided URL in the web browser. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Open URL - Category: External activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMZSURBVHhe7VtLbhNBEK3umSBAjmxM9vgIDifIDYjEArFKskCssJUTkJwABlaIRcwKsUDACcwNYk5ADhBiGyyIwO6i22LQ/Bx3m25PO9RIycY1VfU+VT2WxgB0EQPEADFwSRiotvtNUyjc9AZf4zdao8drsHZcb33fMemRmQT7GqvAA4ODuD+BfPfs2fVXOv2uPAHK9kr5LFhdElZ+BIbRjZ6AyV6WAM5ER2ccVt4BMfB6e7jLITgydcKlIUABX4QErwmotn80dBaZihlG104WIaFUAuQCq10Bvi0EazLGbwGgAlwDxrSB6xKk4ooWYykETK2KwY48urZMANiIzZKw1FNAKt6QZ3Z3uqxKAD8lkImU6EtzgDqvQwy7jLGatpKI07nWujTGRgDsnUWVTjLfUghQyv8Bn59thI+I4hPn2PsJQQ8gGMQLTQt4Jkid/eoZIHtvEfipIRYpYnrPzUdfO4zz1DM6InbGbHwoH2T0VZ5T2BT8UghQ6stH1c/J3hHw8Eu0fmBK5EXxi4BX+ZwvwQD4Vgq8nGtfwM90wJ17DxsBF0cMsCmnpJYE8Pb1S6Oxqbe+veOMbf/NIXD/9Pn6U1vqV9sj+WUI8l+GChZeUc2cAxT4kE+OJUqpnMHGnoFI5kktPuQgF529axhVemqkkhlnLTwtAkI2eWIDeFxMEpBy0Pg8tLb04hpqpGISTMAX74CkXS0IhVkXXT0fWEibS6FI+AWwmT3n59XKzfPd+w/wX2Y+W3CjPUrlO40qRjvEdj/Z/pyfAvMUKPtzIqBsBcqu79wBauaTf2UDph2QYcC5A3xTnBxADkgzQCPg+4y67o8c4Jph3/OTA3xXyHV/5ADXDPuenxzgu0Ku+yMHuGbY9/zkAN8Vct0fOcA1w77nJwf4rpDr/sgBrhn2PT85wHeFXPf33zug6P2AvmS95pr5RfObvqM0r07OAYh23+GZ14DR5wLfG8VrBOcImCBXv74YaNy71BAE0R9DsG+7aI6AD29enIwF3wS0z7Zh8+rVGmlI0Zf/uxMR3la9GeagcGKAGCAGLmTgN3ixCV3ccuWnAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMVSURBVHhe7ZpNbtpAFMdnbKOA1AU3KEcgPUFu0GwSpAopYQFqlzlBwwnaXSVnYSpQJZpFewN6g9ATlBuERSVC7fHrPFrS+APZzwxf07EUZeHnN+//m/974yhmzFyGgCFgCGhC4JX7s06VYlEf2Nf4c/fXW8FLd2c3wQWlRk4J3tdYFM85XC/rC5l9edt2Puap9+ABnLnzusXZXVxsXggH3wK3naMxg7AVB2Ax0cvTDgfvgKXwhju7ZNzyqE7QBgAKLwJhrwE0PsxqeQYZxgzfVCZFIOwUwEsPqmX/4RQYq3NmPQfOawygyjnLLTwvIIxLG4w7AYBWBWZdSKEnFAEqYuMQtnoKoKXP3fkIh9UuxCNAC/zIpm/NAfiaKpgjxfNq3p0EgEVf57k4tk/WJY/LYafSexq2FQC482Bbo7TeliK/MQbfZSFjm4mxEPZ0OdCy9KTdx7Mf3wES91LEY8x2ALiznrR95B0dGO/xQHTXERsXSRW/FQCLo8yxfkSLDbvDduW6yA6veqaI+MVMUFlEai47OunlkTfZF/ErHeB5Xq1UKnmyP+tyuESGVrPZJLVNw51/kY12uoQDAq4+vy6/VwV+MVzln8F5ez4el3AAinccBxOexMUXKRo4RKYzt2FcJM+qZz51nsl8YTdyf8XAS8uRACDFv1Mh/HExiDroIWATlQAw15+W+guBID51Bkjxj3ZVUShnEGkhVi5PVeSN50AINvjH8XM+a61EPw8GAzmn/l3Uno8v2LiZR/IN20ekGaK6nswZkEVMt/ubPwb3nJgBsOkNwp5/+rPp9aj5jQOoxHSLNw7QbUepeowDqMR0izcO0G1HqXqMA6jEdIs3DtBtR6l6jAOoxHSLNw7QbUepeowDqMR0izcO0G1HqXqMA6jEdIs3DtBtR6l6jAOoxHSL/+8dkPhffb/fv1f6hYhiy6z7vUK8nIQDpPix4ppVpvuqMhnmSgDwfb8lvw6bql5o3XxhGN7L2q7WzZPpgFarNQmC4FhCUE6bUrxcf3GhcPlrJIR4gbVRcphYQ8AQMASyCPwGNZYZwIFHcx8AAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: OpenURL -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Url - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ExternalActivities/SendTextMessage.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ExternalActivities/SendTextMessage.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index d8e683f..0000000 --- a/resources/App/modelsource/NanoflowCommons/ExternalActivities/SendTextMessage.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Launches the text messaging app on your device. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Send text message - Category: External activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAANSSURBVHhe7VtNTttAFJ5xnB1pU8IB0huQnoCeoEhdVF1VLKruEnKChhNA2FVdsKy6qAQnKDcIN4ADEDkVoRv/vL4BWbi2k/Ewk5lxMpaMkP08877vfW887ykmxB2OAcfAJjNAy8C/+/Cl2/CSM0pglxDaNk4QkPMIvOHFz283qn0pEMDA+148sQJ4Fi2QGZLQU02Cl2fUp/GxdeCZk5S0mSpVK6BAAKF0X/UkqsajQDAl1R6FFHj/8TNkp/j143vpOpHa5O1F3RMdn2cvOn9RAaIj1NzeEVDzAEq7L70GSHtgeACXAoYDYHz6jVeAkTXg5SDoNqF5BlhrUKqh1sBaIqTh8M/4VaGW0K4ABt4Hf4Jb2z0t4B+30ftI+ITNnc857QQ0wD/WBjyLFmsJpjrjBHhma41CLaF9DdgZzP+rNW7HW0trDdnXBG8+7SkgC0j1844A1YzWbTyngLpFTLW/1ilgu//3U6d/F+B5zf5PAYter0qUdQRQEo/YRgnPrkeSkxSI6PXaEpDtSGOtMHsC8lQzVLtejQLrFAA0HgLADZ4zoPQohSF6vRp8VibkDtGucNWJUjvezkx0PJ49bz7rFMADpPq+I0A1o3UbzymgbhFT7a/2t0CnPw8odmcWAVnUH0j7iKyVJkNCfnztKYCMX4kAQODtnf78a5M0r2XBE4CL/NzaCcDu7AHgjx2qkLDdvx9gA5UBH1WxX2bDNlYhjQ6NE8Ba0xENewm2qhc53Bnc7bFiyKNwIttAZcAJkMuIRr2ytrj2NSAPOr9TY84ukjrbIhMKw+n4xULyRJWiPQW4DpYscg91AYEjFkWV4Jkv9hGQYwhIMkbgr6fj1gglXGnt4JKcMbCXAEwFjPpbjPjhKoCnHFhHwEMpjMBvT7cQfOtSJJrPsbWGgDTPp6ctJveVA7dKAdk8f04UZZ4xroCQhBjx1eb5MoKME1C2OZGJqOizxgkQdVi1vfGdIA/QqnuUG68ARwBPgut+3ylg3SPMw1f2FgjwoTbvQVP3V/69ALarrkyB486bwDnXRtCgsAbE4B3gGMrrbkG/CuZYLwQRaQxlx8k/XyCAfZUVJV4PO6jK2RZ0nv2cDgWZBPj3d5z4b1R/MSbojzN3DDgG1pCBf4FWZ430px0wAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMpSURBVHhe7ZtBctowFIYlAw3sOAK5AeQEyQmaTWHDTMczpTNdNZyg5ARJV53CwgvYwIqcoLlBcwO4AewSgq1Xya0TahtsjWVJDtImGSPee/+n92RJgxAyzRAwBI6ZAI4T7zhOo1KpOADQxBjXNQA03263fdu2l6JjiQBg4svl8m9NhO/qXVMILdEQrDBRKv5GQ/EszDrLStEZEAFAxV+KdiLQXlOgLd9UpAQmkwnsOul2u7HzRNAn3J83QF77Sf15/UcygNdA0fsbAEUfwazxZ54Dsgag+vumBFSPgGr/R58BSuaAzo/HBpQsByNoIhl7DUBz5JH+9EstspeQngFMPCphutdA51LE/13uXTKfvu9Qkw4AlawbacJ3xdJMY1mnHgAbDUXNL7lQkz4HdEab//Ya097Jwb1GVlZJ/uSXQFZFgr9vAAgGWjhzJgMKN2SCA9YuAz6M3I+d4dOqPdos2P+BXt7naTlpBwCDN2ALJfpubFjg3gZCeJ8XFwCCehA8YLx+AcD5vLAAEII+AFoigDUGcv0qhPd5OgRmJZiO09vtpd0kKBu1ASCbuG7+jj4D5L8F6Crv0InQvvOBl3NEdpSWoYXtS88AQPiBJ/73DtTbw+dvqGwt/HPEDA0IuQt/XToA7BGbLXLS6Oj8fP5a3W6ocBik6X+wD1tYEXSlHIB/NO1BC7Gj6j2tM3o8bw83C2TBbeYDVCqc/tTnnvmMOxaXPgeENYfP7Ogy+H5fqtPDxCXC0J99qu6Fx5sp0ksgKcBY8X7JkOtN+V1LpHgWi3YAwoAAke9PlZPTaa82uLNfd4dJINN+ri0Av24RuZj1ald5CA8AaQfAr3Mm/HP1go46hZBv0wfAvzqf9fx0z124VhmwW+f5jnfUuvoMcMlp3nV+CKpyAHGLE5lZoByATLFxvpSvBJMA8P5yNcme8r0Ab4B59z/6EjAA8k4x3e0ffQZE3gLj8Xil6Y0RP5lyvy9AxT9onLZz0bFFSoBeTLLpVnQt2lFWe4SQFbs5ltVO4jqA3cpyXbdFIQinzRM89e83Jpz++eV53pnoG2M88Zi+hoAh8DYJ/AEQj2elWZwDmAAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: SendTextMessage -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: PhoneNumber - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/ExternalActivities/Share.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/ExternalActivities/Share.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 3bacad9..0000000 --- a/resources/App/modelsource/NanoflowCommons/ExternalActivities/Share.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,46 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Action to invoke the native sharing mechanism of the device. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Share - Category: External activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATcSURBVHhe7VrbVSJBEBVQvw0BIpCNYDWBXc7+6fHFJgAmoBCBsAng83uNYMUIlgzUDPj2hfdyejxN069hZqDZnTlnPmCqe+reqq6uqumVlfzKGcgZyBnIGfh/GSgsE/Rer7exvr5+OBqNtqB3FXeZ+hcKhQH+e8R9u7+/fxEH09IQcHl5WQPQHu4NG0ASgectXyKWgoDr6+szgGrGsSxJ2Nvba7vGBE8AwJ8SjAuI4XkHJBzbxhZnnHguw+D2Ryp4uPgQdxv3NsAVeEPmy/v7u27tN29ubmo2ZYP2gKurqwes+XGg48X1/fr6ul2v17nOpy4EyfLq6uqdPAZCw5eXlwrGDHVjgvUAWl8BsmIDT3AkhjL0EgnsBkihJ2mvYAkA+O+yxgB1brK8LCdkugrarWUkoCorDUJUULal3Vcebi4dAVC4LCuNYDewIZafIQeYIEBdSrJssEvAF2xSueAIYLor9v4JbNgRjOtYJQFzTCwfxA+j9wRFAPbsBiL2AwC1NJb1JqBUKjWV8U9BxwBaF1a/g6U6plwf/ze4z7tcnjLFYvFQkfttGrfQREgkLmcAV3MB4/NZEiGOQVCsBEUA1/na2loDyjV1FheJTJfKw5o9VXnmBNwWo52BHoTfX3Xz4b8jW2UYywPSqMdFhndq2poIDtlcO0p6IN8BCQ0fD9EQ1QZ4XTz5FPUmIGk9LqzEys4UzPosctQ9nJpibAuEcaz3heKoe3BwoAbDqfFeBCSpx+k1iMq0ohqYxsoId2+6Ghguz4mQiWqxDvC3Pmw5CUhYj9OqVds6h7t3TJWaDoAggnVCGfNWhQzbYQOQ3H9+fr6IM5+VAL5MDUJRgMKL+5G7gqQqXK5psrIGSB8lKvTUl7U+lktLxkpASvX4p64iIzvWrfO0AMWdx0iAzvqisfBoe4nY2//Kbi+8hgGuE1fBrOWNqXDK9fh9iOBJro2AKMCMjZBVPZ61hV3z24qhsjw4q3rcpWDWz4OqBrMGq5vfRsBEsMuqHl8EaPmdRgI0TYQtX2Xj1OO+c2YlZ/OAe/mlCevxTXiQNhXOCpjvvEYCkKKea/rrd7amRPRhQn05Kz/c50yskDVOtLt9Fc1KzpUK15DeTnVT4tTjOsXVkjcrcD7zOouhJPU4FDAWQ0K5FrLLrm/xkkY/Yso7fVhKUo9zWSAotizlMHcb5/f8pP0IE06nB0QDk9bjhg+Xn3rZ+n1J+hEuA3sToBAxcz3uIlKNDwn7Ec7zAbEJcDHq85xrGf1/NkRNba4h5umgx/CUtB+B8T92d3fDbYvb4oNK5ixtccwR7vkAdoTQuzsCMH7TZzC0Xv/s+QB2iPjxAi5fNxHB2ODTQlvq8wHwBn4T2GZLW5NNZnI+YCFB0OXqfI7oP5LlxGEon6FjGd/xeT/Am9L5C04Exaz6EcF6wLz6EcESAIebqR+BTLMS53xAsATY+hHwDm3wJnhkl3/k1QrZh9Q+j887DLACNPUjkEH+2tnZGVAnHK0Znw/A9tlQv0Omej5g3gTwfUn6EeJze8umd7B5gKw0+xH4fQLreukL4Lx4PsB6Upzv8JpwEZZX3ynK6BP8z/6iVm8BfAiZn6mdDwgBvKyDOEL/TRyxqfIZ4sTj29vbAHHhPu75gNDw5frkDOQM5AzkDMyTgQ8ZMRJNTif6tAAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: Share -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The url to share. - IsRequired: true - Name: Url - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The text to share. - IsRequired: true - Name: Text - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: An optional title for the message or url to share. Only some share - targets use this value. - IsRequired: true - Name: Title - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/Enum_DistanceUnit.Enumerations$Enumeration.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/Enum_DistanceUnit.Enumerations$Enumeration.yaml deleted file mode 100644 index bf49076..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/Enum_DistanceUnit.Enumerations$Enumeration.yaml +++ /dev/null @@ -1,34 +0,0 @@ -$Type: Enumerations$Enumeration -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Enum_DistanceUnit -RemoteSource: null -Values: -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: KILOMETER - Name: KILOMETER - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: STATUTE_MILE - Name: STATUTE_MILE - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: NAUTICAL_MILE - Name: NAUTICAL_MILE - RemoteValue: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/Geocode.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/Geocode.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index b53a668..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/Geocode.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,50 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Geocoding is the process of converting addresses (like a street address) - into geographic coordinates (latitude and longitude), which you can use to place - markers on a map, or position the map. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$ConcreteEntityType - Entity: NanoflowCommons.Position -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Geocode - Category: Geolocation - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAVOSURBVHhe7VtLUhsxEMV8KlsfAU4QOxeI4QKBbLIBglOVNSYXwFwgkHUWJnwWWQEXSOAC+ZwA3yBsw895j5JdUlvzkUYzEYmnagp7LLW6X3/U6h6mpibXBIEJAv8zAjUX4Y+OjhoY/wJ3C/e8uqcGg8FVrVb7gb8Xt7e3++12u+9C92+OzQWAEnxXCZ7JL4DYBxA7jwGITACOj483IdBeptT2Ad3V1dUdz7mVTJtOWwWa3y4gPEl3SaMSSTwXSQRAMd610D3Hs/bNzc0CtFvjje/N+/v7Nv7yN3lFDYLVBXq93vzc3NylLgkDHe72+vr6aRrYBwcHGwiI27gZJEcX5i6ura3ZAPLUXZhpVguA8D3BfB9BrZklPOdgDAPgIgHTaRCUMCyHpTIGwOHhYQtL8NavrktEV2NXBI2Woh1WgoLUxgCA5paF9s9gup9c11Hmbpi8pO1Ks4zxYwBMT08/FaZruIMLEwiMHwSt5y7zqxhrs4CGvjCi/YUvI3d3dz8EAPO+tMqaNwYAglVdXwz+fOW7uCVuGLR96Yacl5oIcSFsidExXTYAfbGANwAAz3AnBEFJO6QsXrRsMcDw25mZmZYXZUzCXAMAuFf8AIDvn7rA2BVe+wIAgXl0Hl2wgDNfWmXNs8WAc7FYwycOMJ0GAMs6LXyXtMuSKzfdMQCYwEBTuhvUZ2dnO7kpqoEw/67Qfh8HJ8O9XGmWMT5pFzBMFZrbdLECpX3D/MG8AUgZwvjQtAKAw8yeOMzUcUDKfZih9vV8gtHfJ532Ech1jhUAlfwYaSwId1RpLHUNat8SOKPUPgVJTISUFfRFEMs8FyBefJW+H6v2UwFQVsAqz+iCKTdgBSyOWi9WkWQhBAMNGq4mWvb41FRYHWnlUbhjO9ezEiQDHU+DMVaBDKvOQpjRH2b9XdcsgxqrPsPDDv2epm8Z0yxymJK8ZfUlsP7p9fX1mUvxJrMsTiaocRA3fJuNECy2yN8lQHzGoqkLI2mKKLMvkQsABQK3NmMrZAMEz67we0fEih2YfjfLuvL8XqQvAf62wMde2jq5AVAgnMj0VhInKFg0SOBLKc3nwW44JrU5k1kP0FeC37fTjrQqNmy5cJc01qcvIVL4EQBwYcNCnYKgZFAFPAbFujB7IzAWASFAX2JX8gd+mraziJMFUCgGNhB/CH4GkrXaSqigF6Av0ZR9CfBqzV+cAaDQRFK1wh4wYLAJddKrui/hBQCFZgcIgu/wzoq0Lu5QdV/CGwAKxa0u1HY3BClkXwI0jSwWrjvWlygEgItm847leUMfW6QvgbnnIk7NSz6iA6DqvkR0AEgNuVSi8lqZPi5GAPpCkLqPYJyTpy8RHQAymyu7LxEdAFBcpX2JwgC8+vh7oN++5qrNMyI3npfalygMQACBDRIl9iUug5wFQgucQK+MvoT1fcXoLICAlNCXuEyqTEcJQJG+BIqzC5a+ROLbqlECoFmBkRMgS8zsS2DMF92tsK0map/jogXApy+B+iHrljLff5MWt6IFgEy79iWgbaNoi5rFXlZfImoACAJOdB1LHbJHXx9qlp8tFetLvKWW+aa6U1XYZkpMgvTnn98+KUxTrpPUl8C4JfQmBkX6EtFbwNAVWHkSwa0BE3/Ptr3lxezc/6zxKABQIHQh8IkOAgTfwPeOAKbnUqUqbK7SBYpmimkupPqU3yD4yP/llock6plLP/LRWAAFpWAQcAmW8EsCzf2ev7kIH3UekGRJ7D0g01uCwKPgy8+wipc+fYlHZQFDUHiqg8x6gvMuVF+iqAtXOh/bY5d3pYtOFpsg8G8h8Acrw+sw2xdQMAAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: Geocode -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Address - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required for use on web. - IsRequired: true - Name: GeocodingProvider - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required for use on web. Note that the keys are accessible - by the end users and should be protected in other ways; for example restricted - domain name. - IsRequired: true - Name: ProviderApiKey - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/GeocodingProvider.Enumerations$Enumeration.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/GeocodingProvider.Enumerations$Enumeration.yaml deleted file mode 100644 index 03c8118..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/GeocodingProvider.Enumerations$Enumeration.yaml +++ /dev/null @@ -1,43 +0,0 @@ -$Type: Enumerations$Enumeration -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: GeocodingProvider -RemoteSource: null -Values: -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Google - Name: Google - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Geocodio - Name: Geocodio - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: LocationIQ - Name: LocationIQ - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: MapQuest - Name: MapQuest - RemoteValue: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/GetCurrentLocation.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/GetCurrentLocation.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 8098fa3..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/GetCurrentLocation.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,57 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "This action retrieves the current geographical position of a user/device.\r\n\r\nSince - this can compromise privacy, the position is not available unless the user approves - it. The web browser will request the permission at the first time the location is - requested. When denied by the user it will not prompt a second time.\r\n\r\nOn hybrid - and native platforms the permission can be requested with the `RequestLocationPermission` - action.\r\n\r\nBest practices:\r\nhttps://developers.google.com/web/fundamentals/native-hardware/user-location/" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$ConcreteEntityType - Entity: NanoflowCommons.Geolocation -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get current location - Category: Geolocation - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABSCSURBVHhe7Z1pbB3VFcdn3u7nHSdOnIVsjkNJGgIGkpACTitRVSShpSrIhgqoGgOfQA18dszXAmo/AU5FaQu4UBVKkvKhUktSCLvBSSElJiQ2jbM73p6Xt07nBL0wc/PsmTvrffY/kiXE3LnnzO+8859779xFkvAPBEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABECACMh2MNzxe6UqlkreJ8lykyJJ62RZWmqnPtwLAiBgTECR5G5ZUXpzsvS3QCa3/5WHS3qN7ypcwpIAUOJH0+lHZCn3qJr8VVaN4z4QAAH7BFRBeEHOZNutCAG3ALR0JNZlpPDreNvbDxxqAAGnCKgt8F5FkX7yl9ZoN0+dAZ7CP9uVuS8rhz9F8vNQQ1kQcJ+A+iZfGpClTylHeayZbgHQm5+Sn61cUZTR7GSuc2I4tW/sfPpUdiw9yuMAyoIACPARqFgSb4iWhRpDJcGWQDBQp7tbUYZykrzZbEvAlAB80+dPXfbmT6uJP3A00YGk5wsgSoOAUwTmra1qVYWgVVsfdQeSoci1bzwgDxnZMdUFuDjgx4zwpxKZp84eHHwKyW+EGNdBwD0CZw4NdVAuai1QdyCSmnzUjFVDAaC3vyQp92sry0xkO859PtxpxgDKgAAIuEuAcpG64VorAVl+5Jvcnf6foQDE0pM/1r79cznpJKmOUcW4DgIg4B2BQbUrTuNxlyyqn+ejyaTuxV3IG0MBkKTAHdobs5OZ/d49FiyBAAiYIZBUB9/T4xl9qzwYuMboXkMBUGRlqbaS9Hh2n1GluA4CIOA9gcxErktvVWky8sJQAGRJXqetZOR0sseoUlwH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Y0ZFWWJ393V7abSf/nhm+jn1sFOJAJLfKcLO1AMBcIajkLXQaL/TI/48D8qKAJKfh543ZSEA3nCetVbyIoDkF/MnAAEQMy4zyisSAXznFzOkEAAx4wKvQMATAhAATzDDCAiISQACIGZc4BUIeEIAAuAJZhgBATEJcAtAsDSs20tOzMeCVyAw+whELeSmoQCom0H3alFWzI9ib/bZ99vCExcBgdj8MJObSreR24YCICm5/dpKQiUBz46jMnIe10EABL4lEC0LN2l5KDmlz4iPGQHQqUg4HmpGN8AIK66DgPcEQuGAXgACgdeNvDAUgGQ0/oJ6KsxQviJZlstr6uM4rNGILK6DgIcE6OxEORi4tN27eoxTbyoUecPIBUMBeOMBeSinKL/VVhSOhZrnrK5oNqoc10EABNwnMFfNxfzhrZde1FLuD5S7RtYNBYAqSEViv5Fy0nFtZWp/YwepTi4gyUZGcB0EQMB5ApHycEXtNZU7ImouMrUfnwypOWvin+nkbelIrMvIoX/JklytrVfJSSfT4+nOsfHkJ4m+pGdrzk08G4qAwIwjEFM/9YXmBOpKS6O30ngcdcl1D6ke4hqUMte93FrWbebhTQsAVXZ3x8T9kiQ/L6lWzVSOMiAAAh4SuHiCs/KLV1pLXjBrlTuRqSWQVcKvSQFpmVkjKAcCIOAyAVk6Hsyl7zT75s97Y2oMQOv6RQO53PdlKUtfBxT23HiXHxPVgwAI5Amo+acm4KAk5dongxHTzX4tQO4WgPbmu5+ZWCoFpSZFCWxTZGWpqibrEB0QAAGXCaizcxVJ7pYlZf9kJGpqtN9lj1A9CIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACBQ9gf8DzcEelnFtb4UAAAAASUVORK5CYII= - Subtype: 0 -Name: GetCurrentLocation -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The maximum length of time (in milliseconds) the device is allowed - to take in order to return a location. If set as empty, default value will be - 30 second timeout. - IsRequired: true - Name: Timeout - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The maximum age (in milliseconds) of a possible cached position that - is acceptable to return. If set to 0, it means that the device cannot use a cached - position and must attempt to retrieve the real current position. By default the - device will always return a cached position regardless of its age. - IsRequired: true - Name: MaximumAge - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Use a higher accuracy method to determine the current location. Setting - this to false saves battery life. - IsRequired: true - Name: HighAccuracy - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/GetCurrentLocationMinimumAccuracy.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/GetCurrentLocationMinimumAccuracy.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 9bdc8e9..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/GetCurrentLocationMinimumAccuracy.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,67 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "This action retrieves the current geographical position of a user/device - with a minimum accuracy as parameter. If a position is not acquired with minimum - accuracy within a specific timeout it will retrieve the last most precise location.\r\n\r\nSince - this can compromise privacy, the position is not available unless the user approves - it. The web browser will request the permission at the first time the location is - requested. When denied by the user it will not prompt a second time.\r\n\r\nOn hybrid - and native platforms the permission can be requested with the `RequestLocationPermission` - action.\r\n\r\nBest practices:\r\nhttps://developers.google.com/web/fundamentals/native-hardware/user-location/" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$ConcreteEntityType - Entity: NanoflowCommons.Geolocation -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get current location with minimum accuracy - Category: Geolocation - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABSCSURBVHhe7Z1pbB3VFcdn3u7nHSdOnIVsjkNJGgIGkpACTitRVSShpSrIhgqoGgOfQA18dszXAmo/AU5FaQu4UBVKkvKhUktSCLvBSSElJiQ2jbM73p6Xt07nBL0wc/PsmTvrffY/kiXE3LnnzO+8859779xFkvAPBEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABECACMh2MNzxe6UqlkreJ8lykyJJ62RZWmqnPtwLAiBgTECR5G5ZUXpzsvS3QCa3/5WHS3qN7ypcwpIAUOJH0+lHZCn3qJr8VVaN4z4QAAH7BFRBeEHOZNutCAG3ALR0JNZlpPDreNvbDxxqAAGnCKgt8F5FkX7yl9ZoN0+dAZ7CP9uVuS8rhz9F8vNQQ1kQcJ+A+iZfGpClTylHeayZbgHQm5+Sn61cUZTR7GSuc2I4tW/sfPpUdiw9yuMAyoIACPARqFgSb4iWhRpDJcGWQDBQp7tbUYZykrzZbEvAlAB80+dPXfbmT6uJP3A00YGk5wsgSoOAUwTmra1qVYWgVVsfdQeSoci1bzwgDxnZMdUFuDjgx4zwpxKZp84eHHwKyW+EGNdBwD0CZw4NdVAuai1QdyCSmnzUjFVDAaC3vyQp92sry0xkO859PtxpxgDKgAAIuEuAcpG64VorAVl+5Jvcnf6foQDE0pM/1r79cznpJKmOUcW4DgIg4B2BQbUrTuNxlyyqn+ejyaTuxV3IG0MBkKTAHdobs5OZ/d49FiyBAAiYIZBUB9/T4xl9qzwYuMboXkMBUGRlqbaS9Hh2n1GluA4CIOA9gcxErktvVWky8sJQAGRJXqetZOR0sseoUlwH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Y0ZFWWJ393V7abSf/nhm+jn1sFOJAJLfKcLO1AMBcIajkLXQaL/TI/48D8qKAJKfh543ZSEA3nCetVbyIoDkF/MnAAEQMy4zyisSAXznFzOkEAAx4wKvQMATAhAATzDDCAiISQACIGZc4BUIeEIAAuAJZhgBATEJcAtAsDSs20tOzMeCVyAw+whELeSmoQCom0H3alFWzI9ib/bZ99vCExcBgdj8MJObSreR24YCICm5/dpKQiUBz46jMnIe10EABL4lEC0LN2l5KDmlz4iPGQHQqUg4HmpGN8AIK66DgPcEQuGAXgACgdeNvDAUgGQ0/oJ6KsxQviJZlstr6uM4rNGILK6DgIcE6OxEORi4tN27eoxTbyoUecPIBUMBeOMBeSinKL/VVhSOhZrnrK5oNqoc10EABNwnMFfNxfzhrZde1FLuD5S7RtYNBYAqSEViv5Fy0nFtZWp/YwepTi4gyUZGcB0EQMB5ApHycEXtNZU7ImouMrUfnwypOWvin+nkbelIrMvIoX/JklytrVfJSSfT4+nOsfHkJ4m+pGdrzk08G4qAwIwjEFM/9YXmBOpKS6O30ngcdcl1D6ke4hqUMte93FrWbebhTQsAVXZ3x8T9kiQ/L6lWzVSOMiAAAh4SuHiCs/KLV1pLXjBrlTuRqSWQVcKvSQFpmVkjKAcCIOAyAVk6Hsyl7zT75s97Y2oMQOv6RQO53PdlKUtfBxT23HiXHxPVgwAI5Amo+acm4KAk5dongxHTzX4tQO4WgPbmu5+ZWCoFpSZFCWxTZGWpqibrEB0QAAGXCaizcxVJ7pYlZf9kJGpqtN9lj1A9CIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACBQ9gf8DzcEelnFtb4UAAAAASUVORK5CYII= - Subtype: 0 -Name: GetCurrentLocationMinimumAccuracy -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The maximum length of time (in milliseconds) the device is allowed - to take in order to return a location. If set as empty, default value will be - 30 second timeout. - IsRequired: true - Name: Timeout - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The maximum age (in milliseconds) of a possible cached position that - is acceptable to return. If set to 0, it means that the device cannot use a cached - position and must attempt to retrieve the real current position. By default the - device will always return a cached position regardless of its age. - IsRequired: true - Name: MaximumAge - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: Use a higher accuracy method to determine the current location. Setting - this to false saves battery life. - IsRequired: true - Name: HighAccuracy - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The minimum accuracy to be received in meters. Less amount of meters, - more precise is the location. - IsRequired: true - Name: minimumAccuracy - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/GetStraightLineDistance.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/GetStraightLineDistance.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index e5e85fd..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/GetStraightLineDistance.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,59 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$DecimalType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get straight line distance - Category: Geolocation - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: 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OgAUqg7j7ibCOhBYHgTCBSo36bVcNwAoijTKCqleE9aUdNJTgN9BAATsIRBZE+T6pnJMT7NuAJCU/CFWSKDCZ/m34fWMxO8gAAL6BMKxYBd7lZJXTuvdZSQAaKJIsDKwHcsAPaz4HQTsJxAI+rQBwOd7Tc8K3QCQCle+KCnKzKIgWZar6porL1v5VU8hfgcBELCewOot1T2y39ewKFmRpNF0IPS6nibdAPD6Q/JMXlF+zwoKRgLbV22u3q4nHL+DAAiIJ7Ba7YuhaFAzKMtS/k/Ud/W06wYAEpAORX4n5aURVpi63thJUSfvk2Q9JfgdBEDAegKhqmB1/fU1O0NqX+SkjyQDap818Ge48+7onWvPyoG3ZUmuZeUqeelsJpHpm0+kjs6dTg0b0IlLQAAEiiQQUV/1BVb5GqLR8O2Uj6MluUaUWs7dL2W37u+JHTOiwnAAIGH39S48KEnyHyRVqxHhuAYEQMBGAmrnlyTlVy/3VLxoVKvpjkwzgZwSfFXySRuMKsF1IAACggnI0og/n/mZ0ZF/0RpDOQDW9EsK8vkfyVKO3g4ol/7hDwRAwH4Cat9TO+C0JOV3J/0hw9N+1lDTMwD25vueW1gv+aUuRfHdrcjKejWatNtPARpBYJkRUHfnKpJ8TJaUQ8lQ2FC2f5kRQnNBAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAwDSB/wHYLF/vWP6IPQAAAABJRU5ErkJggg== - Subtype: 0 -Name: GetStraightLineDistance -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: LatitudePoint1 - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: LongitudePoint1 - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: LatitudePoint2 - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: LongitudePoint2 - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: unit - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/RequestLocationPermission.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/RequestLocationPermission.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 5a0675e..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/RequestLocationPermission.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,25 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: On the native platform a request for permission should be made before - the `GetCurrentLocation` action would work. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Request location permission - Category: Geolocation - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABZySURBVHhe7Z1rcBTXlce7563RaKRBQkjiYQFC2ECMbOHFmE0s5UOqUstj11WJS8KpxFsbQT4ltdifhfarjWv3UxyxlfXWOmGd1CYLorKv2iDWOImxhUEBssgyCC8SQiD0mhnNu7ePUiN3t0bqvj3dPd3iT9VU2ep7zzn3d/uevo9z7+U4/AMBEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABEAABECACfDEYDv+DUBVIJb/N8XybwHEtPM81FiMPeUEABNQJCBx/hReEkRzP/asrk7vw3vfKRtRzFU6hywFQw/en09/nudwPxMZfpVc58oEACBRPQHQI7/CZbI8eR8DsADp7oy0ZzvtLfO2LrzhIAAGjCIg98BFB4P7i513+KywyXSyJv3Eq8+0s7/0EjZ+FGtKCgPkExC95o4vnPqE2yqJNcw+AvvzU+JXCBUGYyyZyp+dnUv2xh+l72Vh6jsUApAUBEGAjEH4i2OwPeVo9Ze5Ol9tVL8stCNM5jm/X2hPQ5AD+OOZPLfnyp8WGPzkc7UWjZ6tApAYBowise7qqS3QEXVJ5NBxIenzPnHmVn1bTo2kIsDDhp5jhT0UzJyeuTp1E41dDjOcgYB6B+4PTvdQWpRpoOOBLJX6gRauqA6CvP8cJ35EKy8xnex9cnzmtRQHSgAAImEuA2iINw6VaXDz//T+23ZX/qTqAQDrx59Kvfy7HjZHXUROM5yAAAtYRmBKH4jQft6hRXJ73J5OyD3cha1QdAMe5DkszZhOZC9YVC5pAAAS0EEiKk+/peEbeK3e7dqvlVXUAAi80SoWk49l+NaF4DgIgYD2BzHxuQK5VaFOzQtUB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dDx9OhZPXo7eSQ5p0IkkIAACOgkExKU+T42rvrzc/yLNxymvUqd7Ft1c5tmfdoWuaFGh2QGQsJd757/DcfyPOVGrFuFIAwIgYCGBhRuXhb98r6vsHa1amRsy9QSygvcX4r3Cm7UqQToQAAGTCfDcbXcu/ZLWL3/eGk1zAFLTFxTkcl/luSytDghq97ybXGyIB4HHl4DY/sQGOMVxuZ6E26e52y8FxtwDkGZ++YfzjZybaxME1yGBFxpFb9Ly+NYGSg4CFhEQo3MFjr/Cc8KFhM+vabbfIsugBgRAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAAQcS+D/ATEudOtkw81LAAAAAElFTkSuQmCC - Subtype: 0 -Name: RequestLocationPermission -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Geolocation/ReverseGeocode.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/Geolocation/ReverseGeocode.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index ff6ea24..0000000 --- a/resources/App/modelsource/NanoflowCommons/Geolocation/ReverseGeocode.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,55 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Reverse geocoding is the process of converting geographic coordinates - (latitude and longitude) into a human-readable address. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Reverse geocode - Category: Geolocation - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAT+SURBVHhe7VtLUhsxELX5VLY+gnOC2CeIOUFglQ0QvMgac4IMJwDWWZjwWWQVOEHMCSAniI/ANvyc9yiZkno0M9JoPMiFp0oLj9U93a8/Iz3ZjcbiWiCwQOAtI9CcJ+fPzs46sPcTRg+jrUZjMpncNpvNG4yLu7u7y36/P3b1ay4AUI4fKMcLfQMgxw8PD/suQEQPwPn5+S4cOiz02jIBcntbW1u5sktlFNclg8h/K+s8bURJHFBHnr3RAqAMTyzGj3Cvf39//35zc7PJgc/dp6enPsC6scxPTk9PB1kgRFkCw+Gwvbq6+lc3mo0Oo7+9vX2RF9GTk5MdRh6jJeZ1AVYKoCgzAM4PhfNjNLVukfOUwRw2wC4BEwCwiaau6ABAuvZgJYd+JS4dfSqg5m4IHT2l27gdHQCI3LqI/iU6+Y+8tLd9B5kR7nO8XFI3v4gOgKWlpQ+60ahloxw8gTCAg66PUj46ABCljm4kuv2Vp9Mv0yFrZAAAaEcPgOzeqOfbsgBY+kYregCkgXglpowuC4hNLroSgJFjYWhpAACeUU4oL6k7viYoV3PLy8u9shGHrAEAyit+AODsH91hvBW+lAUADnPr/HIB3Mt56AFG54bBnTJ9gMtpALCuO4zPUnd8JcAFjCiD1srKysA3C5D+iYj+eG72AjDcSFVEbtcnC1T0jfSHTgOQKTgxvgUa2Mwcis1MCxuk3H29Hm1GX19PsPtnLaejBEAtfo5E2g8UNZZbDYy+pXFao09FUQJAw1QWGK8tl30B+sVvWft5m6loAVBZ0BfOdJAF1n0955FFsqz3DR3z8Bp8sVFtaeVWeGDb15MJko0ONNmR0pFZNl6UWBEvj2ZzhdQ99iEvil5v7P5I62s9smxqeM7a9Dmse6a+ZU63aDPlBMAsefkiAPg9Iw7njNrmQQgOQdb4vQSI90iaugSisAeQl4e+a4yei7GcA+N2SGoWUdKu+tTiaF/2Azh+wNejrHtkiNOhyLOteUbkUNOutnNeghWYYbyPsD4XmfBLLm+lLp4KAbDcxqfLZGZAGV4eikcW55KqMgF1T+5/nAWg6g17PgBbM6ACXt6WlmtFHdnFcNXw2BRboiSMxuiii3OsGVABL78meXkY7LyUzTOejQ26npuffuHehkvTk3IpAOrm5V0jpc/jro5HYdN7PAS17fRcdKcAqJuXdzHSNocnQOz2HEUnwHnPSAFQJS/PlZhI0xQvXxYAysHxhCNEhy0DOrrCEF7+8fHxRgDQDjF2FrIpAOrm5WfhlI/OwpWgDxPj8+BY5toAGAvjWmWNdeHly+quSs7WA4y6nTUvX5UjZfXYMqBWXr6s4VXJ2QAYCeUz5eV9Hfn8/d9EH77ycn4KgLp5+VAHQuWz3gK18fKhDoTKWwGok5cPdSBU3gpAnbx8qAOh8pkLobp4+VAHQuUzAaiLlw91IFQ+dylcBy8f6kCofOFeALvBgYWHwyp32J4+XJ3GGowPZbAbTEINnLW807nALHl5Xwe5CNJlfn595+RD1nMKM4CCs+TlfQGoer4TAAqEBGl9oRvAAxB8Huj3FC9ffepPJk38NyYo2jbwvBTazumE88+/6s47j5MpHBrRWkpgaiQd46Gk5afo/OPSlJe/DXWqTnnnEtBAqJSXr9NZ27O8AaCSKnn5TACQUkyrwvGaCOL1yP/jVN/wXtOpxbMXCLwtBP4DQJgCrZUob80AAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: ReverseGeocode -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Latitude - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Longitude - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required for use on web. - IsRequired: true - Name: GeocodingProvider - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required for use on web. Note that the keys are accessible - by the end users and should be protected in other ways; for example restricted - domain name. - IsRequired: true - Name: ProviderApiKey - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Icons.Images$ImageCollection.yaml b/resources/App/modelsource/NanoflowCommons/Icons.Images$ImageCollection.yaml deleted file mode 100644 index 5db6915..0000000 --- a/resources/App/modelsource/NanoflowCommons/Icons.Images$ImageCollection.yaml +++ /dev/null @@ -1,81 +0,0 @@ -$Type: Images$ImageCollection -Documentation: "" -Excluded: false -ExportLevel: Hidden -Images: -- $Type: Images$Image - ImageFormat: Png - Name: ExternalActivities_CallPhoneNumber -- $Type: Images$Image - ImageFormat: Png - Name: ExternalActivities_DraftEmail -- $Type: Images$Image - ImageFormat: Png - Name: ExternalActivities_OpenURL -- $Type: Images$Image - ImageFormat: Png - Name: ExternalActivities_SendTextMessage -- $Type: Images$Image - ImageFormat: Png - Name: Geolocation_GetCurrentLocation -- $Type: Images$Image - ImageFormat: Png - Name: ClientActivities_ShowConfirmation -- $Type: Images$Image - ImageFormat: Png - Name: LocalStorage_StorageItemExists -- $Type: Images$Image - ImageFormat: Png - Name: Geolocation_ReverseGeocode -- $Type: Images$Image - ImageFormat: Png - Name: LocalStorage_RemoveStorageItem -- $Type: Images$Image - ImageFormat: Png - Name: LocalStorage_SetGet -- $Type: Images$Image - ImageFormat: Png - Name: Geolocation_Geocode -- $Type: Images$Image - ImageFormat: Png - Name: ExternalActivities_NavigateTo -- $Type: Images$Image - ImageFormat: Png - Name: OtherActivities_GetPlatform -- $Type: Images$Image - ImageFormat: Png - Name: OtherActivities_Wait -- $Type: Images$Image - ImageFormat: Png - Name: OtherActivities_Guid -- $Type: Images$Image - ImageFormat: Png - Name: Geolocation_RequestLocationPermission -- $Type: Images$Image - ImageFormat: Png - Name: ExternalActivities_OpenMap -- $Type: Images$Image - ImageFormat: Png - Name: ClientActivities_SignIn -- $Type: Images$Image - ImageFormat: Png - Name: ClientActivities_SignOut -- $Type: Images$Image - ImageFormat: Png - Name: ExternalActivities_Share -- $Type: Images$Image - ImageFormat: Png - Name: Hide_Progress -- $Type: Images$Image - ImageFormat: Png - Name: Show_Progress -- $Type: Images$Image - ImageFormat: Png - Name: ClientActivities_ToggleSidebar -- $Type: Images$Image - ImageFormat: Png - Name: Refresh_JS_Action -- $Type: Images$Image - ImageFormat: Png - Name: OtherActivities_GenerateUniqueID -Name: Icons diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/ClearCachedSessionData.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/ClearCachedSessionData.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 53a1944..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/ClearCachedSessionData.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,25 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Clears saved session data from the local storage for offline native - and PWAs. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Clear cached session data - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAUBSURBVHhe7VpNUttYEO6W5Z35iZ0DwFxg4ASBuUCgWCRZYaYmNZuMHU4QzwkSeZfKAmeVyiIFOUHICcgJBg7Ajxmc2VhWT7eMQXp6klFeiUigV+Xi5z1J3V/393W/ZwGUo0SgROA+I4A65x8/+XOhYnk7CLQEgPO5B4hgzyVr+/PHt0dpbY0AIM7b1uigEI4HvSXoMwjLaUGwVMRsHL0unPPiBMK8ZG3aDIgAAIhraW+Sl/VIwJRNNyIU2Hj2nIK3+PThnVYn0j0mu9Wm9kYzIDtbc3nnzAHYePp8c+PZH2f8OZTfVRRM501RzRwAQOqMRRUX2Ng3EYNN5w0RyB6AYB+B1I/aG+gzfmjeDIHMASCPtgGIGxTqkwd/q+aazpu5L9VTGaaqampQ2utN7c08A9I6dNvrp2bAbRtk+ry0fcu9z4ASANOUK/r1UzUgLaduG5CyChgiXmqAIYCFv7zwGmAagZICpggW/foyA4oeQVP773QGzLXPFh62Bl/qrUHkKG4C3J0GwPYqHT7xWLEQeo3WxY4AombMnQVAnEXLuoo8IjarYK/dGwAqVOVvuK4HER0dOzNv7gUA9fZ5k9M+FG0C7OgEs5AUaLT/XWu0vu/EiRuS9UqJfu+0W3t/JwCQ6CJYu4gkURZxOwwCwar/ivkeEjsX3chpdCGrgC9sSnTFWQGCHd9ttC9WCKipRv/ceXAU1y8UigI22Rz5cHSvHGPOI+CX4LwIX1L05drCANBoDV6zc0tpOj8RvqToFwaAMa/hZdB5j2hvCMNF+RkHCr/i00nqAgsBQL31vc3dXKiESWqP0N2W6J52Z9Y9GG3J/1QgJvrgC+WLQUgbCiGC9dZ/mxZSqHm55PVqMLVPnbneSXdmMRGICuxIJhWmERJjLfR6qsEsautxvBYgeH6ZK0Fc2QvRKLcU8COlpL0Y6wFssfPfkoSQ5/snzkxH9EGlBSGd5ToDuM7P11sXu3HOnzq1SEYkgaGWTCKMZEZuyqA0MVznDyzlLTWOYp/AW584L9khoqbb2gbBsKnaDv7NtDjUtcO5AMAvc0oTI8ZPBO/EmfVLHTu9JNkhka1S9eDhXxcRTl87TWshADTRz40GcHRCxl46/40FTdTe57xEXDrBK6f4xUhCaOsywd8vBDpGATJuM6T7XkCEYj6JWyZzuu8a5dhKTm5C9yXoHHdrPmcvnQ+1ufJ/j6Cpc0y9HwMgZXJLZ3eEAkTgI36bY4hDbmSgH3omp7pQI855KXU65/2MUMBMtRsckSVIhY3JGA2p6y7Cqg4EEcboBsh7L6VOZxafA75UMmk/1W5Q3rZ2PWuZFWgvY79Dtz93asz5KAjsfJiOBPvHzmwz1jbEx8E57h16SX7k7j3gufZgySbSb3uZJkyXRWl2dE5JlahClV/1vx7cED2IWy+rclEGgwaPM8FlOkQ3N/JKvFBivLHhGqCMimevhNOfPic5n0sAxKixJnBP73mO6qS/w+ONDZ8P/CNAzL04W7wCA+GRyv9pNM4dBVSD/ZrOx2CxJ0FyAesCZ8xXzpDNUP0HWmWx3C+UBsRwm5ugioDAX3Tw0cgNx7FTm7o2dxqg800ocdKd3RqC+wuRbJG5YPqfhKH2FTFLCwHAxPYgEB54v3MzxIqvB4O3voc3SZSpKXKTm/zMNdL5VcBaQcJHzI5f2ZYFsccF97dpZwc/0+7y2SUCJQL5QOB/vU5PmyMZu2QAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATzSURBVHhe7VpdbttGEN4lKSsq+uDewO4Fap8gdi8QG6gloDAQK6gE5Mn1CayewMlTWsmAFNgoKvXByQninkA5QewbxA8BbEnUTmfWlcBdLikRhJSlSgIL/3CXnPlm5puZ5TKWXzkCOQL/ZwS4Sfl2u71RKBTaALDFOV/PAEDvRqPRSbVavU0qawgAUt7zvH5GFA/qe4cgbCcFwdERQ+XPMqg8qbFOXpvUA0IAoPJ7SR9i0fytpLKEQuDy8hKCDzk8PDTyRNIXLWp+WnlDHrAoQW197sIBuLi4eI7jM44b+l0HIu39tMAuHAAUsEGkimMDxyuDwGnvp8JgGQBM6wisK+4M0qa9bzcAqPQJjltSHsdvurRp76fSHhfnWSAtgllfP9MDsqZg0rplGSRoNYY5AFabZwnCzeSApDG1BJmVV+S9QErEcw5ICWDml2eeA9JaIA+BtAhmfX3uAVm3YFr5V9oDKm/uN8rNwYeD1iC0FTcBbqUBYC5tx7EdVLJTbg3bBIjuMSsLgFSWO1PLcwZH4Ia/eawsAMx1zoLWxo8dt736k9Cm7EoCUGneH+Fm354GQMNEmJkEoHz+sEcxHUVuwJxTVXne+btWfLsSAJB1OfAriulHchvcBIEoN4enSHwK2XF/HNqNzmQWIGLTrYvNzAYBUWkOriqt+x2GwOjW774s3UbVC5kKAfDcK926U8VkzDsfgveJ+OKsT2szA0ClNThDt99KUvkhAI0462cGAIprFPZXRXlg75gvNhn9jLgwPBpxVWAmAKj8MTzmHJQURq7NxuKErNutF/cZiCoA/k+7JvwgifJ8oHBDJkjwoOU/Zw68UkmN4lrsBl27Wy91evUiekMMEMDa/3mSApO1HEDCOmzc0a3qwWg/Kq4JiEFhbZsxYUx7nAk1jGwlwcdcrrq9BAIt/Gf9249xRPi+yu+6tVKD+CEUFg7/rK+1ygOetWGd8nmU8mThJFlAT5kCWMgzrAGAipjiaNjXa3hG5wo47E+UJ+8gUjO1tgo4BedY+ZuzG1M5bAUAj+SkFjHS45HtXebv9n55IlPdz80veHIVGsTuzOX98u8PoZieKA1CbYZM1rcnDXKxp7s2MP6R2H4S82RxnxWupvPoCK/Lj02eIPuFQD9AQEY1Q6HvAnSia5EnRU3fGmnbinZulHQHvNGrr8mYlT2AG/YQwdiRSTH9eQhmp1dbq5r4w3RSNJZlk5DQvHP5WFQp1oPzydUpNKKUp1RnUp7m62Am6gbxwDFWVcbTXPPqk3ge5XWKdRMIFOuhBgjEW5nqDBe4asmMulwn6gbptLXv+9u4UBLPsi6KdRMITDuuLxWql46i5XKeKaHEeSdOB+vOARPTE9kZ2170zIdCcZOKHZNSB83BlsNZP3jvwVv7Lmo+zbMiDQYFJk9ATtg1NTfkDUV/2JeNDUDIeFz4KpEK8T5OeSsBIKEoZqmmByZe65aWHR41NufDTwTET817bIIeweCO91SZD/x6VghbFwK6wJTTaRsscicIF6C3XAOIfzh+B1DnYddYK8WCYD0ABIhMbR6cAuCHDixSZll1cr9bK86cax0HmJSjkPir9k2VjeF7Ti0ypgI54q45U3kmAJhaNAAEOv4LAdCPAgPRuZnHU2a6yDwP+ZpzZC/gsh2sHJ+OwflhwgEe+D/O2jv4mnLn784RyBGwA4F/AZbuYOdBLdaUAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: ClearCachedSessionData -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/ClearLocalStorage.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/ClearLocalStorage.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index bd265bd..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/ClearLocalStorage.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Clear local storage - Category: Local storage - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABd+SURBVHhe7Z1rcBRXdsf7MS/NjF5IgB48DR5Ym8KCseNdmwThVO3WlgEnW5W4hCtZe7eQvZ92E8zXsOSrjZN8MohU1knZsE6qsssjSdV+MCLYu2HXwlgxrBHYvPUAhEaah+bZnT4DrfQ0M9Pdmu6entFfVS67PN33nPu7ff997+l7z2UY/IEACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACBABthIML/1MbPGlU99nWLZXZJgelmVWVVIe7gUBENAmIDLseVYUrwks80suK5z+8EcN17TvKn7FvASAOr43k/kxywg/kTp/y3yN4z4QAIHKCUiC8B6bze2fjxAYFoBdA7GeLOP+Bd72lTccSgABswhII/Brosj86b/1e88bKZMzcvGfHc5+P8e6P0PnN0IN14KA9QSkN/kqjmU+oz5qxJruEQC9+anzqwsXRTGaSwpHZ6fTg/F7mbFcPBM14gCuBQEQMEagaaU/5A26wq4GfhfHc50Fd4tiRGDYbXpHAroE4MGcP/3Imz8jdfzJK7EBdHpjDYirQcAsAks3tvRLQtCvLI+mAymXZ9Ox19iIlh1dU4B8wE8V4U/HsgfufD51AJ1fCzF+BwHrCEwMRwaoLyot0HTAk07+RI9VTQGgtz/DiK8qC8vO5gbuXpg+qscArgEBELCWAPVFmoYrrXAs++MHfbf8n6YA+DLJP1G+/QWBGSXV0SoYv4MACNhHYEqailM8bs6i9Hnem0oVvLiLeaMpAAzDvaS8MZfMnravWrAEAiCgh0BKCr5nEtnCUTnPPaV1r6YAiKy4SllIJpEb1CoUv4MACNhPIDsrDBVaFXu1vNAU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AB9wP/iOiz8QAAFHEfDOo29qCoB0wMM1ZS2bOryOzWvvqNaAMyBgMwFfh1vVN8XzWi5oCgAjCgUHNEorugryuGkZwO8gAAL2EHgky5IgXteyrEcAClTE7Xf1YRqghRW/g4D9BFxurldpVeS4X2h5oSkAKa//PWkPZ0QuiM6Oa1vrnzsEUssAfgcBELCegHwys2xJZJhraZfnmJZlTQE49hobEUTxH5QF0dHRdAa8VuH4HQRAwHoCi6W+qDyZmSyyjPDP1He1rGsKABWQ9vj+nhGYq8rC6Ax4Uh2j2WC1HMLvIAAC+gh4pKPaljzVvMcj9UXVHVeTLqnP6vjTTAoql7FrINaTZV0fsQzbqiyXcr9lEpmjcronHTZxCQiAwDwJ+KRPfa52rjMQ8G6leJz6OHdKucQz2c1H+oPn9ZjQLQBU2MsDs69Kg4t/KpfcQY9RXAMCIGABAanzS0nXfvBhf8N7eks3JABUKI0EcqL736VjRVfrNYLrQAAELCbAMld5IfM9vW9+2RtdMQCl63kDgvACy+To64BY7LQYi6uK4kEABIhA/ngpcYphhP1J3qN72K+EZ3gEoLz55XdnVzE80yuK3E6RFVdJatKDlgEBELCYgLQ6V2TY8ywjnk56vLqi/RZ7hOJBAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAoOYJ/B8eZXARlzYqgQAAAABJRU5ErkJggg== - Subtype: 0 -Name: ClearLocalStorage -Parameters: null -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemObject.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemObject.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 773dae7..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemObject.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,48 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Store a Mendix object in device storage, identified by a unique key. - Can be accessed by the GetStorageItemObject action. Please note that users can clear - the device storage. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$ParameterizedEntityType - TypeParameterPointer: - Data: me0u7CIr0kyEJQQFBN9uVw== - Subtype: 0 -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get storage item object - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAO5SURBVHhe7ZrPTtRAHMd/MyvGGBJwxTuPIG+AT7ARDsCJoqwnpcQHcOEJdI9K1OUi4YDoE8gTKI/AXcOfZNULnXGmWrfttJ3OtN2d2W0TErLtTH/fz+/b72zbBai3mkBNYJIJoCLil9baLgK6DYDmi8yjP5aeUYR7Hz+82dWdQxsAE/+SDWbijdh6Rwd7GzqVaAForTxevIHxF50TVjaGkAdHh29PVOfHqgP48Q2MHJ1xVY6hGHd05ld2QGL3NenrFByMWWYuhLgLNepQdkADRUlTgBMd6xURz8fyc1IKEcvruEAJAO8+QrAYLh4Rop3ARSEgGj03s/Oi7wyFTQmAKd0P9JXhgtwAllY2nXj3PYK1lh6FBkkPLeqC3AAQhmjKUuh9Pnx9Jq2w4gOKuiAXAN79+Le9a4pHdu3HmRZxQS4ApnY/kgWE7kfAYPQ+j/mkAEzvfiDSg8ZOVDCaX15tr8sgSAGY3v1AIM8jGncBojEoIo5MALZ0P+aCy4FMNP9w9cl2lgsyAdjS/bALCCHdsGAMtNNqrc+mQUgFYFv3A4Hk1vUr9v/ABQhm8e2bqS5IBWBb9/+7YH//UnABBTfNBYkAbO2+jgsEAK2WO2tr93VcIDwPWFrd7CCEpMuHbH01cT8B2D0+2ItoExzAbngcE4svoybMsiA+T0IGjOoJbxkSJXOwFSEHgCEUYtAphAxYXmuzp1yDjT1uVn5uaJA+kOmR3guYJKaKWmoAVVC1ac7CGSC7xuL7ZXBkmTPn9iMZ9aM7nZlRsvrqS0DWkXHfP/EOKJwBw3aIagbI6pt4B9QAZBYZ9/1JGXDBRAt3TWWBkK3zsvNUngHsnfuprIhx2i9kgEf9N76X4yQyS4sAgL9huSZ4ASj9NCkQjNE5417clxXDMyD8Jz3+eX9ByQGyCavaP7fV70zB1Lfm1i/pC828NTSf/nbAg693n/3cSRtjxPcALh4Q+EViRHplQODiccPzX5EjTDtpEEYOwLf9P/FBl4pCCIsP5kSYvLjn9oVLbOQArrp3Tgl4wm+NdCEkiQeW6ATQo+/daWGJHzkA3qHz7kyvDAhZ4s+7072kHDACQBkQdMT7mZM3UYdxnK4TdMX7ATkMYarnaLpXDoaG8CMnQrHDsyE8H/EaG0HaDz7/e82n2T483kgAvMA0CHKY+cUb64BApDoENfHGA1Bzgrp4KwAMIOB3LLJSLlk98dYAyIagL94qAMkQiom3DkAUAkDepU6+clh2BF8dmm7fsazsutyagIkE/gBl3cSQSpYfAQAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOQSURBVHhe7ZpfbtNAEMbtNKjqW4/QI7Q3KGdAaSWUiKQSfU1PQMoJgNekIiF/HipeuAE9AfQIvQE8IKGQ2GbGxNF61/Z6Z22y69hSpDb27s73m29nnbUdpz5qAjWBfSbg6ohfLBb9IAhuoI8TnX6obWHsJ9d1J+12+y21DzKA+Xz+DgZF8Ts/AMSk0+n0KIGQAMxms3Mg/5UyYFltAMJzgPCg2n9DtQFeD4N1Ke3KbAMJGVD6V3ZAUvap9CkBR22KikPZAQmkHyjW0xGPbTdjxixPcYESAKQOY+Nne0D2yRVYF0LC2OebGHN3rQTAlOxH6opwQW4A0+kUC18s+6vVirT05E5Pjgt1XZAbAJ99XHt7vd5TjhhLvUTXBbkAYPYBwAmrZL1e72zu80R1XJALgKnZZ2uB7/ufODDjPNaTAjA9+5FIz/NuWcHoWFgRXskgSAGYnv1IINajBBfEoCTByARgS/ZZF0A9+Bn9v3HBTZYLMgHYkn3WBfD3B24qDMbj8XEahFQAtmU/Egir03vWBfD9cbPZTHVBKgDbss+4AKcA74J+mgsSAdiafYoLBABIytbsU1wg7AfAVhduLEiXD9n6auJ5vGOEW+eYNsEBJu72FAUTnN3n+xIA8Pf8RQ1uSD/Ccii9EzQk8NLCSKoBATsa7Lkr7xuWFi2hY6hpmXr23gE1AIKrKtVEuwbI5hh/XkZPVnMuR8vYnL5/fZhZo2Tx1VNAlpGqn997B2jXgP/tENUaIItv7x1QA5BZpOrnhRoAe+k/4Beh8KupKBCydV42Tuk1AMQ/yoKo0nmhBuATX25XtUp6BS0CAHzCAlvLZwDhS6WVmyju5fDXqSwurAHsR3b9i7vlWdY1xiyDF8M/A8999r01WksfaMpER+dbd+tuM3C+tUar27Q2RgBA8a4bhEE2HG9SBAQU3wi88BF5w/EHaRB2DqA1XJ5G4qMs6UJgxW/7DLw3OBbvhJ0D+Hx9+OgEvvCuERVCknh8sxNe77wKx+KOnQPAeO6vjyZFQMgSH46RcBgBoAgIFPH/6oNBB9UJVPEo3cg9/8vh767jNoSXnHznoIu1gc2Z7x70omq//X4z59Nsz7Y3EgAGmAZBalgF8cY6IBKpDEFRvPEAlJxAEG8FgC0Ex/3owG/1xClAFG8NgEwIGuKtApAIQVO8dQBiEMK5EFzlWeqkK4dtF+DqEK4Q9VETqAnoEvgLwvsAuQFka0oAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: GetStorageItemObject -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Entity - ParameterType: - $Type: CodeActions$EntityTypeParameterType - TypeParameterPointer: - Data: me0u7CIr0kyEJQQFBN9uVw== - Subtype: 0 -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: Entity diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemObjectList.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemObjectList.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index b165bac..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemObjectList.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,51 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: 'Retrieve a local stored list of Mendix objects identified by a unique - key. When objects are the client state it will be returned, if not they will be - re-created. Note: when re-creating the local Mendix object the Mendix Object ID - will never be the same.' -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$ListType - Parameter: - $Type: CodeActions$ParameterizedEntityType - TypeParameterPointer: - Data: T/hx/04emUKiXGNRA0DgZA== - Subtype: 0 -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get storage item object list - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAO5SURBVHhe7ZrPTtRAHMd/MyvGGBJwxTuPIG+AT7ARDsCJoqwnpcQHcOEJdI9K1OUi4YDoE8gTKI/AXcOfZNULnXGmWrfttJ3OtN2d2W0TErLtTH/fz+/b72zbBai3mkBNYJIJoCLil9baLgK6DYDmi8yjP5aeUYR7Hz+82dWdQxsAE/+SDWbijdh6Rwd7GzqVaAForTxevIHxF50TVjaGkAdHh29PVOfHqgP48Q2MHJ1xVY6hGHd05ld2QGL3NenrFByMWWYuhLgLNepQdkADRUlTgBMd6xURz8fyc1IKEcvruEAJAO8+QrAYLh4Rop3ARSEgGj03s/Oi7wyFTQmAKd0P9JXhgtwAllY2nXj3PYK1lh6FBkkPLeqC3AAQhmjKUuh9Pnx9Jq2w4gOKuiAXAN79+Le9a4pHdu3HmRZxQS4ApnY/kgWE7kfAYPQ+j/mkAEzvfiDSg8ZOVDCaX15tr8sgSAGY3v1AIM8jGncBojEoIo5MALZ0P+aCy4FMNP9w9cl2lgsyAdjS/bALCCHdsGAMtNNqrc+mQUgFYFv3A4Hk1vUr9v/ABQhm8e2bqS5IBWBb9/+7YH//UnABBTfNBYkAbO2+jgsEAK2WO2tr93VcIDwPWFrd7CCEpMuHbH01cT8B2D0+2ItoExzAbngcE4svoybMsiA+T0IGjOoJbxkSJXOwFSEHgCEUYtAphAxYXmuzp1yDjT1uVn5uaJA+kOmR3guYJKaKWmoAVVC1ac7CGSC7xuL7ZXBkmTPn9iMZ9aM7nZlRsvrqS0DWkXHfP/EOKJwBw3aIagbI6pt4B9QAZBYZ9/1JGXDBRAt3TWWBkK3zsvNUngHsnfuprIhx2i9kgEf9N76X4yQyS4sAgL9huSZ4ASj9NCkQjNE5417clxXDMyD8Jz3+eX9ByQGyCavaP7fV70zB1Lfm1i/pC828NTSf/nbAg693n/3cSRtjxPcALh4Q+EViRHplQODiccPzX5EjTDtpEEYOwLf9P/FBl4pCCIsP5kSYvLjn9oVLbOQArrp3Tgl4wm+NdCEkiQeW6ATQo+/daWGJHzkA3qHz7kyvDAhZ4s+7072kHDACQBkQdMT7mZM3UYdxnK4TdMX7ATkMYarnaLpXDoaG8CMnQrHDsyE8H/EaG0HaDz7/e82n2T483kgAvMA0CHKY+cUb64BApDoENfHGA1Bzgrp4KwAMIOB3LLJSLlk98dYAyIagL94qAMkQiom3DkAUAkDepU6+clh2BF8dmm7fsazsutyagIkE/gBl3cSQSpYfAQAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOQSURBVHhe7ZpfbtNAEMbtNKjqW4/QI7Q3KGdAaSWUiKQSfU1PQMoJgNekIiF/HipeuAE9AfQIvQE8IKGQ2GbGxNF61/Z6Z22y69hSpDb27s73m29nnbUdpz5qAjWBfSbg6ohfLBb9IAhuoI8TnX6obWHsJ9d1J+12+y21DzKA+Xz+DgZF8Ts/AMSk0+n0KIGQAMxms3Mg/5UyYFltAMJzgPCg2n9DtQFeD4N1Ke3KbAMJGVD6V3ZAUvap9CkBR22KikPZAQmkHyjW0xGPbTdjxixPcYESAKQOY+Nne0D2yRVYF0LC2OebGHN3rQTAlOxH6opwQW4A0+kUC18s+6vVirT05E5Pjgt1XZAbAJ99XHt7vd5TjhhLvUTXBbkAYPYBwAmrZL1e72zu80R1XJALgKnZZ2uB7/ufODDjPNaTAjA9+5FIz/NuWcHoWFgRXskgSAGYnv1IINajBBfEoCTByARgS/ZZF0A9+Bn9v3HBTZYLMgHYkn3WBfD3B24qDMbj8XEahFQAtmU/Egir03vWBfD9cbPZTHVBKgDbss+4AKcA74J+mgsSAdiafYoLBABIytbsU1wg7AfAVhduLEiXD9n6auJ5vGOEW+eYNsEBJu72FAUTnN3n+xIA8Pf8RQ1uSD/Ccii9EzQk8NLCSKoBATsa7Lkr7xuWFi2hY6hpmXr23gE1AIKrKtVEuwbI5hh/XkZPVnMuR8vYnL5/fZhZo2Tx1VNAlpGqn997B2jXgP/tENUaIItv7x1QA5BZpOrnhRoAe+k/4Beh8KupKBCydV42Tuk1AMQ/yoKo0nmhBuATX25XtUp6BS0CAHzCAlvLZwDhS6WVmyju5fDXqSwurAHsR3b9i7vlWdY1xiyDF8M/A8999r01WksfaMpER+dbd+tuM3C+tUar27Q2RgBA8a4bhEE2HG9SBAQU3wi88BF5w/EHaRB2DqA1XJ5G4qMs6UJgxW/7DLw3OBbvhJ0D+Hx9+OgEvvCuERVCknh8sxNe77wKx+KOnQPAeO6vjyZFQMgSH46RcBgBoAgIFPH/6oNBB9UJVPEo3cg9/8vh767jNoSXnHznoIu1gc2Z7x70omq//X4z59Nsz7Y3EgAGmAZBalgF8cY6IBKpDEFRvPEAlJxAEG8FgC0Ex/3owG/1xClAFG8NgEwIGuKtApAIQVO8dQBiEMK5EFzlWeqkK4dtF+DqEK4Q9VETqAnoEvgLwvsAuQFka0oAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: GetStorageItemObjectList -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Entity - ParameterType: - $Type: CodeActions$EntityTypeParameterType - TypeParameterPointer: - Data: T/hx/04emUKiXGNRA0DgZA== - Subtype: 0 -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: Entity diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemString.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemString.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 99f62ee..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/GetStorageItemString.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,32 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "Retrieve a local stored string value identified by a unique key. This - could be set via the SetStorageItemString JavaScript action.\r\n" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get storage item string - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAO5SURBVHhe7ZrPTtRAHMd/MyvGGBJwxTuPIG+AT7ARDsCJoqwnpcQHcOEJdI9K1OUi4YDoE8gTKI/AXcOfZNULnXGmWrfttJ3OtN2d2W0TErLtTH/fz+/b72zbBai3mkBNYJIJoCLil9baLgK6DYDmi8yjP5aeUYR7Hz+82dWdQxsAE/+SDWbijdh6Rwd7GzqVaAForTxevIHxF50TVjaGkAdHh29PVOfHqgP48Q2MHJ1xVY6hGHd05ld2QGL3NenrFByMWWYuhLgLNepQdkADRUlTgBMd6xURz8fyc1IKEcvruEAJAO8+QrAYLh4Rop3ARSEgGj03s/Oi7wyFTQmAKd0P9JXhgtwAllY2nXj3PYK1lh6FBkkPLeqC3AAQhmjKUuh9Pnx9Jq2w4gOKuiAXAN79+Le9a4pHdu3HmRZxQS4ApnY/kgWE7kfAYPQ+j/mkAEzvfiDSg8ZOVDCaX15tr8sgSAGY3v1AIM8jGncBojEoIo5MALZ0P+aCy4FMNP9w9cl2lgsyAdjS/bALCCHdsGAMtNNqrc+mQUgFYFv3A4Hk1vUr9v/ABQhm8e2bqS5IBWBb9/+7YH//UnABBTfNBYkAbO2+jgsEAK2WO2tr93VcIDwPWFrd7CCEpMuHbH01cT8B2D0+2ItoExzAbngcE4svoybMsiA+T0IGjOoJbxkSJXOwFSEHgCEUYtAphAxYXmuzp1yDjT1uVn5uaJA+kOmR3guYJKaKWmoAVVC1ac7CGSC7xuL7ZXBkmTPn9iMZ9aM7nZlRsvrqS0DWkXHfP/EOKJwBw3aIagbI6pt4B9QAZBYZ9/1JGXDBRAt3TWWBkK3zsvNUngHsnfuprIhx2i9kgEf9N76X4yQyS4sAgL9huSZ4ASj9NCkQjNE5417clxXDMyD8Jz3+eX9ByQGyCavaP7fV70zB1Lfm1i/pC828NTSf/nbAg693n/3cSRtjxPcALh4Q+EViRHplQODiccPzX5EjTDtpEEYOwLf9P/FBl4pCCIsP5kSYvLjn9oVLbOQArrp3Tgl4wm+NdCEkiQeW6ATQo+/daWGJHzkA3qHz7kyvDAhZ4s+7072kHDACQBkQdMT7mZM3UYdxnK4TdMX7ATkMYarnaLpXDoaG8CMnQrHDsyE8H/EaG0HaDz7/e82n2T483kgAvMA0CHKY+cUb64BApDoENfHGA1Bzgrp4KwAMIOB3LLJSLlk98dYAyIagL94qAMkQiom3DkAUAkDepU6+clh2BF8dmm7fsazsutyagIkE/gBl3cSQSpYfAQAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOQSURBVHhe7ZpfbtNAEMbtNKjqW4/QI7Q3KGdAaSWUiKQSfU1PQMoJgNekIiF/HipeuAE9AfQIvQE8IKGQ2GbGxNF61/Z6Z22y69hSpDb27s73m29nnbUdpz5qAjWBfSbg6ohfLBb9IAhuoI8TnX6obWHsJ9d1J+12+y21DzKA+Xz+DgZF8Ts/AMSk0+n0KIGQAMxms3Mg/5UyYFltAMJzgPCg2n9DtQFeD4N1Ke3KbAMJGVD6V3ZAUvap9CkBR22KikPZAQmkHyjW0xGPbTdjxixPcYESAKQOY+Nne0D2yRVYF0LC2OebGHN3rQTAlOxH6opwQW4A0+kUC18s+6vVirT05E5Pjgt1XZAbAJ99XHt7vd5TjhhLvUTXBbkAYPYBwAmrZL1e72zu80R1XJALgKnZZ2uB7/ufODDjPNaTAjA9+5FIz/NuWcHoWFgRXskgSAGYnv1IINajBBfEoCTByARgS/ZZF0A9+Bn9v3HBTZYLMgHYkn3WBfD3B24qDMbj8XEahFQAtmU/Egir03vWBfD9cbPZTHVBKgDbss+4AKcA74J+mgsSAdiafYoLBABIytbsU1wg7AfAVhduLEiXD9n6auJ5vGOEW+eYNsEBJu72FAUTnN3n+xIA8Pf8RQ1uSD/Ccii9EzQk8NLCSKoBATsa7Lkr7xuWFi2hY6hpmXr23gE1AIKrKtVEuwbI5hh/XkZPVnMuR8vYnL5/fZhZo2Tx1VNAlpGqn997B2jXgP/tENUaIItv7x1QA5BZpOrnhRoAe+k/4Beh8KupKBCydV42Tuk1AMQ/yoKo0nmhBuATX25XtUp6BS0CAHzCAlvLZwDhS6WVmyju5fDXqSwurAHsR3b9i7vlWdY1xiyDF8M/A8999r01WksfaMpER+dbd+tuM3C+tUar27Q2RgBA8a4bhEE2HG9SBAQU3wi88BF5w/EHaRB2DqA1XJ5G4qMs6UJgxW/7DLw3OBbvhJ0D+Hx9+OgEvvCuERVCknh8sxNe77wKx+KOnQPAeO6vjyZFQMgSH46RcBgBoAgIFPH/6oNBB9UJVPEo3cg9/8vh767jNoSXnHznoIu1gc2Z7x70omq//X4z59Nsz7Y3EgAGmAZBalgF8cY6IBKpDEFRvPEAlJxAEG8FgC0Ex/3owG/1xClAFG8NgEwIGuKtApAIQVO8dQBiEMK5EFzlWeqkK4dtF+DqEK4Q9VETqAnoEvgLwvsAuQFka0oAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: GetStorageItemString -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/RemoveStorageItem.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/RemoveStorageItem.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 58318aa..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/RemoveStorageItem.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,32 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Remove a content identified by a unique key. This could be set via - any of the Set Storage Item JavaScript actions -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Remove storage item - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMhSURBVHhe7ZrNbhMxEMdnHIRQT3mCKlLPIPEG6ROsSA5NLzSIhmvKE4Q+AeUIFSK5UPVQPp6APgKCc6WoL0AeILHxVlqS9Wbj9XhNbcUrRYq0O+OZ3/w9jr0BiFckEAlsMwG0Sb5zOBgiiBMAbNn4oduKqUA2/vL5wynVBxmATP6tNJbJe3GNry7OX1AiIQFIDl62HzD2gzKgMxvO968uP16b+memBunzDYZ9ip1LG8HYiOLfWAFrq0+kTwk4s+lKFYKqQkIcxgpoYJ60ALimSM8m+dQ2HVMIyEmeogIjAGn1EaG9GjxyTu7AthBQ5MeWcm7fKcPgMgLgS/Wz/OpQQWUAnYPjvlr9BWekpcegQNpHbVVQGQAyyHdZAePvl++n2ggdP2CrgkoA0uqrv/bmgt3b3FeZ2qigEgBfq5/rBVxMcmAYfqoiPi0A36ufJbmAxpt8wtjq9gZHOghaAL5XP0sw7UdCVQEKBUoRx0YAoVRfUcFsmSa2nvVenWxSwUYAoVR/VQWc83erCTMQoyQ5apZBKAUQWvWzBPmj+Zn8vlQBQpPtPCxVQSmA0Kr/TwWTyaygAgHDMhWsBRBq9SkqKABIkmEz1OpTVFA4D+j0jkeIqF0+dOurj/c5wOnXi/NcbgUFyA1P38fg64iJyV6g+lnTA+7rhLeOFDU+5IpQAcB/CMSjIQo9oHs4kKdcy0seNxufG3qUH+jy0e4FfErGRSwRgAuqIfm07gG6OabeV+FU7TG/d/dyvUn18/j2htSr4hQISa4uYt16BVj3gLqqopvjtuOU9YitV0AEYCut0O3X9YA/MqnCrqmuRHXrvtoLTNd3U/vCFJDv3H/WlWwIfgoAFuLuje8shODriLEAIH3DMufsKQjxrY4BfPdB+v3sMinTOazGYmofl0GX1QzBd1RACFVyGWNUgEu6IfiOCgihSi5jjApwSTcE38EoQJ6JY5WPKXTv9wKmCanP684TvFOAPI+obSsufU11AL0DgJD/m5sugY33EbRbeu+mQJrQr929M1m95/LfKk0KgFRF0nby5PbmNcU+2kQCkcD2EPgLQ7QuOo5vswcAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALnSURBVHhe7ZvdbcIwEMdJxXPFCF2hG9A9QlsmgE5AO0HpBHyF925QRugIbFDUVz7SO4lUju3E9jkWNnEkJGi4893v/j4nDu104hEJRAJtJpDYJL9er0d5no/Bx52NH6otjL1NkmSepukb1QcZQJZl7zAoJn/xA0DMB4PBkBIICcBqteoD+S/KgK5sAMIDQNiY+r8xNcDvw2DPFDuXNlCQCcW/sQJk1afSpwRc2DQVh7ECJKQ3FOnZJI+25zFLkqeowAgAUoex8fV/QPXJHdgWgmTs/jlGbddGAHypfpFdEyrQBrBcLrHxlaq/3+9JS492eTS+aKsCbQB89XHtHQ6HW40YnX7FVgVaALD6AOCOzeRwOFxs7vNEbVSgBcDX6rO94HQ6LTgwMx3pKQH4Xv0iyePx+MomjIqFFeFJBUEJwPfqFwliP5KooARFBqMWQCjVZ1UA/WBXfD6rYFyngloAoVSfVQG8/+CmwmQ2m/WqIFQCCK36RYKwOk1ZFcDfe91ut1IFlQBCqz6jApwCvApGVSqQAgi1+hQVCACQVKjVp6hA2A+ArS7cWFAuH6r11cfzeMUIl86l3AQF+Ljb0xRMUPaI9yUA4K/5mxrcEz/Ccqi8EvQkcGdhyHpAzo4Ge+7G+4bOoiU4hp5Wm0/rFRABEFR1VSbWPUA1x/jzPD3dHvObpqW5zPu5zTJSr4pT4Kr0TEim9Qqw7gEE6FIT1Ry3HaeqR7ReARGArbRCtxd6AOyl/8AdoXDX1FSiqnWf7wWm67upvex2+LupZEPwIwDAJ77crmoIeZBjFADgExbYWr4HCJ9krwEZkq6fXeZnOof5WEzt4zLospoh+I4KCKFKLmOMCnBJNwTfUQEhVMlljFEBLumG4DsYBcCeeKLzMoXu/b2AaUKmzwv8UwDzMzfb5PGfqlQ+vAMAMi/9wEmVQN35PEmUt/TeTQFMaJemUwjsEd72iAB2AHLRy7IXon00iwQigZYQ+AM0XEw8zwPA7QAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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bA3LCrya/e7YP1KbDyxYqcl63wP4efVF7HPWxoM/yr1wjOkIV4BrAOF60xoCWgW4BqCVl+AIxEuAJUC85pPRIKAkQAJQ4qIwAvESIAHEaz4ZDQJKAiQAJS4KIxAvARJAvOaT0SCgJEACUOKiMALxElBOAOmObGe8CBgNAvEQyAXYN6UJwHGsCS9P17pcXzy4GAUC8RJoXZet2TedM7IRShOA5VRGvUEybakdsqB8jgAC4QvkVmQHvK06FeeSrBd+EkBVFsm2ZwZZBshY+RyB8AUy2VR1AkilXpP1QpoACrn2w5bjTC0Gsm27c9U97UOywHyOAALhCazZ1jVkp1M9iy26D15NLGRajsp6IE0AR/faUxXH+ak3ULY1M7j6vq5BWXA+RwAB/QJr3H2xpSNbdVC2rcqvxb4ra12aAESAhZbWV62KddEbzF1v7BNZp5KypE8UyjrB5wggoC7Q0pntWrt95b4Wd1+sqX0xn3H3WR9/vnfePcMz/SU787pt2Xd54zoVa7I4VxyZnSucnrlU4BddfKBTBIGgAq3uV32Z1amejo7co+J6nFiSV8VyHCdtle7/7dCKM37a8J0ARLDdw/PPWpb9S8tt1U9wyiCAQIgC7s7v/njT944MtR3226ryjizOBMpO9o9WyvqS30YohwACmgVs66L7C8xP+T3yL/bG1zUAb9dvN1Cp7LStsvh2wLn9jz8EEAhfwN333B3whmVVDuTTLb5P+70dVT4D8Fbe/bP5XittDThO6gnHdnrdbNIfvgItIpAwAffuXMeyz9iWM5pvyfm62p8wIYaLAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggICywP8Aj1bwvLHq630AAAAASUVORK5CYII= - Subtype: 0 -Name: RemoveStorageItem -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemObject.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemObject.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index e25241e..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemObject.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,42 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Store a Mendix object in device storage, identified by a unique key. - Can be accesed by the GetStargeItemObject action. Please note that users can clear - the device storage. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Set storage item object - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALESURBVHhe7ZpfbtNAEMZnNhVCPOUIuQKcIJzAInlo+tQADa/pDdKeAHiECpG8UPWh/DlBewSO0Bs0B0h22K1kEu/aWXtt010yliJVimc832++HcfrAvDBBJgAE2ACTIAJMAEmwASYwD4SwDqiB0eTKQKdAmCvTh7/WLojFPPv3z6f++bwBqDEv1fBSnwQx/z68uK1TyVeAJLDt/0DIW58LthajJQvr6++3FbNL6oG6PM7Asc+cW3GkBAzn/yVHZDbfU/6PgWnMUPlQjBd6FFHZQd0MEuaAG59rFdHvI7V1ySCjOV9XFAJgO4+IvS3i0cpvSdwXQhI2WsrO/cfnFHhqAQglO6n+ppwQWkAg8OTsdn9tRRet54KDXKeWtcFpQGggOyUJZj/uvp056yw5RPquqAUAN1989feisSjrX2TaR0XlAIQavczs0DSIgNG4Ncy5nMCCL37qcg1dM6ygrE3HE2OXRCcAELvfipQzyMyXYBkQLFx7AQQS/cNFyw3MrH3avTudJcLdgKIpfvbLpBSftwWLIBmSXLcLYJQCCC27qcC5dPVB/X3xgUIXfHsSaELCgHE1v2/LlgslpYLCKZFLsgFEGv3fVxgAUiSaTfW7vu4wNoPGIxOZojovH247q8hfi8Bzn9cXmS0WQ5QDzzjEItvoiahZoGZJ2cGPNYObxMSHTnUHaEEgH9QSECXsGbA8Giidrk2h9purrxvGJA+cOlxPguEJKaNWhhAG1Rjyll7BrjWmPl903BcM8pVHy+BpjsSW769d0DtGRB6x3kGODq090vgfwKgl3PeZ6cH8mbAvYqwnppCX+tl6zN/N1gOUO/cf5dNFt15RNa/9VgA1vTwxncZnThHwQTyfkWdN879AP2GZSXFcyD6GTgE/dju/GjhSsvNWh68COFtduBMuTwmwASYABNgAkyACTABJrA3BP4AQkAawmQhAUkAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKWSURBVHhe7ZrtTcMwEIYJ6gAdoSvABGWPVlAWaDcoTABMkNKP/2xAR2CEblD+9yPcSQlybCe2z4lqNxepUmni891zr8+Ozc0NX0yACTABJsAEmAATYAJMgAl0kUDiE/Rms5lmWTYDGwMfO9S20PcuSZLFaDR6pdogA1iv12/QKQZ/8QtALMbj8YTiCAnAarUaAvlvSodttQEIDwBh62r/1rUBPg+dPVHatdkGEjKn2HdWgC77VPoUh4s2TfnhrAAN6S1Fej7BY9u8z5LkKSpwAoDUoW/8/F+QfXIF9oWg6XuY+2ht2glAKNkvomtCBdYAlsslFr5S9g+HA2nqsU6PxYO+KrAGIGcf597JZLKz8LHVR3xVYAUAsw8ABmIkx+PxYmNfJuqjAisAoWZfrAXn8/lTApPaSM8IIPTsF0GeTqcXMWBULMwIjyYIRgChZ78IEOuRRgUlKDoYtQBiyb6oAqgHv8XfuQpmdSqoBRBL9kUVwPcPaSjM0zTtV0GoBBBb9osAYXZ6F1UAv/d7vV6lCioBxJZ9QQU4BGQVTKtUoAUQa/YpKlAAIKlYs09RgbIfAFtduLFgnD5M82uI93HFCEvnUmyKAkLc7WkKJih7KttSAMhr/qY6D8SOMh0aV4KBON6aG7oakIm9wZ67875ha94SDENNq42n8wpgAARVXVUT7xpgGmPy/abpmWqUyT8eAk1nJDZ7nVeAdw0IPeNcAwwZ6vwQuBoA8Bab6D6mIarUANhL38MbofLWZDIUy3153aB7Hf6JJRhXP0Ehyr/1KADwxFfaVXXtJ8jn4dBkDzvGz8YNETxhgQfvAMJXkJHkToF/VhcGjpmHo7P7EE6zQ2bKvjEBJsAEmAATYAJMgAkwgS4R+AP+Jm6rVhn9CwAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: SetStorageItemObject -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Value - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: Entity diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemObjectList.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemObjectList.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 12da95e..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemObjectList.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,42 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Store a list of Mendix objects in device storage, identified by a unique - key. Can be accessed by the GetStorageItemObject action. Please note that users - can clear the device storage. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Set storage item object list - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALESURBVHhe7ZpfbtNAEMZnNhVCPOUIuQKcIJzAInlo+tQADa/pDdKeAHiECpG8UPWh/DlBewSO0Bs0B0h22K1kEu/aWXtt010yliJVimc832++HcfrAvDBBJgAE2ACTIAJMAEmwASYwD4SwDqiB0eTKQKdAmCvTh7/WLojFPPv3z6f++bwBqDEv1fBSnwQx/z68uK1TyVeAJLDt/0DIW58LthajJQvr6++3FbNL6oG6PM7Asc+cW3GkBAzn/yVHZDbfU/6PgWnMUPlQjBd6FFHZQd0MEuaAG59rFdHvI7V1ySCjOV9XFAJgO4+IvS3i0cpvSdwXQhI2WsrO/cfnFHhqAQglO6n+ppwQWkAg8OTsdn9tRRet54KDXKeWtcFpQGggOyUJZj/uvp056yw5RPquqAUAN1989feisSjrX2TaR0XlAIQavczs0DSIgNG4Ncy5nMCCL37qcg1dM6ygrE3HE2OXRCcAELvfipQzyMyXYBkQLFx7AQQS/cNFyw3MrH3avTudJcLdgKIpfvbLpBSftwWLIBmSXLcLYJQCCC27qcC5dPVB/X3xgUIXfHsSaELCgHE1v2/LlgslpYLCKZFLsgFEGv3fVxgAUiSaTfW7vu4wNoPGIxOZojovH247q8hfi8Bzn9cXmS0WQ5QDzzjEItvoiahZoGZJ2cGPNYObxMSHTnUHaEEgH9QSECXsGbA8Giidrk2h9purrxvGJA+cOlxPguEJKaNWhhAG1Rjyll7BrjWmPl903BcM8pVHy+BpjsSW769d0DtGRB6x3kGODq090vgfwKgl3PeZ6cH8mbAvYqwnppCX+tl6zN/N1gOUO/cf5dNFt15RNa/9VgA1vTwxncZnThHwQTyfkWdN879AP2GZSXFcyD6GTgE/dju/GjhSsvNWh68COFtduBMuTwmwASYABNgAkyACTABJrA3BP4AQkAawmQhAUkAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKWSURBVHhe7ZrtTcMwEIYJ6gAdoSvABGWPVlAWaDcoTABMkNKP/2xAR2CEblD+9yPcSQlybCe2z4lqNxepUmni891zr8+Ozc0NX0yACTABJsAEmAATYAJMgAl0kUDiE/Rms5lmWTYDGwMfO9S20PcuSZLFaDR6pdogA1iv12/QKQZ/8QtALMbj8YTiCAnAarUaAvlvSodttQEIDwBh62r/1rUBPg+dPVHatdkGEjKn2HdWgC77VPoUh4s2TfnhrAAN6S1Fej7BY9u8z5LkKSpwAoDUoW/8/F+QfXIF9oWg6XuY+2ht2glAKNkvomtCBdYAlsslFr5S9g+HA2nqsU6PxYO+KrAGIGcf597JZLKz8LHVR3xVYAUAsw8ABmIkx+PxYmNfJuqjAisAoWZfrAXn8/lTApPaSM8IIPTsF0GeTqcXMWBULMwIjyYIRgChZ78IEOuRRgUlKDoYtQBiyb6oAqgHv8XfuQpmdSqoBRBL9kUVwPcPaSjM0zTtV0GoBBBb9osAYXZ6F1UAv/d7vV6lCioBxJZ9QQU4BGQVTKtUoAUQa/YpKlAAIKlYs09RgbIfAFtduLFgnD5M82uI93HFCEvnUmyKAkLc7WkKJih7KttSAMhr/qY6D8SOMh0aV4KBON6aG7oakIm9wZ67875ha94SDENNq42n8wpgAARVXVUT7xpgGmPy/abpmWqUyT8eAk1nJDZ7nVeAdw0IPeNcAwwZ6vwQuBoA8Bab6D6mIarUANhL38MbofLWZDIUy3153aB7Hf6JJRhXP0Ehyr/1KADwxFfaVXXtJ8jn4dBkDzvGz8YNETxhgQfvAMJXkJHkToF/VhcGjpmHo7P7EE6zQ2bKvjEBJsAEmAATYAJMgAkwgS4R+AP+Jm6rVhn9CwAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAyxSURBVHhe7d3bbxTXHcDxM3v1BRtSLsWAhJsEKyKouCFNIjVqHJ5D0kZqkVGkhEpx06dE4Q8I9B2pfWprpJY+tBat2hSR54BVRWrSQkgl0gYoGKU1JECxwZdd7+6cziE1nVlcn5nZPeOzO9+VeEB7zu/85nNmfnPZGY8QfBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQEAJOI0wvPALuaZjofyycJwhKcSg44j+RuLRFwEE9AJSOGcdKSdcR/whU3XHj/2gc0Lfa+kWsQqA2vCLlcrrjnDf8Db+NXEHpx8CCDQu4BWEo061dihOIYhcAPaNzgxWRf5t9vaNTxwREGiWgHcEPiGl+PZvR4pno8TMRGn8nSPVl2tO/kM2/ihqtEXAvIC3J+/POOJDtY1GGS30EYDa86uNvz64lPJOreSOzU8vnJq9Ublam63ciZIAbRFAIJpA79augeKq3K5cZ3ZfJpvpC/SWcsoVzrNhjwRCFYAvzvkX7tvzV7wN/+bFmVE2+mgTSGsEmiXw5a+uGfEKwYg/njodKOcKXzu+35nSjRPqFODuBb+6K/wLM9XDn3906zAbv46Y7xEwJ/DZX6dG1bboH0GdDhQWSm+EGVVbANTeXwj5ij9Ydb42ev3c9FiYAWiDAAJmBdS2qE7D/aNkHOf1L7bd5T/aAtBRKX3Lv/d3XTGpqo4uMN8jgEByAre8U3F1Pe7eiN7P88VyObDjXiobbQEQIvOCv2OtVB1PbrEYCQEEwgiUvYvvlblq8Kg8m9mp66stANKR/f4glbnaKV1QvkcAgeQFqvPu6eCockiXhbYAOMIZ9Ae5fa18XheU7xFAIHmBubptU10M1GWhLQD1AbjqryPlewRWRkCdBkQdOXIBiDoA7RFAwF4BCoC9c0NmCBgXoAAYJ2YABOwVoADYOzdkhoBxAQqAcWIGQMBeAQqAvXNDZggYF6AAGCdmAATsFaAA2Ds3ZIaAcQEKgHFiBkDAXgEKgL1zQ2YIGBegABgnZgAE7BWgANg7N2SGgHEBCoBxYgZAwF4BCoC9c0NmCBgXoAAYJ2YABOwVoADYOzdkhoBxAQqAcWIGQMBeAQqAvXNDZggYF6AAGCdmAATsFdC+GmzvkbL3pqH/ff71/s3H7V2c9svsu1//00hPsTSUz7kDrbR0lWrm/Od3esZOfLTrRCvl3eq5bn5y7V/8y3Ds1eKy2zhHABbP+P6nx3/2pe65kVbb+BWpynnzA9NvvfTUHw9aTJz61CgAlq4Cas9fzNV2WZpe6LRWdVSeU8sSugMNExWgACTKHW6w7X0Tm3o75veEa21/qzVd88ObV9/ssT/T9GXINQAL51ztMdWh/2JqtZoz+d7Fba99fHXLpIXp3pfS9r5/bnp64MKvMo68t9H/e7Zr9Dd/fop3ShqeQK4BGAY2HV7t/f0bvxpvutT5Tqts/CpflevUXGfgPXUcBZhec+LF5xQgnpuxXo9t/TRwvqz2/q245xw/v23Mlc69N9Woo4FvPvIJ1wKMrTnxAlMA4rkZ6aX2/uqimT/4tdu9R4wMZjjoZ9Nr79yc6Q4c8q/uLA2rZTQ8NOEjCFAAImCZbrrU3r+Vf0f/3eknxqo156rf7cmHrrxl2pH44QUoAOGtjLZsp72/H+of1zcc9P9f/bT57CPnWv7nTaMrQ4LBKQAJYi83VP2eUZ37t/Lef3FZT/790dPlajbw3vr+dTe4FmDJekcBsGAinh8881z9TT8Xr284ZEFqTUlh4sa6wLUAjgKawtqUIBSApjA2FmRDz/T3/RFmy8UTas/ZWFR7enMUYM9c1GdCAVjhuVF7/1xW9vnTOD2xtSWv/C9HudRRwJ6dp9vmbscVXo1iD08BiE3XnI5L7f1b6aafsArqKGCmVHjH335j7+1XuUU4rKCZdhQAM66hor6464PhNOz9FzHOXOkf9d8clM3KTd8YuDAcCotGRgQoAEZY9UHv3vLbNbuv/ty/Hff+i8vILcL69SLpFhSApMX/O96OLdcC5/7qZ792PPev513qFmGOAlZoJfSGpQCsgH07PPATl03dIsyDQnH1mt+PAtB8U23EdnngR7ug/6fBUkcBu7f/7c248egXX4ACEN8uVs92veU3CsZSDwp1Fxf28KBQFMXmtKUANMcxdJR2e+An9ILXNeRBobhyze1HAWiu57LRnnjw4kC7PO7bDDYeFGqGYmMxKACN+UXqvWPTpwf9HdSfzm6HB34iIfgac4twXLnm9aMANM9y2Ujqlt9CTgb+tv+lG+sPJzS8tcPwoNDKTg0FICH/dn/gJy7jUkcBD667fiBuPPpFE6AARPOK1TotD/zEwvE6nZvcHDgSUi8V4UGhuJrR+lEAonnFap2WB35i4XidPrj08Pn6B4X61tx+kweF4oqG78d7AcJbxWpZ/zf+YwVJaSfeJRB94nkvQHQzoz3a6Q0/RqGWCK7eJZD0mGkbj1MAwzNe/7iv4eHaKrz/zUJttWAWLQwFwKLJMJ2KbIGPaQPiBwW4BmB4jXht6N3A+9p/emr344aHbOnweDU2fVwDaMyP3gikSoBTgFRNNwuLQFCAAsAagUCKBSgAKZ58Fh0BCgDrAAIpFqAApHjyWXQEKACWrwPZjHD8/3Tp1rdP+v+6/PjeLgHuAzA8H43+rh21f317w4t3X/hG73OIurxJL5/t43EfgO0zRH4IWCTAKYBFk0EqCCQtQAFIWjziePW37+u6r/Tt/rr8+N4uAa4BGJ4PzmmjAeMVzau+NdcAGvOjNwKpEuAUIFXTzcIiEBSgALBGIJBiAQpAiiefRUeAAsA6gECKBSgAKZ58Fh0BCkDC60DS9+a32ngJT0fqh+M+AMOrwMgzJ0/y123jIzf6bEH8kVuzJ/cBWDZv3huAP7EspZZJp1zJBv6gassk3kKJcgpgeLLev/TQD2uuc9vwMG0XXpkpu7ZbMMsWiAJgeEI+vrpl8r0L215Se7OVvk+/FcZXG76yUmbKzvD0pD481wBSvwoA0E4CXANop9lkWRAwLMApgGFgwiNgswAFwObZITcEDAtQAAwDEx4BmwUoADbPDrkhYFiAAmAYmPAI2CxAAbB5dsgNAcMCFADDwIRHwGYBCoDNs0NuCBgWoAAYBiY8AjYLUABsnh1yQ8CwAAXAMDDhEbBZgAJg8+yQGwKGBSgAhoEJj4DNAhQAm2eH3BAwLEABMAxMeARsFqAA2Dw75IaAYQEKgGFgwiNgswAFwObZITcEDAtELgDZ7nyP4ZwIjwACMQSKMbZNbQGQUkz4c+ndWByIkRtdEEDAsEDHxnzdtinP6obUFgAh3XF/kFxnZpcuKN8jgEDyAsVV+SH/qNKVV3RZhCkAgSqS78oNcxqgY+V7BJIXyOUzwQKQybyty0JbAMrFrqNCyqnFQI7j9Kx9uGtEF5jvEUAgOYH1O3pHnGymb3FEKcTEQq5wXJeBtgAc3+9MuVL+2B8o35EbXvdo77AuON8jgIB5gfXetljozgd2yo5wf6m2Xd3o2gKgAiwUOn4kXHHZH8w73zigqo6bEdq3C+mS4HsEEIguUOjJ927YufpAwdsW63pfLuW8bTbEJ/TGu290ZrDq5N51hPOAP650xWRlrjI2O1c+M3OlfD7EmDRBAIGYAh3eT325dZm+7u7iM+p6nDolD4TyXgCZFdXHfj2y6myYIUIXABVs7+j8K0I4PxfeqGGC0wYBBBIU8DZ+IeT3jo10Hg07auQNWR0J1GT+9yIjvhJ2ENohgIBhAUdczrqVF8Pu+RezCXUNwJ/63QFcd7cjaurXAXn3Hx8EEEheQL3vXchbQriHStlC6MN+f6KRjwD8nff+ZL5fZMWQlJnnpSP7vWoymLwCIyKQMgHv7lwpnLOOkOOlQjHU1f6UCbG4CCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAghEFvgPjmack6dIyn0AAAAASUVORK5CYII= - Subtype: 0 -Name: SetStorageItemObjectList -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Value - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: Entity diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemString.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemString.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index bd8f731..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/SetStorageItemString.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,40 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Store a string value in the device storage, identified by a unique - key. Can be accessed by the GetStorageItemObject action. Please note that users - can clear the device storage. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Set storage item string - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALESURBVHhe7ZpfbtNAEMZnNhVCPOUIuQKcIJzAInlo+tQADa/pDdKeAHiECpG8UPWh/DlBewSO0Bs0B0h22K1kEu/aWXtt010yliJVimc832++HcfrAvDBBJgAE2ACTIAJMAEmwASYwD4SwDqiB0eTKQKdAmCvTh7/WLojFPPv3z6f++bwBqDEv1fBSnwQx/z68uK1TyVeAJLDt/0DIW58LthajJQvr6++3FbNL6oG6PM7Asc+cW3GkBAzn/yVHZDbfU/6PgWnMUPlQjBd6FFHZQd0MEuaAG59rFdHvI7V1ySCjOV9XFAJgO4+IvS3i0cpvSdwXQhI2WsrO/cfnFHhqAQglO6n+ppwQWkAg8OTsdn9tRRet54KDXKeWtcFpQGggOyUJZj/uvp056yw5RPquqAUAN1989feisSjrX2TaR0XlAIQavczs0DSIgNG4Ncy5nMCCL37qcg1dM6ygrE3HE2OXRCcAELvfipQzyMyXYBkQLFx7AQQS/cNFyw3MrH3avTudJcLdgKIpfvbLpBSftwWLIBmSXLcLYJQCCC27qcC5dPVB/X3xgUIXfHsSaELCgHE1v2/LlgslpYLCKZFLsgFEGv3fVxgAUiSaTfW7vu4wNoPGIxOZojovH247q8hfi8Bzn9cXmS0WQ5QDzzjEItvoiahZoGZJ2cGPNYObxMSHTnUHaEEgH9QSECXsGbA8Giidrk2h9purrxvGJA+cOlxPguEJKaNWhhAG1Rjyll7BrjWmPl903BcM8pVHy+BpjsSW769d0DtGRB6x3kGODq090vgfwKgl3PeZ6cH8mbAvYqwnppCX+tl6zN/N1gOUO/cf5dNFt15RNa/9VgA1vTwxncZnThHwQTyfkWdN879AP2GZSXFcyD6GTgE/dju/GjhSsvNWh68COFtduBMuTwmwASYABNgAkyACTABJrA3BP4AQkAawmQhAUkAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKWSURBVHhe7ZrtTcMwEIYJ6gAdoSvABGWPVlAWaDcoTABMkNKP/2xAR2CEblD+9yPcSQlybCe2z4lqNxepUmni891zr8+Ozc0NX0yACTABJsAEmAATYAJMgAl0kUDiE/Rms5lmWTYDGwMfO9S20PcuSZLFaDR6pdogA1iv12/QKQZ/8QtALMbj8YTiCAnAarUaAvlvSodttQEIDwBh62r/1rUBPg+dPVHatdkGEjKn2HdWgC77VPoUh4s2TfnhrAAN6S1Fej7BY9u8z5LkKSpwAoDUoW/8/F+QfXIF9oWg6XuY+2ht2glAKNkvomtCBdYAlsslFr5S9g+HA2nqsU6PxYO+KrAGIGcf597JZLKz8LHVR3xVYAUAsw8ABmIkx+PxYmNfJuqjAisAoWZfrAXn8/lTApPaSM8IIPTsF0GeTqcXMWBULMwIjyYIRgChZ78IEOuRRgUlKDoYtQBiyb6oAqgHv8XfuQpmdSqoBRBL9kUVwPcPaSjM0zTtV0GoBBBb9osAYXZ6F1UAv/d7vV6lCioBxJZ9QQU4BGQVTKtUoAUQa/YpKlAAIKlYs09RgbIfAFtduLFgnD5M82uI93HFCEvnUmyKAkLc7WkKJih7KttSAMhr/qY6D8SOMh0aV4KBON6aG7oakIm9wZ67875ha94SDENNq42n8wpgAARVXVUT7xpgGmPy/abpmWqUyT8eAk1nJDZ7nVeAdw0IPeNcAwwZ6vwQuBoA8Bab6D6mIarUANhL38MbofLWZDIUy3153aB7Hf6JJRhXP0Ehyr/1KADwxFfaVXXtJ8jn4dBkDzvGz8YNETxhgQfvAMJXkJHkToF/VhcGjpmHo7P7EE6zQ2bKvjEBJsAEmAATYAJMgAkwgS4R+AP+Jm6rVhn9CwAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: SetStorageItemString -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Value - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/LocalStorage/StorageItemExists.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/LocalStorage/StorageItemExists.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index ff3e767..0000000 --- a/resources/App/modelsource/NanoflowCommons/LocalStorage/StorageItemExists.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,32 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Check if an item exists in a device storage, identified by a unique - key. The value could be set by a Set Storage Item action. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Check storage item exists - Category: Local storage - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOXSURBVHhe7ZpfbtowHMd/drZpQqLiCBxhuwE7ARo8lD7BtlJpT/QEoz3BNmnSNNA2eFnVh+7PCdYbrEfoDYaE1CewZwcFEjuJE9sMpyR9KBKx8/t+ft/fz04IQHmUBEoC+0wAmYhvHfUHCOgpAKqbzKM/lt5ShCffv43OdefQBsDEv2WDmXgnjsnVxfiFTiRaAJqHrxoPMP6tc8GtjSHk2dXl5+u88+O8A/j5HkY9nXHbHEMxHurMn9sBsdnXpK8TcDCmzVwIogs14sjtAA9FSVOAax3rmYjnY/k1KYWI5XVckAsAzz5C0AgHjwjR7sCmEBCNXpvZueE7I8eRC4Ar2Q/02XBBZgCtw+OemP0lwVpLT44EKU81dUFmAAhDtMtSmPy6/HSrjHDLJ5i6IBMAnn1xt7egeGe1LzI1cUEmAK5mP9ILCJ1GwGD0NYv5lABcz34gcgneWVQwqrc7/a4KghKA69kPBPJ+REUXICpAkXGkAihK9gUXzDYyUf155+Q0zQWpAIqS/bALCCHvw4Ix0GGz2a0lQUgEULTsBwLJ48U79nnjAgQ1XHmU6IJEAEXL/toF0+lMcgGFQZILYgEUNfs6LpAANJuDWlGzr+MC6XlAq3M8RAgplw/V+uri9wTg/MfFOKJNcgC74em5GLyNmDDrBeI8MT1gV094bUhUzMFWhAwA/kMgDl1C6gHtoz57yrU52OPm3M8NHdIHKj3KewGXxGwjlhLANqgWaU7jHqCqMfF723BMe1RZArYzUrT59t4Bxj2gaBkvd4ICgb0vgb0HENcD/jKXSHdNtmrddN3OG0dlVHlyd3J3kzROcgD7zT3x5LwX3/X51XG161HvD/t/lhnAkvq/+M52Hbzp9bl4IDDx5yEwTIIgOYD/wrIg+ClQ+tM0iF2Nj4gPgljCG14OYkyFvtePAxwrngL/ezl/PV85InTcKwB5xXMO9waAjvh7A0BXPAfg1Eao8kFuUqpGaiLeKQAHo4Oh99Bfs5UvNQRQTMU7UwJcPKWhlxkw9Ob9efSVF8EKNsQ7AYCvzXy3Jlk9BYIt8U6UgL9PJyC/b8h2cXHlYFO8Ew5Y1/PHao+1ZPnNrpATbIt3CgAPppoCwQcV7O0Daik7PNXqEXzv3EYoEYKoyIJ45xygLAeLmXfWAUoIljLvPIB1T0Dwhd2xrErVsnhnSyBc7n5P4BBWAGJvabM2vMKexyH4IMqjJFASsE3gHyRLsv9Go7hAAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAN8SURBVHhe7ZpLbtswEIZFwcg6R0iBAN26N0gPkUUUGbZ7AecEdXuCtheoXb822fQGzQ2crdsAzQ3avWWzM47lSqQo8WWYtCUgQB58zP/NzyHFOAjqpyZQEzhlAsRE/HQ67VFK72CMC5NxdPvC3M+EkGEcxx91x9AGMJlMPsGkKP7gD4AYtlqtrk4gWgDG4/EVkP+hM+G++gCEtwDhQXX8ULUDtofJOjr99tkHEtLXGV/ZAUXZ16WvE3Dax1Ycyg4oIP2gYz0T8dh3O2fO8jouUAKA1GFu/No9kH3tCmwKoWDuq22M0kMrAXAl+6k6Gy6QBjAajbDw5bK/XC61th7p9Eg0NHWBNAA2+7j3drvdZ4kY99rE1AVSADD7AOAiqyRJkoOtfZaoiQukALia/WwtWK/X3xgwAxnrVQJwPfupyNVq9SErGB0LO0K7CkIlANeznwrEelTgghyUIhilAHzJftYFUA/+pj9vXXBX5oJSAL5kP+sC+P4LsxT6g8HgXARBCMC37KcCYXf6nHUB/P680WgIXSAE4Fv2My7AJcC6oCdyQSEAX7Ov4wIOAJLyNfs6LuDuA+CqCy8WKrePqv3Vxb/jiRGOzjltnANcvO2xBROc3WPH4gCwZ35bkzsyDrcdVp4EHQl8b2EU1QCanQ3u3JXvDfcWrcbAUNNK9Zy8A2oAGq46qi7GNaBqjbF/t03PtEbVS8B2Rnwb7+QdYFwDfMt45VHYd0Gq8Z/8Ejh5AFwNgLv0P/BGyL01qVpL1N5031aN43px3bx/ff8o6lf0OixsrDr5odvfPt22z8Kz+c2vG+EFDwcA/+PL3KoeWofW/Cg+oMEQO4dB2BdB4ADgf1jgavkNQPiuNbMDnbLi03BCGr6PFlGTDc/rd/0i1kXiwQmUhvTd7HK2cUT2OSoAquIRxNEA0BF/NAB0xb8USIee9qLNFamq8EzEOwUg/hn3kzCZbwRJPqbinVkCKJ4S+v+wQoLO9HLKfuQlh8WGeCcARL+jJknInEt6CQRb4p1YArNXs0e6pvznDeEUV7QcbIp3wgFp5uGU1iEh4T/ZlXGCbfFOAcBgyiBsQG3P9rvlUnLCk6yj7h2EhBBYRRbEO+eAyuWQNrAk3lkApcvBoninAewgEPIVFurLO4tl8c4DyEFA/YJXWtmC5207LIzRU9TxVkAdeE3AXQL/AFHf7Ih4Vgh1AAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: StorageItemExists -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Key - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64Decode.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64Decode.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index a84524d..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64Decode.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Base64Decode - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAM+SURBVHhe7VtdbtNAEN5ZR0UgHvLAAXKElBO0J0iaSAT60qKS8gg5QeEEbR+BlMJTG0qb5ATtDZoj5ABI7QMSUhXvsBtAin+Ivfas7TRryU+e+Wbm29mZXXvNmL0sA5aBZWYAwoKvtXbWHM735MO1dOTgeCKc9WHvwzgdjjntAAGNZ7t1cLBPZRKRjdxfd+vD4ddbKkxKHB4A4+4epQEAVi09XDmmxKTEChAAwKuUBqZYwOqNzfY+OS4BYGAKNF+0cRb3/ORTaJ34n22//qycQOj0Tz8eEPhNBhGcAmTQQSAOuN+UBdagCW3oLAjwFj/g/VrrdUXbU0MKxglA5r70+A6sXOLuZVFIME7AxcnnAbjY8Q4gVBwQ/Vptq2xoYGPDGidAefL9W/eAoTic9WraHh+t5N4ZMiFABX5+evRWLoqufEOz3djcJV13xB76v4KZEaDsuQ/uNhjDsScTEN81n7e3dB2nks90HTDPaT7B1bOz7ogqsLg4mWbAPKeEA7l0hsIQIJfL0/YYd+So5IpDwDQiqFAFFheHvAbENfxPrtF6tX3R637R1aOSzz0D8gxekZg7AVQjmRRn6QnIpAaojY/DxTEwrMpCV046Won1kA0myDth7yaNZ4AKXra36z8vWHMIftpcWL0E4jpsB2qcgBK4csOTU+CeNTcrqyz0Z5FxAhhAPXHqEisCMjkFvZfxGpD2HWNaDqLsm8+AtBEY1rcEGCa48PC514Anb356vkP4Gftx+Njjo668rQEROWhrQOEnqWEHc68BhuNjtgbYGjCfAVsETc/BKHzV12dvv3za51H2bQZEMXTfny99BkSuA3QzwH+mKKoP6+LrykfZD2RAyCdsXZsLJR88Jofi/UJFkNLZAAHnvaMrea5nA1GMUmJnrI5yOqtb79JW0INnkWtx3f29rrx2DdANcNHll74NLjABsl+xsFsvJ3OvAXru6kvbGmDfB9yf9wFquia55zKQRQ24kR6U9WevGQ3/XsV4F1D/DJkJJQGqwIFfyzgBLnJ1XP42gbukKsjEzYQ5vlPrGRySUsdSJoKvypYdYD8iQvXJLPWtApe2L11Relrk3/dIR9uCWQYsA7EZ+A2y7kD15YJsTQAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALySURBVHhe7VtLUuMwELVTSWabI3CEMCeAG4TVbPLBC/aTEwAnANYsMpVkMytyA3IDcgRuwGzJz7ymqClHNoiO1JLBcpXLC7dedz+1uiVZjqJwBQYCA1VmIC5yfjKZHMVxfI53RybkpGn6uF6vj5MkeTTBkWybI2A8HndqtdqdLaUgcrFcLomEf7YwbeLUVLC3nremA1HQbjQaI2uAloGKCGhb1kFwnel0eiWAawyZGwIwNM2idrvdwjzxnma1fVYO0TDs9XrXxlZbBMhFgEXsHBSG1xUlWEkdXGxxAtDrO8kPJNyNRqMDrqFS8i4ISBTjW/V6/b4sJIgT0O/3Z5vNZpglAVFw0Gw2KRJaUj37WVxxAsiQwWBwvd1ub5SE2EYkeK8MTgggxxEJv/GYK5FwiqpBM05vlzMCyMPVanVC02PF2wtUhoEvBpzOAzROHmLOsXBNhNMI0DjnpTKUiYDX8ljlCIioPLomwHoO4DqA5fcpKsQfbjtb8t6HgE/niUTvBNjqyX1xKk+AkxxACx/aFaLdISS61r69ZdBuhknYsGhvUjwCyHmUtwcYTxutPpwn3jrogIeiFag4AbTg8eh4NmhaRXuT4gTA+Y5B6Npu2lYBxXOA6R6jKQM6/eIRYOqAdPtAgDTDZcf3ngN+3T7vfIdQCft79mPHRq58yAGaEAw5oOxjVNo+7zlA2sGQA0IO+JiBkASlx6AOn+p69lblTd/r9IcI0DH03d9XPgK08wBuBKhninR1mIvPldfpL4qAOVfJV5bPEYCd28uv7BDX9hwBOMY2x2kO+o6/4IJ5lU/TOKKbebEbMPEj3Rjkru+58jr9la8CgQBuSJdGHkkKYz5/Mw30ngOY9rLFQw4I+wHfZD8Awz3e59aNGfEcgEOQTyX5OvzKhbpWES+D9M+Qrhccvp+pusQJwMmMRP1nwKHD/1Vhev9Ep0ScE0DHUvDr3CFIyLH/ERGQt3KR4wC6x5H9n2X+fc9HUASdgYHAQBS9APsMuHaJALOKAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: Base64Decode -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: base64 - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64DecodeToImage.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64DecodeToImage.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 1a3721f..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64DecodeToImage.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,38 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Base64Decode to image - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPSSURBVHhe7VtNThsxFLZnUirRLlKpB6A3IJygF6hCAgLChqIydBm4QIEThCxbgsqqDRV/PQE9QcMNygEqkUXLos349TlhpMn8uxl7jPBIsyD2+Pn7/L3n5x8IMY9hwDDwkBmgUeCry29nbIt9pARmCaFl5QQBuRiAtf31+P21bNshAjj4kuX2CgHuRwukjyRUZJNgBRkuUbdVOHjeKUrKXIWyFRAigFA6L9to1vYpEHRBuU/IBRYaDvhNnn4+iIwTsrql2n5YAbKQadquIUDTgVHWLeEY8Lz5ayxGBHv6s/10rE3R+iYGKBv7kSETAxQTrp054RggG4GJAbIZDrRvYoBiwrUzJ6wAPq/73yCiSctVMyRMgOoOyrZnCJDNsO7ta5cHqCbMuIBqxnWz9+AVIBwD0tb3afsDvFz5uUPCOYNyBXjnDsj8S2Xb75TMlyjrcdvBAVJOQGHnDjHnDMoJKPLcIeqcQTgGTBrFVa/30+ypV8CkDOb8vSEgZ0LvXXNRMeAGUZTzQhI8W0zzSb/d+urmDgW2xX8DSo/OPh1si/YrzV7IBQDIlagRGfXrDadFAXZHuQItYwTfqjUc/DvfJ0SAC9Y6mujna0a8NZTm61DSAqQp3lLyFyEC+I2MAbMqBOAib2M6tqf07J8TkOaTHkm15Te7lmXtjJEG0D7tdoYxIeuTZk/bafD8+HCXAGtj+EN3xJexvTjwPMePyvOzkKStArJ0ntfBYNnE22xIFiWM0L3z7od9/7f3SgH1pc35rCNZrTbLw5mCEASMMwUudiwKrfqq06pW18pZCdTGBRZWnDVqwzlfttZWNhP9fLiknv7dQ/Cheny6LE0/6r1a3HiRhQQtCODgcQSPhh32RrLhXEapgUv+7h7jTDxAOjNVot9rK05q4lR4DCCA870HPogIL0t6fs0lb0/f7kSNOgbJ69GnNIGUUY1gZlq8AuLAB9QQJ3nMV9qD2yeVwdTfCiGMB8DEKzxBjotXQKBHAOyKUms23X+hj/6+d9LtjEX9xaWNLWaTd5TQZ1Ft6KcAXy+BwfpZ97BCXeC+248nATBbtStB8Lz+yZfOvsvsOVzT/EgnUaM7QkPwx50jDwRPxxHEtxCIO8knXaLmZe7jP3N3LpHIgxYu4Acf7C2XNNgUU2IgUZJPG2XtE6Ek8H41xEk+jYC08sJnAU/2SR3lkpb1fwOFE5A2QrLL7xMBPF79z6tdEMx1z1FUIYXnAYXuObLwLpdyFyhqzxEIuxkQO7Q4Uk6AwJ4jz+knfjlwXC9cuqw0J2smEXVDU98wYBjQh4F/7SbJsIQ6ShgAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOJSURBVHhe7VtLctpAFEQUVLbkBuQG4BPkCOyy4RMWWRsuEOMTQNZZYH4Lr8INnBPE3CC+gb1N8Us3JbnkkdBokDQj8FBFFcX8Xvfr9+ahGQoF+7IMWAbeMwNOGPjxeFwtl8vj/X5fcxynYoCg5Xq97ne73aes1w4QQPClUunREHA/3heQUM+ahKLIMMAPcwCeZlWowqwVECAA4BtZL6owf02h70ldAyEwn8/3/pmazWZonjhptRiDdK8fUEAMGy+qiyXgotx5AhjlHPDl5783OUJc8/7bhzdzqva3OeAELyYZYnNAEvYuYaxyDsgatM0BWTMszG9zgGbCc7eccg4Q93XZvq/abnOAZo3YHKCZ8Nwtp5wDcocgoUE2BBISePbD370ClHOA7Pe97PkA2w2cOxw9Z9CuAO/cATx81vj4vYFH7I9cW3SQdgIMnjuEnjNoJ8DwuUNNVIByDkia9nXX+rL1tCsgKYFpj7cEpM3ouc0XyAGz2ew5ze1JPFuUxaSfQPS9wR2FHr+DTXeYq69KsGy9sNPhleoiWfSH4UPMO6AzXIf04JxB2msFCMClhC5Yf0l7IdX5YMPXwJblONeq88j6BwjgjYzNZlOHAUvZ4Eto13r2T8JkMemRSrlD+jd+kne73Y92u33ICXFfsvVyuw22Wq0BATMc3fftMfCs8cPq/Dgk5VYBcYxnn8VicQ2iqJYCiLoFcSP/2LNSwHQ6bcT1JPpVuFMA9MjdJbhbDPkd2+ISmJsQQMx3isXiL/5sxefIOPf9pA7r1+M1P5D5KQ4JuSCA4FnouAZ7nnwIUwMl795jrB4DiLmqIPMP1CAtnIznAO73PvAiJibAQ1xT1lAHd4WA19HniQMJXOZ1sTI1roAI8MTyqgZ6PQw8dwrWLXzj8whkRF7hEQkyrgDRINi/Aik1mSfdajWQ9SeTSQ/jvyMEPobNkTsF+I2EB7uQe3273fajynFKnh4XtzzO1el0Rhh/hT5/ZSSy3XgIeEYSPAqdQyIkCALEx98iCE/yUZeo3XL+iiEhIyEXIeAHLxpMSUPOXkkckLwMYO4LoSjwfjUck7yMAFm78RDwZB9lKCWd1f8GjBMg81DW7WdDALK6c8pbRqD2JJj2M0cZQLHdeB2AImWlanSK/ZfiXNpDwNQzR+w2z/wnmnEC4j5zZE2fxovAMc8Dq8OsdpIUFWqnsgxYBjQz8B9SkUMR7THlRAAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: Base64DecodeToImage -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: base64 - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: image - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64Encode.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64Encode.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 654f8b1..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/Base64Encode.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Base64Encode - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJzSURBVHhe7Zu9TsMwEMfPgZGhAw/QGRb6JKAyFCZAomIEngDBCwAjKhIwAUMRvAUTsMBKHwAJBkbawwYhUSc0XK524uQqdTvfx+/+vjhJCyAfISAEqkxAJRU/39qoT0SDEwU4B6Bq3gEhXH9gtH1zedRzHTsGwBQ/GfXvcyn8d7UIbxpCwzWEyCY8qfr7uRdvklJQMyp0rYAYAFBqwXXQ//pXCHoLuv3EtsDicht/h+yedxLnhKu0fMePK8BVZQX1KwAK2hhvaZFnwPTm+9CMsDN9OZwa8km1lxngrfffgWQGeAZeuHDkGVC4CpgJyRZgAgx+eeUVQJ4B9nWde903Emoutzf1s4ctfQtYJ0kKYbV70TkjrbGMc1dAs7W+qrtwQC7eFKLgdHGpvRI0ABXBDqcALoTcFZCp8zYxhhLIM4DVrYTF1LO/bT/kMsNMKIACxog0gxLKBSDDYAweAA5wLaYhghLIAMw5YNTXTsa2HaPgv1xdXR6fciCQAYy7gHH440AoBQCOEkoDICuEcp0D0vZTwjmhVApIq98cm22bagFIIFR5AEkz4FWDqqXKKaOB/a6Rei9ADZvmP6YARHigBgnZPgagj5E5Wr6FXBQl9xgA84uMj0HUAMRriqNQbb2++0+ClLZHuWDT/Ff+KiAAuBILfb0oIPQOcvMXBXAJhr5eFBB6B7n5iwK4BENfLwoIvYPc/EUBXIIe15tb9yzfkSkW7nmAa6D2M8kCbAHsuS76x79+3vlsx8odgOrDoScAqOW+a8ea8BT8zzBPj3e3M7MNpXd33fqz1sif5VPy1p3vRYB73YvjI8o6sRUCQqD8BD4B9Q7vb9XxD+oAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJpSURBVHhe7VpLUsJAECUpKLccgSPATdy54ZeFa/UE6glEty4CBBbuuInewNxAthaf2FNlWWEyZdLTCZOZNFUUFHT39Hv90sl8Wi1+MQPMQJMZ8FTgwzDsdTqdMEmSvud5XQMEbXa73V0QBHHVY2cIEODb7fa7IeBpvFsgYVA1Cb7MMIB/qgF4kVZXqLBqBWQIAPCXVQ+KiN9H2GqZZi6B1WqVpCMNh0Nln9AarYDTucfPKKBAjk6ZMAFOlVMDDLoHXL1+n/QIecy364uTmFh77gEaVaS4cA+gsOeCL7oHuAA6jYEvAdcqisXTeAWge4B8X6fe90XF1uv1Daw93MLXHqaC4DMdjUYLjI9sa1wBy+VyCkBmWPACCMxc51EUTawmAEDcUwBQSTCuAACAkr2KLAoJ6B5AqZbKF/vsL9unY+r0BOMKKJNQHSU4RYBOY7SegOPxGMgqwigBTYB4DvjvLScj25YpeRFrPB7PKSSgCSgbQBnxKCQ4QQBFCc4QoEuCU88BeZeT6jnBKQXkESDuDrWbDOUlXfX/jVKAch4h/wjTy68qd4flvUbsXACriLz4qt3hD+wgNttnCIBDCQF0y63NoDC5ZwgQJzL2+/0ASNhgAtlqe9a9/zLWA7BEo3sAdgDb7Rt/G2QCbJcwNX9WAJVB2/1ZAbZXkJo/K4DKoO3+rADbK0jNnxVAZdB2f2sUAOsTns47r0C1Ww/IS5j6v7wmWQcFxFRQRf1BQZ+yrXECDofDc1EAFDsAL065P8oxjF8CIiFYin+Aj0n6vNBvwhTMf76+78ewhf4CR+pmpQTkIMwAM+AMAz/j0TX/y1bX7AAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAtBSURBVHhe7d3LjxzFHcDxqp7X+rUsMgQMkbwRiQ9JFG9sJF+Q2PjMK5Eiy1YkIBKj5AQSfwAxdyQ4Ba2lxDkkloUEGOcM9oGDJRuWSEEKeXityGvysLyG9e7OzkxXugwmPWOzVTUz1VXb813JF093/X79+W39ZqpmZlsIfhBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQAABBBBAAAEEEEAAAQQQQEALyGEYnvytmppYbz0tpJxVQsxIKaaHGY9zEUDALKCEnJdKLaRSvJ100rMnf7llwXzWnY8YqAHoid9ot5+XIn0hm/xTgwbnPAQQGF4gawjHZad7dJBG4NwAjswtz3RE7S2e7YcvHCMgMCqB7BX4glLix280G/MuYyYuB//0WOfprqx9yOR3UeNYBPwLZM/k04kUH+o56hLN+hWAfubXk79/cKXU59219MTq9fUzN/7bvtK90f7cJQGORQABN4HJ3Vv3NLZX91e3VI4klWRXz9lKLaVC/sj2lYBVA/hizb9+2zN/O5v4V/+2PMekdysgRyMwKoH7fjDVzBpBMz+eXg60qvUfnnpWLpniWC0Bbm749e3wry93Xvn3R9deYfKbiHkcAX8C//rT0pyei/kIejlQX197wSaqsQHoZ38h1DP5wTqr3bn//Pn6CZsAHIMAAn4F9FzUy/B8lETK57+Yuxv/GBvARHvtqfyzf5qKRd11TAPzOAIIFCdwLVuK6/24ryJmb883Wq2eJ+47ZWNsAEIkT+ZP7K51zhZ3WURCAAEbgVa2+d5e6fS+Kq8ke03nGhuAkmo6P0h7pXvGNCiPI4BA8QKd1fRCb1Q1a8rC2ACkkDP5QT77tPWJaVAeRwCB4gVW+uam3gw0ZWFsAP0DsOtvIuVxBMII6GWAa2TnBuAagOMRQCBeARpAvLUhMwS8C9AAvBMTAIF4BWgA8daGzBDwLkAD8E5MAATiFaABxFsbMkPAuwANwDsxARCIV8D4deBDx1rZtwv//3P53NWH472cODP77q6FBw48dOmlWiXdk0i1I84svz6rVqdy4dzfdx/9+Mr04mbLfdzyffDAzvP5az75XGPDOc4rAM+/IXryP7Ln4u8b1e7+zTj5NY/OXV+DvhbPXAxfsAANwDO4fubfrBM/T6OvQV+LZy6GL1iABuAZXD97eg5R2PB6CVNYMAIVIsAegGfmX8y+27Mme/3MwU21h7LZ8/dc3uiGZw8gupKQEALxCrAEiLc2ZIaAdwEagHdiAiAQrwANIN7akBkC3gVoAN6JCYBAvAI0gHhrQ2YIeBegAXgnJgAC8QrwOQDPtTG9j97/vq1rOv3fzRj1eKb8XfPleL8CfA7Ary+jI1AqAZYApSonF4OAmwANwM2LoxEolQB7AJ7LyRraMzDD9wiwB8AvBAIIWAuwBLCm4kAEyidAAyhfTbkiBKwFaADWVByIQPkEaADlqylXhIC1AA3AmooDESifAA2gfDXlihCwFuBzANZUgx1o+hyA6bP7vj/rr6/K130LLl+76+jpj/afHkyOswYR4HMAg6iN8Tk+71vw4N3XX3p874XHx5g3+ktnCRB9ifwmuG/3P5s+71tAE/Bbv2FHpwEMK7jJz98+0X7M9yXQBHwLDz4+ewCD21mdadoDsBrE40Gjzq9/vHzq7Al4LOSXQ7MH4N+YCAMK8EpgQDiPp7EE8IjL0LcL0ATi+q2gAcRVj9Jls7g09av+i6IJxFNmGkA8tShlJu/M7/sjTSDe0tIA4q1NaTKjCcRbShpAvLUpVWY0gTjLSQOIsy6lzIomEF9Z+RyA55qY3mc3fRfAlJ7rdwX6jzflZ4rf/7jNeE/MfPDYA1NLt20O8jkBV+07vMtyYOf5/P+efK6x4RznFcDw5ozgKMArAUcwj4fTADziMvTXC9AE4vjtoAHEUYexzIImEL7s7AF4roHNmthzChsOP+r8NvougOt1sifgKiYE3wVwN+OMSAX0JwYjTa00abEEKE0puRAE3AVoAO5mnLGBgBryB9xiBdgD8Ow96jX2qNONLb/Y8hm1t+/x2APwLcz4CJRIgCVAiYrJpSDgKkADcBUb8vhKImTIf0Omz+klE2APwHNBm4++957Pv7rrmv7rZw4+nD8ntjV3bPm4+oY+nj2A0BXoi9/uJH+JLCXSQeArAZYAnn8Zzv3joZe7qfzMcxiGR2AgARrAQGz2J3185ZuL7//1Oz9rtSvnh3yLfCSn22fOkeMgwB7AOFR5g2uMbc0dWz6b7deDPYDNVjHyRSCgAEuAgPiERiC0AA0gdAWIj0BAARpAQHxCIxBagAYQugLERyCgAA0gID6hEQgtQAMIXQHiIxBQgAYQEJ/QCIQWoAGErgDxEQgoQAMIiE9oBEIL0ABCV4D4CAQUoAEExCc0AqEFaAChK0B8BAIK0AAC4hMagdACNIDQFSA+AgEFaAAB8QmNQGgBGkDoChAfgYACNICA+IRGILQADSB0BYiPQEABGkBAfEIjEFqABhC6AsRHIKAADSAgPqERCC1AAwhdgcjih7xvoY4dGUfp0zGCHzrWUnmFy+eu9txbrvRCJb/A2O5d2M/dfy/Dkpdj6MvjvgBDE47XADHfu/BGq3F6vKpR/NWyBCjePKqIsd67UN9P8cLC7mNRYZUwGRpACYvqckmx3btQT3x9H0V9P0Wdm8u1cKy7AHsA7macgUC0AuwBRFsaEkMgPgGWAPHVhIwQKEyABlAYNYEQiE+ABhBfTcgIgcIEaACFURMIgfgEaADx1YSMEChMgAZQGDWBEIhPwLkBVLbVdsR3GWSEAAKNAeamsQEoJRbytJP3N/ZAjQAC8QlM3F/rm5tq3pSlsQEIlZ7ND1Ldkuw3DcrjCCBQvEBje202H1Wl6pIpC5sG0NNFalurh1kGmFh5HIHiBaq1pLcBJMlbpiyMDaDV2HpcKLV0ayAp5Y6d397aNA3M4wggUJzAvd+fbMpKsutWxOyPeCysV+unTBkYG8CpZ+VSqtRr+YFqE9XD93xv8rBpcB5HAAH/Avdmc7G+rdbzpCxF+js9d03RjQ1AD7Ben3hVpOJifrBsvfGi7jopf8bJZMzjCHgRqO+oTX5j710v1rO52Bfg4lo1m7MWP8avA98a48jc8kxHVt+VQt6dH1elYrG90j5xY6X1wfKl1icWMTkEAQQGFJjI3uqr3pPs2rat8ajej9NL8p6hlFIV0dn3h+b2eZsQ1g1AD3ZobvUZIeRvRBbVZnCOQQCBAgWyyS+E+vnJ5pbjtlGdJ7J+JdBVtTdFIr5lG4TjEEDAs4AUFytp+ye2z/y3srHaA8infjNAmh6UoqvfHVA3//GDAALFC2RzL5uA14RIj65V6tYv+/OJOr8CyJ986Ner06IiZpVKnlBSTWfdZKZ4BSIiMGYC2adzlZDzUqiza/WG1W7/mAlxuQgggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIOAv8D+S2NFuS5jwkAAAAAElFTkSuQmCC - Subtype: 0 -Name: Base64Encode -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: string - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/FindObjectWithGUID.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/FindObjectWithGUID.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 7f015d3..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/FindObjectWithGUID.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,43 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$ParameterizedEntityType - TypeParameterPointer: - Data: rXEe6Dn2hUqAfFR5/+UqoA== - Subtype: 0 -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Find object with GUID - Category: Other activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: FindObjectWithGUID -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: list - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: objectGUID - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: Entity diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/GenerateUniqueID.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/GenerateUniqueID.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index cff7d38..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/GenerateUniqueID.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Generates a unique ID based on the current session. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Generate unique ID - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAANQSURBVHhe7ZpdbhoxEIDHJqqqPqU3SG5Ae4EmJ0AKqkj6kqAQ9bHNCZrcoH1skzbwhNIIFE4QbtDcoNwgvFWqdj21Q1p2vQv+A7qQQVpe1jOe+WZsD2MA6EMEiAARIAJEgAg8VgJMd7y6d4QWMJqR4Ke9y88Dk3ynfZaaQ9evv7eYOzOkUnu7UeLiggGWAdj6NB36fNxnQilzsMbjm0plf+pknrqdxJTzyhZJecvkfJ5iXwBSF9vgz568d7J2DoNLPD5RtviqDgAAwAH3fSeelZyM/KsQXZk9wKTMtIZD35vmd91zTPqCMsCkfBneEwCXKFV3j/77mnex12bsxD3Ash4A0zlvMsJV3jTeta4IWgIosG5ysOjvgwAwxmyqxkIzCAIADJqF9s7COKc6oFo7PAHOPyT1uq5JU51gYXNqSKg+pwzoXH6VZedqfZwArJbrI28ePQDffsBDMuCg0z7fTGaGaU2a3rtmWXWv8dPl1+Cs+gEjO5H1XQ2e9XghsBWiM2AJ4CBCfhoy+SxkxdPoo4zEwFeXBwAcImI/EqXtvJaYryG+cr1Wa6hskVVpUCb4zk9yRIAIEAEiQASWmECmFB5fM8EWItyWYqxfXZ3f5vn4+k2jHAt2wRiUZWekHwteL0Jt4BKPDICd3cMfjPHyPyUIw+jX781erzXUFet1uILQbZ9tuxiQ1Zm+mwztN+j6jb8FUs4raQbreVdgO7XGgf4jZHQ/t1wfq1KYI7zTL0IZh1RnaLncHltrBUDPgrzorzYA6V0yC4ocfbXGk48pMHYZkNgLVin6yi17AA9ZUOTom6Kd994GwPj4kydCeuf3b0T4GDsPGSMAIcSnyRMzYxNC9QCnPfNwykWnGcB9ywkyRZBqQ8k/SjVdJiviWCMA1XLKzwLWWray13cPgFHjMZkFqxF961NAZQFCLK/C1aYnm6IxP7aNvn4uu57T8142xiXw14Bu+9u1ugSRz/Pu9y/X8zZsUfqtASzKoEXPQwAWTdxivtSRq9cQFvJOQwqXAaoLZe2BwOC9qHAAYuTqj1c5hVcaC4K4i6B0bA1rwsDCAVDHq6wwXwBmoqv+kCUTRNzJ75tYrL20PIrv5RJPKDOSJwJEgAgQASJABFaEwB+i3l0dWb4VSgAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMVSURBVHhe7ZnrcRoxEMchwHfcgd0BSQOx+wDiqyBxBbE7SCo4DBTgDkwHdgd2B+E7r/zXc+c562RWK90dMl5mboCR9vVbPfakVks/SkAJKAEloASUwGcl0DYDn8/nOw7GbrebrNfrmyRJnjn54XD4xoap32znbNva0zQ97fV6KfwatNvt/j4dpr0vPgZh5LLb7d7D8F5jPrqlMhQ8+QK5cy54m24vAKQIxsjwL6nDVffvdDrX5IuvXm8AmcEfvoarkkPw30N0ldYAThk3h0PbOfvSNYfTFzoCOP3RtysASYpms9nB57zEX5e+764BLvUAGeD2ec4JqTzXX1pXBE2B7XabcAHG3h4EAFsQWzUeO4BJ7AFy/onqACyCVHX9LiqVzkmuTuAcPmgdMBqNrqUOxt4/aA2IPTgX/z49AK/zgJws3r+fMS3OiqS5Oc61u2TNsPeE/6eucpWcBxSMLVwN19UPSbgN0e09BSj7dCoUYrwKWfjwh3zx1SUGAGNLGFvA8IXtSMzXEV85+LAkX1CVBo0EX/sqpwSUgBJQAkrgAxMolcL5NRNiopuWR+z7CcrHR1uMKGsHaE/Rb0C1wWq1wrZcvi6LmU8JAN75H7KAcr+XCOyMCg4zEPR9Mm5lFoB1ERIw964gbTd9Yd8FjOBJvm+7AptOp5eWK6nzkOAPIetUCiPQn+ZFqHkydAjnq7DpBMAcBe9kvwp/GtfhCoBug19HQczZpzlefDiizgDyUXBM2Sc4EgAvoyDm7HPZtrWzALL3/1y2X1z5Qw4ifJytQ4YFAKN/9xhmDyFo39731BGURCcLIDtyKhVB2ZHYRGIsxr4sgKwCtI2C249W9nqtASRkjoJjyb7zLkCjgF6KKHBaFPFcuWbf3Jel+3Td04adArkD4/H4ji5B8JzQ77oda0q/M4CmHGrajgJomjhnzyi8WmYNwclL26MbAXQKJQgieC2KDgAdq5mjwAYEV2H/0PdKAMvaNToAtL2i7vgKCG+yi/8vHwocX/ebzeaby1acy+XfocBUXgkoASWgBJSAEjgeAv8BwB6LoGXr2ZYAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: GenerateUniqueID -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/GetGuid.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/GetGuid.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 8e375c0..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/GetGuid.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,33 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Get the Mendix Object GUID. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get guid - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQ7SURBVHhe7ZpNUtswFMef5LBhmCGT0j29AbkBN0gICz42pIW0mxZDD9CkJ4B01wHasKFlOrRwAtoLFG7QHqAD6UxoN9jqU0omjj8iy1YSOVgzmcnYlp7+P7/3JEsCSEtKICVwnwkQP/GFpWezBrXfE2BzACSbeEAMTm8Z3T47fvvTrcUDgIvPUOtiLIQ71TJoIoS8GwJ1E8kQa2fsxHORBLLcq916PQCAkGLiXT5AAGGAId1bPCGwuFJhzkdOPuz55omkQBLp8XpAUpQp6mcKQBHIxDajNAeUVp9WCbO3uqMIazJCGp+P9rbDEnLHbNh6nefcOWtoOaC0UtkhjNV6h1CSxcy7tbBSwet6FmU5AF2pHCSRMjD1lA+gDAAKzAaKxEmIrgCU5QBR7I5qPjG0HKDrGxb1S2UIiGxpeV8lgGagQvwS01I9dkpZDlhYWq9RSqu+Qhmrn3zcx/mBuIhyiaiFkc0Dvhwf1IDZdQDmeNv437ZfhxUvEjeI+8o8QFXnEusBqgAMux3tPEA1gHQeICAaywMKS+vzGWKsAbGL4nVEnhzJ6a1tH54dH3xV/aaD2huYB/Cvvwyl50BYWSyed6+9vF7mdUqrFVx41aNEmgiVljeq6DqhxnU/mfwTWRcI0gAKqxtzhJBa3PfHISxiCMVtJ259aQAGdjyu0U59FjRzVGUgRDvSAAiQQoh2Qz3it04fqqLCh6QBoG2ezNSUCAslM2aLOX9xOxIFQFybWtVPAWj1OkbQmVgzwRH0F3j8O+3+qk/13bsc2ExwFOIHYXPsPUAELU2CIkLjfv/ee0CsHFAomFlj8s8aekkRT5TN4icv/njBXWEglzjVbeDBpG9+p7OiepbsKCCyE9kDcD3AzEze/ECCu/ib74rnJnFXmF8j0MATZ+eLyxUOScsSCcDdesBuyIWQWQ6Cnx0QEZg2r+dEz8jen3nZyverIw2AnyOMsh7Azw70+/6f2WxVJ2DiIrfZDiklJff8bxks+P7gxU0tqEFpAAa1XI393/y4tekjvivDf5SwPL+GRps9hgn1FcfFo5e026XEbqiAwMVTw2qfCySUVYMgSAPwrAcwsnWCu0LORPfpaP+SX0MICy7yRfebaLv9nfjOvbgQnOI7bRJqv3potjwh5jcKXGOlbFgfFO37B+30OOvlzN9lCobnFKfNaPnqzeShsy+iUcBPPI5KzAby5Ko+1XDr8ngAY3AZVryq567q0w0brMeezkmGg6z4dsi5jVqM8o70xq4qpX3aiQshinhfADyWMaHl0WtOh6C7x0RUCFHFtxPksEWGsdcvJ/AE6WzDtozHnWzfvR4c8277WgLgnQyCIAYYXry2HtARKQ9BTrz2AOQ8QV58IgB0IdB3mLICQjaa+MQA6A8huvhEAfCHEE984gD0QgAImt6KR4qEP8FHh5zZKidcRtr9lIAOBP4Bhx3h62wogZkAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAP8SURBVHhe7ZpdbtpAEMdtPlL1jSPQG8ANuEGpKhqpAoIrpa8hFyjuCZK+QlSIgIeoL9yA9gINN2hvkDxUqihgd4bYyNjrXa93MbZjS1assN6Z/88zs2vvKkp2ZAQyAs+ZgEoSPxwOy8VicWiaZkVV1VIKAM1Wq9Wlpmm/3Vo8AFB8oVC4T4lwp95HgFB1Q8i5iYD4qxSKR5kljGq3Xg8AEF9PQcj7SagwU2AymZjORs1mk1gnkgKJpccTAUkRJsvPDIAskkntx5PfrJyhCYV7ezB36NqjCFw/wvUI6shlUEBu+0Hvs9u5axZLj7QUAENX4ITuHEKt6+54PNZ5hUTVXhoAeNodP6cBxEVUgnjtSAPAmDzFdjotrQawcvdY84nIagBv6MWlvbQUiIsgXj+kAcAhj2Kc9huvz1LbS6sBONRBIeyRvDMM40u73e4G8ZxVS1h9HG0e0Gq1dBTqjAS8hvNzUPEscYf4XVoEyHIusREgC0DU/cQuAmQDyOYBDKJCEQCVvwb9n8FZZ31HtIrjDNreQsH8LvtJ+/V3sAjAtz8QPYezwxKPzmEbq+3cenOMigHVTqiJEL73Q6+BxnUf6924QOAGAI5XQJQu4fHhdwJMoaMe3ABgsiPy5PfE+s0coyTCDQCcfi3RQYymox5hAJQkeszd1+lgaTpPUV+4AYgajNv9GYC4PZGo/RGaCUbtLNrD/HfavTt/QV27PNhM8BjiD2Ez9RHAgpYVQRahtP/+7CNAqAbAhqrSycnJGbzr1yFSytapWKvCC/g7Wq/XP0i7s8JGFu8owLITOgKm0+kFbKj6BSKvwUjNFo8Gre8DNVwahzZzeOvDjyaxPEIBsPYBXAf8EFJGENY3BCqE9/0/FdmU3t4sq7Q+uQHgPkLoUA/hqE57/3/X/9fbqMX7xmAtLVoaN+tOwVR+NgYrX3+5AeTz+b3O7MUP2IT4CldlrJWZKi6IEJbLiOJQvKqa235zymYkAwKKz5mb7b7AnGL0/CBwAyB8D+jiqpCz0AGEBf4PbL9xRgppD2Kjv4TtuE/i7UMUglP8rk9z8wltuSPXMwpAmD4EyW27I9a6v99Kj/O+0/7fjqLmPLs4DSXf+XZeuHU6zRoFSOJxWFIU88Pdx5cjNwDSTtFFiPwWumXrmGloXuf40oFX/FN6uA7IZY2x1C0k1u9mUQhhxBMBYC7D5AWL2OwgSimdhoUQVjy6Est9wLSagAXSydBQ85pd7Xf/p+Q8swhG/dT97PlBYPrHIT62EWCL5IbAKT72ANDBwBBCiE8EgB0ERf2Kb1nEFAgpPjEAqBAExCcKABGCoPjEAdiDsM0F8vSWOVIkvQEWxm1xzI6MQEZAlMB/WwwSdztLXVEAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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jS2SdSopK/DOwkFB8DoCCKgL5FqzbYtu/taWnDsXfbWPjGXcORviL/TkfahnZG3JzrxhW/Zcb7vyAMniaHHnxdHCeyNHC30h+qQIAgjUKNDkftWXWZBa3NycXy/7cbIkr2rKfTBE2ird+lJXS2+YLkInAGlsU8+lRy3L/p3/GXFhOqIMAghoFrj8JGfn8Ze7Zr0QtielBCCNyplA2cm+YqWsa8J2QjkEENAsYFtH0pXig2E/+SeiCbUH4A39cgeVyj22VZZvBxz/o6M1HybNI4DAhIA8B85yzllWpXssnQt92u8FVD4D8Fbe9OylFVba2uA4qfsd21nhZpO1jA4CCGgWcK/OdSy717ac/WO5fKjdfs0R0TwCCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAokX+D8x2YwRSx+zVAAAAABJRU5ErkJggg== - Subtype: 0 -Name: GetGuid -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: EntityObject - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: TypeParameter diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/GetObjectByGuid.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/GetObjectByGuid.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 3ba0a7a..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/GetObjectByGuid.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,46 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Get a Mendix object by its GUID. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$ParameterizedEntityType - TypeParameterPointer: - Data: bVzH4/j+lkqxVZB9+xlrLw== - Subtype: 0 -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get object by guid - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQ7SURBVHhe7ZpNUtswFMef5LBhmCGT0j29AbkBN0gICz42pIW0mxZDD9CkJ4B01wHasKFlOrRwAtoLFG7QHqAD6UxoN9jqU0omjj8iy1YSOVgzmcnYlp7+P7/3JEsCSEtKICVwnwkQP/GFpWezBrXfE2BzACSbeEAMTm8Z3T47fvvTrcUDgIvPUOtiLIQ71TJoIoS8GwJ1E8kQa2fsxHORBLLcq916PQCAkGLiXT5AAGGAId1bPCGwuFJhzkdOPuz55omkQBLp8XpAUpQp6mcKQBHIxDajNAeUVp9WCbO3uqMIazJCGp+P9rbDEnLHbNh6nefcOWtoOaC0UtkhjNV6h1CSxcy7tbBSwet6FmU5AF2pHCSRMjD1lA+gDAAKzAaKxEmIrgCU5QBR7I5qPjG0HKDrGxb1S2UIiGxpeV8lgGagQvwS01I9dkpZDlhYWq9RSqu+Qhmrn3zcx/mBuIhyiaiFkc0Dvhwf1IDZdQDmeNv437ZfhxUvEjeI+8o8QFXnEusBqgAMux3tPEA1gHQeICAaywMKS+vzGWKsAbGL4nVEnhzJ6a1tH54dH3xV/aaD2huYB/Cvvwyl50BYWSyed6+9vF7mdUqrFVx41aNEmgiVljeq6DqhxnU/mfwTWRcI0gAKqxtzhJBa3PfHISxiCMVtJ259aQAGdjyu0U59FjRzVGUgRDvSAAiQQoh2Qz3it04fqqLCh6QBoG2ezNSUCAslM2aLOX9xOxIFQFybWtVPAWj1OkbQmVgzwRH0F3j8O+3+qk/13bsc2ExwFOIHYXPsPUAELU2CIkLjfv/ee0CsHFAomFlj8s8aekkRT5TN4icv/njBXWEglzjVbeDBpG9+p7OiepbsKCCyE9kDcD3AzEze/ECCu/ib74rnJnFXmF8j0MATZ+eLyxUOScsSCcDdesBuyIWQWQ6Cnx0QEZg2r+dEz8jen3nZyverIw2AnyOMsh7Azw70+/6f2WxVJ2DiIrfZDiklJff8bxks+P7gxU0tqEFpAAa1XI393/y4tekjvivDf5SwPL+GRps9hgn1FcfFo5e026XEbqiAwMVTw2qfCySUVYMgSAPwrAcwsnWCu0LORPfpaP+SX0MICy7yRfebaLv9nfjOvbgQnOI7bRJqv3potjwh5jcKXGOlbFgfFO37B+30OOvlzN9lCobnFKfNaPnqzeShsy+iUcBPPI5KzAby5Ko+1XDr8ngAY3AZVryq567q0w0brMeezkmGg6z4dsi5jVqM8o70xq4qpX3aiQshinhfADyWMaHl0WtOh6C7x0RUCFHFtxPksEWGsdcvJ/AE6WzDtozHnWzfvR4c8277WgLgnQyCIAYYXry2HtARKQ9BTrz2AOQ8QV58IgB0IdB3mLICQjaa+MQA6A8huvhEAfCHEE984gD0QgAImt6KR4qEP8FHh5zZKidcRtr9lIAOBP4Bhx3h62wogZkAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAP8SURBVHhe7ZpdbtpAEMdtPlL1jSPQG8ANuEGpKhqpAoIrpa8hFyjuCZK+QlSIgIeoL9yA9gINN2hvkDxUqihgd4bYyNjrXa93MbZjS1assN6Z/88zs2vvKkp2ZAQyAs+ZgEoSPxwOy8VicWiaZkVV1VIKAM1Wq9Wlpmm/3Vo8AFB8oVC4T4lwp95HgFB1Q8i5iYD4qxSKR5kljGq3Xg8AEF9PQcj7SagwU2AymZjORs1mk1gnkgKJpccTAUkRJsvPDIAskkntx5PfrJyhCYV7ezB36NqjCFw/wvUI6shlUEBu+0Hvs9u5axZLj7QUAENX4ITuHEKt6+54PNZ5hUTVXhoAeNodP6cBxEVUgnjtSAPAmDzFdjotrQawcvdY84nIagBv6MWlvbQUiIsgXj+kAcAhj2Kc9huvz1LbS6sBONRBIeyRvDMM40u73e4G8ZxVS1h9HG0e0Gq1dBTqjAS8hvNzUPEscYf4XVoEyHIusREgC0DU/cQuAmQDyOYBDKJCEQCVvwb9n8FZZ31HtIrjDNreQsH8LvtJ+/V3sAjAtz8QPYezwxKPzmEbq+3cenOMigHVTqiJEL73Q6+BxnUf6924QOAGAI5XQJQu4fHhdwJMoaMe3ABgsiPy5PfE+s0coyTCDQCcfi3RQYymox5hAJQkeszd1+lgaTpPUV+4AYgajNv9GYC4PZGo/RGaCUbtLNrD/HfavTt/QV27PNhM8BjiD2Ez9RHAgpYVQRahtP/+7CNAqAbAhqrSycnJGbzr1yFSytapWKvCC/g7Wq/XP0i7s8JGFu8owLITOgKm0+kFbKj6BSKvwUjNFo8Gre8DNVwahzZzeOvDjyaxPEIBsPYBXAf8EFJGENY3BCqE9/0/FdmU3t4sq7Q+uQHgPkLoUA/hqE57/3/X/9fbqMX7xmAtLVoaN+tOwVR+NgYrX3+5AeTz+b3O7MUP2IT4CldlrJWZKi6IEJbLiOJQvKqa235zymYkAwKKz5mb7b7AnGL0/CBwAyB8D+jiqpCz0AGEBf4PbL9xRgppD2Kjv4TtuE/i7UMUglP8rk9z8wltuSPXMwpAmD4EyW27I9a6v99Kj/O+0/7fjqLmPLs4DSXf+XZeuHU6zRoFSOJxWFIU88Pdx5cjNwDSTtFFiPwWumXrmGloXuf40oFX/FN6uA7IZY2x1C0k1u9mUQhhxBMBYC7D5AWL2OwgSimdhoUQVjy6Est9wLSagAXSydBQ85pd7Xf/p+Q8swhG/dT97PlBYPrHIT62EWCL5IbAKT72ANDBwBBCiE8EgB0ERf2Kb1nEFAgpPjEAqBAExCcKABGCoPjEAdiDsM0F8vSWOVIkvQEWxm1xzI6MQEZAlMB/WwwSdztLXVEAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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jS2SdSopK/DOwkFB8DoCCKgL5FqzbYtu/taWnDsXfbWPjGXcORviL/TkfahnZG3JzrxhW/Zcb7vyAMniaHHnxdHCeyNHC30h+qQIAgjUKNDkftWXWZBa3NycXy/7cbIkr2rKfTBE2ird+lJXS2+YLkInAGlsU8+lRy3L/p3/GXFhOqIMAghoFrj8JGfn8Ze7Zr0QtielBCCNyplA2cm+YqWsa8J2QjkEENAsYFtH0pXig2E/+SeiCbUH4A39cgeVyj22VZZvBxz/o6M1HybNI4DAhIA8B85yzllWpXssnQt92u8FVD4D8Fbe9OylFVba2uA4qfsd21nhZpO1jA4CCGgWcK/OdSy717ac/WO5fKjdfs0R0TwCCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAokX+D8x2YwRSx+zVAAAAABJRU5ErkJggg== - Subtype: 0 -Name: GetObjectByGuid -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: Entity - ParameterType: - $Type: CodeActions$EntityTypeParameterType - TypeParameterPointer: - Data: bVzH4/j+lkqxVZB9+xlrLw== - Subtype: 0 -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This field is required. - IsRequired: true - Name: ObjectGuid - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: -- $Type: CodeActions$TypeParameter - Name: TypeParameter diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/GetPlatform.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/GetPlatform.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 27479ce..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/GetPlatform.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,26 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Get the client platform (NanoflowCommons.Platform) where the action - is running. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$EnumerationType - Enumeration: NanoflowCommons.Platform -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Get platform - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALDSURBVHhe7ZvBbtNAEIZn3eQW1IDKnUdoeBEqcah6Qj1UvbXqE1CeAPmIONAb4lCpPAGPkDwCd0TTShGXxLvspBi5ZrE98c50BRMpl3p2Zv5v/7U3dg2gHyWgBP5nAmYT8S/2j59tZfaDAbcLYMab5Ig6xsHVymVnnz+9+0rNSwaA4gdZMU1CeFWtgxsPYUKFkFGJDUzxNjnxKMLAGF1J1UMGAMbsUYtIxRsHfknSPuQl8PLgyFVLXH5835ijHk9rD4Cavy2+Xp/uAKqCxOMVQOITxN4e+zmAWwH1nKTngBoBPQdwWzT1/OqA1GeIuz91ADfh1POrA1KfIe7+1AHchFPPrw5IfYa4+1MHcBNOPb+YA56eLjrfsNw+nXeO7QtYBMCTkx+v/J3U6c7J4nVbwxgzhOEUx7TFxjjODgCFZMZerJs1cN4EYX3Mx2AojpGAwArgnvhyurzA0HJY2/6X+DJUAgIbgKB4r8wCHH7LR7O6fW/zxzMLxWH979wQWAA0ib/OR3fLIfC5zrcvpCFEB7Cp+JKHNISoAPqKfwgIUQGAWYafM7js3vPETpcvNwyPMZb8LKOpXlQAsewby0ldQEcFgAX7QpAUv95vdKFEjdkUgrR4NgBtTghvhBa7v3eMFeK4b2i6dFIn5499Rt8ETeNDTnDg3oQ3QqMZHqvm4xbP6oDQJQ0Ffs8fnf8NGh4rIUiIFwFQLoclLCdN4ksoGLMEmHDavjoBLCfB0AzjXr/rcrsN/FboOpYaJwaA2phUvAKQIp1qHXVAqjMj1Zc6QIp0qnXUAanOjFRf6gAp0hHq4K2w0LdXavL9Nf+/uXNfcdyrKuNg9vcFnIPOP2oYdYZTW3dFrUk+BxQuw6c3N9RC3PEO7HwFW2fUOmQA+FbWymYTcHTaxObwtnjrF4X7Xr4UdvCc+sYYsR8NVwJK4B8k8BPznTHP3baYbwAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAKkSURBVHhe7ZtBTsJAFIYZpDEkLjiCRwBP4gYXhsR0IXtPIJzAPS4wgZgQN9zAI+ARvAEs3Ghp67xiTW2mZV47bxz0NXHTefPm/d/8nQ7gNBp8MQEm8J8JiCrip9Ppqed50ziOu0KITpUchvssgyC48X3/FZsXDQDEt1qtlSPCs3o3EkIPC6GJJSbF3zkoHmR0wJVYPWgAUvw5dhCL8V3sWOhHYD6fx9lBBoNBaY58PLZAbP598fnx0Q7ACnA9ngG4PkPU9ZGvAdQCsGsSrwE5ArwGUFvU9fzsANdniLo+dgA1YdfzswNcnyHq+tgB1IRdz88OcH2GqOtjB1ATdj2/NQf0J+/aX1heTt60Y+sCtgKgf7+9aorG6mLycbuvYIgJhbeCPvtiTbSTA0jEN8IHKFaIeFQGAdogBmKhjw0IpACy4tPZAoGqxwHupeLTWBsQyACoxCfC4sh/Gh6/5O2b3JNt+fvUEEgAlIlfDNvJ46C6kjbLEIwDqCo+BWIbglEAdcX/BgSjAJpxoPydIRLej98TdV5fRX2KxtDJqYoxCsCUfU05SQeKUQAwYF0INsXv9hsEV1UItsWTAdjrBMXnAtj/pzvGH3MiX4tlr86680figPLVPBqrNkKPwxO5OYrGNsWTOkANIRovrtujwo1Q0vYFgXjm0xpIHZCFcBQHvTLx37ESQhJbsmOsa/tsfysAYMCdxfUuTKxexuIoawDqFkrVnwFQkT2UvOyAQ5kpqjrZAVRkDyUvO+BQZoqqTnYAFVnTeeXxHKH6qzsO+n+FZ7PZ2tETIwkL8vMCUrz2h5q6s1Oh/xLbB70GyINJvrTiBjsQdXwURWs4OYYdBw0ATmVtt9uehICmjSlO5te6QLgMfA7D8Ax7YgxTD8cyASbwNwl8AjvTcekTre5QAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: GetPlatform -Parameters: null -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/Platform.Enumerations$Enumeration.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/Platform.Enumerations$Enumeration.yaml deleted file mode 100644 index a58d8d8..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/Platform.Enumerations$Enumeration.yaml +++ /dev/null @@ -1,34 +0,0 @@ -$Type: Enumerations$Enumeration -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: Platform -RemoteSource: null -Values: -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Web - Name: Web - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Native mobile - Name: Native_mobile - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Hybrid mobile - Name: Hybrid_mobile - RemoteValue: null diff --git a/resources/App/modelsource/NanoflowCommons/OtherActivities/Wait.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/NanoflowCommons/OtherActivities/Wait.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 7a199fd..0000000 --- a/resources/App/modelsource/NanoflowCommons/OtherActivities/Wait.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Wait for number of milliseconds before continuing nanoflow execution. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Wait - Category: Other activities - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAXJSURBVHhe7VtNbttGFJ4ZUukPkliJ0716gionsH0Cu8kicDeW0RrZWeoJIp/Alrsq0sLxKgnQtNYJrJwg7gnMA9SxjBhN4ZB8fY8WE86QFGco0ZRbEtBC4vv95v3MvIEYq54KgQqB/zMCXHX+4eoGFAnIq+dPYzqT9M21T+s3mFjxwV7gzG+iUQ3OeZ1oAWCIQhz87QgYH3j8Q/+sd2eYx+6ZAwAdb9i+1WGcr4UO6ziGoDxzubuFQDg69CGNMCEukpZWfH7zfLvGasdciLaJ82QX0reI997m+RMTO2cCgGDVwX7DOeuYGJ9Iy1l3fvPdMcnUkZWZj2pN0M1hHeVEM3L+EFcwZjDlOuOsh2QDl9nOWe+LILwpWmxmN5kPK7j0yym8DqbEUlZKlApAmvPouIOOr5/0bg10gLzbPmtxEE9UIEhOFgilpgCGfWzlgfk9NPq+rvME0NveHBXA++D7FC0fHwKEdFDEpAFZGgBUrGIrxmDrpHe7k6elEc/JT7c7gDLiINRSC2MpAAQFCotV1FBaeVx16Ted8FdpSEY8ElgnrSiWAgD2edl5ylXmTex8CIYrvG5QRyJPsLdIeK4cAMpH7PNr8urzblrY32ufQ/SjExWBLCyiciqItaRacOUAWLi9lZzHlXq7e3NfxzETGiqiAGz4qSKyuuXJuundlQPAfb4oOQLQN3HMiBZA7grCXlD5rxwA3Lh8Ixkh+IGRUybEgg1kcr9ZPgBM3vG5zD0y8cmEFmU7Uh1QdJeTApzVo0bl6fm6IMS2wYruUgDQNT6NTu0K4fe8cjVqgNxPlx89buRVRnxSZcbvc4/fTyRvnC2xthftCiPGTAAAuJRHFvMWJwEAIZDk2Z+7hQEQnBgjD26TJd1aKQDgv5YcFlzaxBiDAfCnxOOzCQEdYwEdl+XnSKXOPg4/+n6RCXEoG+0vvXr568DYeWT4Co+uwKy9j7wYln/t3ryTR1YWDw1GogcuH1hL3XRlpgA5inkrOQtcbGcpT3t/wfwDdYc233439SgIZgTKkIWGp6pdmQAQAwdfOWKy5oPvNnKBELQ98OWtL7C9cWd2U7CD8wYOSKT8x6FpUsvVAiApCjiwTl4Q8LS2EzXucnCRfmY3BYBkqatPE+MkOVoAEKP32cW3agUnEB6u/nC8THXC4KENStKZ3XSim6TyctAiD1dpSJI2G8wsglEltAewhYcFMT7ARLpn7t8XP/b7+0MdLILBZjAJlmVhfdhx+QcyWEtOqIvk1cDexrNGSwl952T31tdpNmlHAAnov/zZcX1rSY2EkfCW+PJGR8d5oiEHaWCpDi5o9QiYu5vn2u2WiijxJDlPOsbZZBQBoSCKBIv7f6CxTRlt1v/9xdMVXRCILmMs7uDWsc/wxEiHpjAq5trvGzZzGxz4AoZ3J+kSRWciTPqNIiB0zOIeXlvJztM7RPPUxPlRJASjazUSAnmYHsEtEeOHeOtzGu77a8w7pt9orjiJ87kAwIuSPVTajTsKQxdEYqXNAoUKFOWpOtHN4kt6H47Vsy5EQl6jFHiwurGNDLE8x9UbeGCtU43IY3SUZ3Q52lXnhuPkBjdIAPvUXnUdNwYAncdQZDuyIXi48GE977Z4nFNU1Wl+GIzQLqdI0vU4fkewxZHg7mvaXZp2DSMARu3vDWZl/ZPROMrGjjCNVZ80aibh1yqCFs7ZFeeH/wXntYogrT5WXKkn4w5w67qvfBg1mREQH4CA89uLX5RaMEkQlsubCQD2++WoiXimLm6OXwIWmQBgb25E7RIAB0XaSYer6KdIXVo1gHPRjBrh/lPcHP9SDx2Oop9iIciMAFW97mmvWLOnJ90YgOmpng1JFQCzsQ7lWVFFQHnYz4bmKgJmYx3Ks6KKgPKwnw3NVQTMxjqUZ8V1igAa4BoNcXVgjQks+j9DOkaNo5n2/xWuUwRMil0ifwVAIbBORyj9fS/pMx3plZQKgQqBCgFE4F/HZIksB8WvlAAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: Wait -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The number of milliseconds to wait. This field is required. - IsRequired: true - Name: Delay - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: All -TypeParameters: null diff --git a/resources/App/modelsource/NanoflowCommons/Projects$ModuleSettings.yaml b/resources/App/modelsource/NanoflowCommons/Projects$ModuleSettings.yaml deleted file mode 100644 index f6ae021..0000000 --- a/resources/App/modelsource/NanoflowCommons/Projects$ModuleSettings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Projects$ModuleSettings -BasedOnVersion: "" -ExportLevel: Source -ExtensionName: "" -JarDependencies: null -ProtectedModuleType: AddOn -SolutionIdentifier: "" -Version: 1.0.0 diff --git a/resources/App/modelsource/NanoflowCommons/Security$ModuleSecurity.yaml b/resources/App/modelsource/NanoflowCommons/Security$ModuleSecurity.yaml deleted file mode 100644 index 3d32b8a..0000000 --- a/resources/App/modelsource/NanoflowCommons/Security$ModuleSecurity.yaml +++ /dev/null @@ -1,5 +0,0 @@ -$Type: Security$ModuleSecurity -ModuleRoles: -- $Type: Security$ModuleRole - Description: "" - Name: User diff --git a/resources/App/modelsource/Navigation$NavigationDocument.yaml b/resources/App/modelsource/Navigation$NavigationDocument.yaml index c282f13..90a9ba6 100644 --- a/resources/App/modelsource/Navigation$NavigationDocument.yaml +++ b/resources/App/modelsource/Navigation$NavigationDocument.yaml @@ -45,5 +45,6 @@ Profiles: Code: 57377 Items: null Name: Responsive + NotFoundHomepage: null OfflineEntityConfigs: null ProgressiveWebAppSettings: null diff --git a/resources/App/modelsource/Security$ProjectSecurity.yaml b/resources/App/modelsource/Security$ProjectSecurity.yaml index 2f3731e..f7a551e 100644 --- a/resources/App/modelsource/Security$ProjectSecurity.yaml +++ b/resources/App/modelsource/Security$ProjectSecurity.yaml @@ -16,7 +16,7 @@ DemoUsers: UserName: demo_user UserRoles: - User -EnableDemoUsers: false +EnableDemoUsers: true EnableGuestAccess: false FileDocumentAccess: $Type: Security$FileDocumentAccessRuleContainer diff --git a/resources/App/modelsource/Settings$ProjectSettings.yaml b/resources/App/modelsource/Settings$ProjectSettings.yaml index ed5589e..5edac4d 100644 --- a/resources/App/modelsource/Settings$ProjectSettings.yaml +++ b/resources/App/modelsource/Settings$ProjectSettings.yaml @@ -8,6 +8,7 @@ Settings: UrlPrefix: p UseOptimizedClient: "No" - $Type: Settings$IntegrationProjectSettingsPart + ObsoleteEnableUrlEncoding: false - $Type: Settings$ConfigurationSettings Configurations: - $Type: Settings$ServerConfiguration @@ -27,6 +28,7 @@ Settings: OpenAdminPort: true OpenHttpPort: false ServerPortNumber: 8090 + Tracing: null - $Type: Settings$ModelSettings AfterStartupMicroflow: "" AllowUserMultipleSessions: true @@ -40,11 +42,13 @@ Settings: JavaVersion: Java21 RoundingMode: HalfUp ScheduledEventTimeZoneCode: Etc/UTC + SslCertificateAlgorithm: SunX509 UseDatabaseForeignKeyConstraints: true UseOQLVersion2: false UseSystemContextForBackgroundTasks: false - $Type: Settings$ConventionSettings ActionActivityDefaultColors: null + DefaultAssociationStorage: Table DefaultSequenceFlowLineType: BezierCurve LowerCaseMicroflowVariables: false - $Type: Settings$LanguageSettings diff --git a/resources/App/modelsource/Texts$SystemTextCollection.yaml b/resources/App/modelsource/Texts$SystemTextCollection.yaml index 6aec6c5..34f2d23 100644 --- a/resources/App/modelsource/Texts$SystemTextCollection.yaml +++ b/resources/App/modelsource/Texts$SystemTextCollection.yaml @@ -1108,19 +1108,6 @@ SystemTexts: - $Type: Texts$Translation LanguageCode: en_US Text: You can’t complete this user task, it is not assigned to you. -- $Type: Texts$SystemText - InternalKey: mendix.platform.workflows.cant_complete_task_generic - Text: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Je kunt deze taak niet afronden, de taak is wellicht al afgerond, is niet - langer geldig of the workflow is al verder gegaan. - - $Type: Texts$Translation - LanguageCode: en_US - Text: You can’t complete this user task, it may be already completed, invalid, - or the workflow might have moved on. - $Type: Texts$SystemText InternalKey: mendix.platform.workflows.cant_lock_workflow_definition_locked Text: @@ -1202,17 +1189,6 @@ SystemTexts: - $Type: Texts$Translation LanguageCode: nl_NL Text: Jezelf verwijderen is niet mogelijk. -- $Type: Texts$SystemText - InternalKey: mendix.platform.creating_object_failed_because_of_security - Text: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Creating object of type {1} failed for security reasons. - - $Type: Texts$Translation - LanguageCode: nl_NL - Text: Een object creëren met type {1} is gefaald om veiligheidsredenen. - $Type: Texts$SystemText InternalKey: mendix.platform.deleting_object_failed_because_of_security Text: @@ -1282,3 +1258,76 @@ SystemTexts: LanguageCode: nl_NL Text: Kan de Jump-To opties niet genereren voor deze workflow instantie, omdat de huidige state het niet toestaat. +- $Type: Texts$SystemText + InternalKey: mxui.sys.UI.page_not_found + Text: + $Type: Texts$Text + Items: + - $Type: Texts$Translation + LanguageCode: en_US + Text: The page you requested was not found. You are redirected to the home page. + - $Type: Texts$Translation + LanguageCode: nl_NL + Text: Deze pagina kon niet gevonden worden. U word doorverwezen naar de home + page +- $Type: Texts$SystemText + InternalKey: mendix.platform.workflows.cant_complete_task_outcome_already_set_by_you + Text: + $Type: Texts$Text + Items: + - $Type: Texts$Translation + LanguageCode: en_US + Text: You can't complete this user task because an outcome has already been + set for this user. + - $Type: Texts$Translation + LanguageCode: nl_NL + Text: Je kunt deze taak niet afronden, want er is al een uitkomst gezet voor + deze gebruiker. +- $Type: Texts$SystemText + InternalKey: mendix.platform.workflows.cant_complete_task_already_completed + Text: + $Type: Texts$Text + Items: + - $Type: Texts$Translation + LanguageCode: en_US + Text: You can't complete this user task because it is already completed. + - $Type: Texts$Translation + LanguageCode: nl_NL + Text: Je kunt deze taak niet afronden, want deze is al afgerond. +- $Type: Texts$SystemText + InternalKey: mendix.platform.workflows.cant_complete_task_not_in_progress + Text: + $Type: Texts$Text + Items: + - $Type: Texts$Translation + LanguageCode: en_US + Text: You can't complete this user task because it is not in progress. + - $Type: Texts$Translation + LanguageCode: nl_NL + Text: Je kunt deze taak niet afronden, want deze is niet actief. +- $Type: Texts$SystemText + InternalKey: mendix.platform.workflows.cant_complete_task_workflow_not_in_progress + Text: + $Type: Texts$Text + Items: + - $Type: Texts$Translation + LanguageCode: en_US + Text: You can't complete this user task because the workflow instance containing + it is not in progress. + - $Type: Texts$Translation + LanguageCode: nl_NL + Text: Je kunt deze taak niet afronden, want de workflow waar deze onderdeel + van is is niet actief. +- $Type: Texts$SystemText + InternalKey: mendix.platform.workflows.cant_complete_task_internal_error + Text: + $Type: Texts$Text + Items: + - $Type: Texts$Translation + LanguageCode: en_US + Text: You can’t complete this user task because there is an internal issue with + it. Please contact your System Administrator. + - $Type: Texts$Translation + LanguageCode: nl_NL + Text: Je kunt deze taak niet afronden, want er is een interne fout opgetreden. + Neem contact op met de applicatiebeheerder. diff --git a/resources/App/modelsource/WebActions/ClientActivities/ReadCookie.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/ClientActivities/ReadCookie.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index f9deaae..0000000 --- a/resources/App/modelsource/WebActions/ClientActivities/ReadCookie.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: CookieValue -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$StringType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Read cookie - Category: Client activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: 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WhCwlAAcgKU4IQwEKouAYQdA2WMr6xFhLQgsDQJm+qauA5AkaUiJr2ql39SnrJdGE+ApQaB0BOb3TemynjW6DkBOGdSnFOKrdrXqCcXvIAACzhPwh9xtSq2SKN3Qs4LFAai8iDvg6TAz1dAzBL+DAAgUR8Dlc+9SSuB513/qSdR1AAmv/w1OkqI5QTzPh2vXV5V9emq9B8fvILCYCCzfXNPJu/jm3DPJn/MaSnp9xTuAt/bxUY7n/1UJyyvPAhofrSn4CanFBBfPAgLlTGC53Bd91V7VoMxz4m9n+67On+4MgOonPb7fyFdFh5Sy/CHvQfI6egrwOwiAgD0EaCm+YkvtQZ/cF5UaZkd/T+A3LFp104LnhOztjm/Ncp6z8mygTqVM5IaFpNCTmsr0T92YGWRRijIgAALmCFCn9zd6m/xhT5uvytMh98d52/JuSdh2sjN0mUUDswMgYc93J17keNfrLIJRBgRAoAQEJHHfm53BN1g1G3IAJJRmAhnO+0c5q0wLqxKUAwEQsJcATfs9kvAj1pE/Zw1TDEBpOings2I7J4m/tfeRIB0EQECXwOwOnXgk5fExT/uVMg3PAJSVn/+3RAvn5trk/cbnJJ5vkbcLt+oajAIgAAJFEZA77ZAs4LLc3/pom54l2l+UQlQGARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAgSVA4P8BoSiEpeDgpaMAAAAASUVORK5CYII= - Subtype: 0 -Name: ReadCookie -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: key - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/WebActions/ClientActivities/SetCookie.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/ClientActivities/SetCookie.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 4ad6f76..0000000 --- a/resources/App/modelsource/WebActions/ClientActivities/SetCookie.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,38 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Set cookie - Category: Client activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABfwSURBVHhe7Z1tcBTHmcdn9l3S7kpCvOiF1yBkB2QgLASCc4ecq/J9AfuOqotP+Kri3JUF+ZSccT4T7msMdfcpIO4uvisbxUmdcxiSVF3V2VBnSMAIAwZi82KEAQkwkna1q9WuZnbm+hERnhl2Ne+zK+m/VapS7XY//fSvp5/ufrrnaY7DBwRAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAgAjwdjC8+HO5LjKe/x7H8x0yx63leW6pHXnICwIgoE9A5vjzvCz3STz33z5ROvHOD6r69HMVT2HJAFDHDwvCD3lO+hHr/HVWC0c+EAAB+wSYQXiTFwt7rRgC0wZgR3dmrcgFf43R3n7DQQIIOEWAzcD7ZJn76191hc+bkekzk/hvDonfK/DBj9H5zVBDWhBwnwAbyZf6eO5j6qNmSjM8A6CRnzq/Vrgsy+lCTuoZS40fH30oDBRGhbQZBZAWBEDAHIH4kuq2cDSQCFT5d/j8viZVbllOShz/nNGZgCED8GjNP/7EyC+wjj94PdONTm+uAZEaBJwisGB1XRczBF1KebQcyAdC3zjyfT6pV46hJcCEw0/j4R/PiPseXBjeh86vhxi/g4B7BO5fTHZTX1SWQMuB0HjuR0ZK1TUANPpznPyKUpg4Vuj+8nKqx0gBSAMCIOAuAeqLtAxXluLj+R8+6rtTf3QNQETI/ZVy9Jckrp+sjp5g/A4CIOAdgWG2FCd/3OMS2fZ8OJ9XDdzFtNE1ABzne1GZsZATT3hXLZQEAiBghECeOd+FrKielft9a/Ty6hoAmZeXKoUI2cJxPaH4HQRAwHsC4pjUqy5V7tDTQtcA8By/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WiYfHECH97zZbBUIA2ALHzKDwPQmYNYA4CTg9G5vaA8CtgjAANjCh8wgML0JwABM7/aD9iBgiwAMgC18yAwC05sADMD0bj9oDwK2CMAA2MKHzCAwvQnAAEzv9oP2IGCLgGkD4K8Jqg6Q2CodmUEABBwjELbQN3UNAItH06fUMN4YbnNMYwgCARBwjECkMajpm/J5PeG6BoCTpRNKIYEqX0JPKH4HARDwnkA4GuxQlspe17ylp4URA6CyIsHqQCeWAXpY8TsIeE8gEPSpDYDP92s9LXQNQD5c/Sa7EDI5KYi9ahpraK2eMddW6QHC7yAwHQjMa4938X7fxNuf9GEx4frGA6EjerrrGoAj3+eT7K75f1EKCkYCnXNXxVUXWuoVhN9BAATcITCP9cVQTVA1KPOc9B/Ud/VK1DUAJGA8FPlnTuJuKoWx9cZusjqVfFGFXuXxOwhMZwKhWDA+f03t7hDri5p63MwFWJ818NGNCjwpY0d3Zq3IB97nOb5eKVeWuH4hK/SMZvPnMrfyVw2UiSQgAAIWCUTYVl9grq+ppia8hfxxtCRXiWJRXPycuO5wV/S8kSIMGwAS9lL32Css4NS/U8wpI8KRBgRAwEMCE5fIyH//TlfVm0ZLNd2RaSZQkIPvcj5umdFCkA4EQMBlAjx30y8J242O/JPaGPIBKFWfKECSvsNzBdodkCf+8AEBEPCewETQRnmY46S9OX/I8LRfqajpGYAy80s/G1vK+bkOWfa9IPPyUmZN1npPASWCwCwjwE7nyhx/nufkE7lQ2JC3f5YRQnVBAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAAARAwDSB/wfya6G6lT2PNAAAAABJRU5ErkJggg== - Subtype: 0 -Name: SetCookie -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: key - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: value - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/WebActions/ClientActivities/SetFavicon.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/ClientActivities/SetFavicon.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 7c3d26b..0000000 --- a/resources/App/modelsource/WebActions/ClientActivities/SetFavicon.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,45 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: "" -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Set favicon - Category: Client activities - IconData: - Data: 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 - Subtype: 0 - IconDataDark: - Data: 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 - Subtype: 0 - ImageDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAQAAAADACAYAAADr7b1mAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABW1SURBVHhe7Z1bcBRXese7e6bnpplBQuIiAQaMkL2gAGGw8eJsEEmVnwAnVGW9sh92N8kK79NujPOMyTNQydPaIpV1Uom13q31xhbeVKUqa5QYdvEigwmQRRgk2UjiJqTRXDSXnu70J2q83Y2kvkx3T8/oP1Uql+lzvu+c3+nz73M/DIMfCIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAACIAAEWArwfDij6XGUCH/bYZluySG2cGyzIZK7CEuCICAPgGJYS+xkjQissy/c4I48O73wyP6seYPYUkAqOIHi8UfsIz4Q7nyN1p1jnggAAKVE5AF4W1WKB2zIgSmBeDl3vQOgeF/ga995QUHCyBgFwG5BT4iScyf/6wneMmMTc5M4L84JXy7xPIXUfnNUENYEHCegPwl38CxzEWqo2a8GW4B0JefKr/WuCRJqVJO7JtNFs5kHhQnSpliykwCEBYEQMAcgfj6SEcw6k/4w76XOR/XqootSdMiw+4z2hIwJACP+vyFx778RbniT36e7kWlN1eACA0CdhFYta2xRxaCHqU96g7k/YE/fP+77LSeH0NdgLkBP80IfyEtnLj32dQJVH49xHgOAs4RuHt5upfqotIDdQcChdwPjXjVFQD6+jOM9B2lMWG21Hv/arLPiAOEAQEQcJYA1UXqhiu9cCz7g0d1d/GfrgCEirk/U379RZEZJ9XRM4znIAAC7hGYkrviNB73lUd5ej6Yz6s+3POlRlcAGIZ7URmxlBMG3MsWPIEACBghkJcH34tZQd0q93Hb9eLqCoDEShuURorZ0hk9o3gOAiDgPgFhVhxUe5W69FKhKwAsw+5Q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 - Subtype: 0 -Name: SetFavicon -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: iconUrl16x16 - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: iconUrl32x32 - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: appleTouchIconUrl - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/WebActions/DomainModels$DomainModel.yaml b/resources/App/modelsource/WebActions/DomainModels$DomainModel.yaml deleted file mode 100644 index 197d610..0000000 --- a/resources/App/modelsource/WebActions/DomainModels$DomainModel.yaml +++ /dev/null @@ -1,6 +0,0 @@ -$Type: DomainModels$DomainModel -Annotations: null -Associations: null -CrossAssociations: null -Documentation: "" -Entities: null diff --git a/resources/App/modelsource/WebActions/FocusNext.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/FocusNext.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 28aaab9..0000000 --- a/resources/App/modelsource/WebActions/FocusNext.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Move the keyboard focus to the next element that can be focused. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Focus next - Category: Accessibility - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQdSURBVHhe7ZlBVhpBEIarB/AlioroAcgN8ASRE0DiIs9shOS5y2O8gXgCM2SVF5PgSl0Q4QSaE0hOIAcQRMW4ALpTzQtkpmeib6Z70Lw0yxm6uv6vq6u6awD0TxPQBDQBTUAT0AQ0AU1AE9AENAFNQBPQBP43AkQUvGR2WVAIjLEOAdJgjP4Ag9Ra1uxJUFuTGqcUgOg0AmkyIKV2Ob43KUF+5wkVwMgZDqJP+plLa6Hp18Gw/2+EPQG3TwhJxVjsdNG8yk1iPj9zuCLAz2Dxv/NmNx0FmgIKOWIY6162GNAXLWuuJjOPe96LNEZXI4hNpQDsDsybF6kojZRcIBh0eqS3rGo7LBW7W0CgRJmRb5enfeea0LYAF9j6MJdnwLYdK0Mggdvha5DVclWs3+L5c4PQSrL40zPq7portAiwT5o0LzcNiOzYn1EGuGLBqwNGWDoGsVNRnN9IcAFYXdvwfQ5gDBqEQKNPje364UfPTJ8sdo8MAuMkyCtDqzz7TCYSEGwewbqiyQ8EJVsAxadRSD5q0LOXrzd2stn1hChsQHoFBNUZPeeVYdG8XpEB0LbmKxQGBdGGn+2gBIDdAcJgM/J06liEgDmhA4zWHc5SNo6IoCBkISgHwIXwiIjMTG25RDGoORMieR5UuH2cDAQlSfDl2pscAQOTHEk5V5hmqoefT0bPeGnExHU2/g9uifNyfEEFBG4jSE5QEgHf9r/U+lO9ZQDmSICUEEeIu2o/lkRV4rmdIJGgJAJGIlZfvV0Bwzj+I4o1q/u7jkwv3jbPrbjDB5nb6H0wvaqDkggYTdx/0m84nRC2xH0ehvzeqzooBVDf2+uErEHePKGOiFMKgCdDu4d4ohIiQt5/GQsUoNC24hW7DWU5IJs1E9HpGzya2sKeQaV68MlxULkvB8gIHFYCvA/wUBfteInn/5GOAC48i8nPJR6N95nhuAjx87vDMdvJUFZ4EPF8jJK7gKfzjFnVg91N+7vFd1c5EjGOxs8YnOA5IPNQ4pVEgJfz/HLUv50pud7ZLkP83bB5quDnN+ztU0pvAZf/uPKD2+lMvW517O/4KdDVHMHOsax+GfEKI4A16YBZQPHoi2EviucT8e6QXezwOizZNpcV75kDZFfEa/yobWV/J98Q6WJDBNwNEY9Sd5cm9VtAmC1ZvDF5z05cfZluELd1acUbYrvtb6XuQQDgnk8ki9fYBWLvBfEd/o1ARaThFiqNIAQRr3wLzJu3qSj00sAiWQCaw65PQhQaTlu8i23xeCMI1Il8GeKO8e+GQFhB9TeBIKLtY0LPAcPJ8MCDYb/82MQrLIPe68BLHc/2/LSn6kOI7IqL45VugWGYAzQx3r//K5/HVQPV9jQBTUAT0AQ0AU1AE9AENAFNQBPQBDQBTeDxE/gFMEjRZXq3fCUAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAP9SURBVHhe7ZldTttAEMd3nA9A6gO9Ab1BOEHJCaAPEKkSNJaaSH0qNyCcgPapaqgUCqhS4IFwAtITEE5AjsBDJRIaeztjYVivXZC960DVsZSH2N7Z/f92dmZ3LARfTIAJMAEmwASYABNgAkyACTABJsAEmMD/RgB0wbXdscwMQcorKWAghH8BIHrdxlw/s60pNbQLQBs0khzir3XcmPk+JT2pu8kVQDgaAgETv9r9MDdMPcKcGzg52w/MI+UFUYDztW+jlWn0l6aPmAekaay/+7b9qzJxigvgyxUBzrskWxLkm6P3sz2TfpL6/dF8gbEn/WUVgNp97cs1zrpoxUBgoBSeXLS1HNbaN1sAsuWLQv24UUwda3JbAiSw25yrY0bYjswLwLwsOJ30cxVvEYqnJ47w9lZ3J4le91BfuXmA2ulae7QJADvqPV8InLHs2WG1Pa44IM51cWk9IQbg8PAw9T4AxQ183x9MJpNt13UTI32tPT7BaHgXBCkzHDVmXpl4Qq19XcclFvOmNBCsLAEpZQUh1Eul0iUC3Ol0OvO6sFGp7Apa/7cXZYba7vWSCQBcYntC+q5uI81ysAJAG8BmuVw+0yGcunCFoE7Vdz157xFZQZhCyAMATrSsoDdsxUQVoKfeKwC8zipcbWcCwUoQ3N/fX6Egh78FdWAIorq+vt4P7wWpsehc3r2DS6LbnH1pAwLZyBITrHjAxsZGDwPgIgqOBED8fxf0aICx3I8p0Zb4wH6GmGDFA0IRBwcHS+gFZ+F/AoIeEIn0+mmz25iJjMHoNPoIzaTsYMUDwn7RCwbqGPQlYXO2s9hKyg5WAeAe4CrLwKbZxpG/Ix5nFQAFQy0IRjximkIT+8I9QxAnlMtaDKC8XywWz1W3xxiwhzEgslF5LAaYQqLzALl6zE6CeHrH2ANIOAU/XTwZp62xOhDav0cGpuwMTYVT+7TiqY2Vs0DS4PFs8BnT46b6jAoiIOEkvIce0j9qzlafSrwVD0gaPAobeJ7X0p8FhRLl8oW8eErxuQCgmUfXr+oZIdgFalWiAlaOTQFkcXu1T+MYcGtsSMJp60tun5gOqTqkXHQcNi2bm4pPjAGmM5LUXq3chM9NCyJUf/SgFCuI0PFYT3UPabKWBv/WSe3rzUfhyE/67JsWQ8ge1hPQq5z7U2dK8bnEgFDockfOB1UgTTwVRegbgQ1PwyWEAG5rjhnEW18CFOhkCSpCOssgfSyNx097z74snttpjL4bOsK1/U3A1JNsZYEHx0EbHvoW8NzE5xoDyDilOor2tNuz9SHEdMb19nY/jpKbgxhioPv5r3wetw2U7TEBJsAEmAATYAJMgAkwASbABJgAE2ACz5/AH5834oPh8ogOAAAAAElFTkSuQmCC - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: FocusNext -Parameters: null -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/WebActions/FocusPrevious.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/FocusPrevious.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 90a1585..0000000 --- a/resources/App/modelsource/WebActions/FocusPrevious.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,24 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Move the keyboard focus to the previous element that can be focused. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Focus previous - Category: Accessibility - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQ9SURBVHhe7ZlNUtswFMclJRkKhJISug8ngJyg9ARO6UyhK0iZDruEnoBwAjBddToMZNOPRabxCaAnIDcg+xIIJZN2imP1KYwTW7ET2bE96VTaMMTS0/v/9PT8JCMkmyQgCUgCkoAkIAlIApKAJCAJSAKSgCQgCfxvBPAkC04X71aRQXMY42cUoQz8Tfn190pNOmqdSAALxdstTMkeCM74FcyP+ycAzBdvMgmaOEEYrQYl3LTjBoAEPZFfe+niz1ycxi/CED/MJ89b4GmxtfJDTdb8CnUax8RjRL7xzyilTYRIFeGOpqNE7Vadrgc5L7PlCcBCob1JsHGKKCpdHSX3g3CGhT1beT7BGZRWO1jP36pPAEJ4TRhAT7zpS0AQ0oW7y8FkR99dqXOH4cnuWxbKAQPiH2KnxLbDOE52sz2X6Smi+1GJF9oCjuJhpIFQ/lpNno4DgF992POnjaO5vJNNZX17lWCcIxgpQD/jdd7K54+O0T40AkIVD0UOv/o61gfyiqIUU2uv3x7ECTkDAEU/4ofBcgUQpviuQ1DhWR1jqw8Jz5blmfjYdPsMlm7X64qL9ncEELp4lkIwWbY5SeB1x7XYTBuqQTRWnhkFYmBfRCGeOZUutG5AXMp0EBzJWusLZX0nEyfGpV0ArUPk5PXfyZqmqc1R4kSe2yIgKvHd7GsRz/7ni6sY6ZR48Xp7Nlv5enwelPiuH+YkbuJFKIr04WvxxWILDnj9xj9f29iG4oj0wx+TXOXTB01kLi99uhEQtngvDvW2hFU8/BiGeDbXwxbA98IVoR8xQYxRlM1UEHZ4G10A1+r8qYE6jgVIGJOK2YSEZ2nxR/H+dhAzINTLtvKsNCUodsKPNCjZuj6aKQtZFOw0Kge82Ng+JJhA4WM2Wtfb91lNKzcFpxDqZnsLuEUCOwGyPCFkUbATpcgmZH7nV8Y6lFBUtZvCmfhM4kJ59SYnOIVQN8e9H0UkwDmAHYF7YU2hzm8cztqy/EuIAmSLAiFNjp08nQUiiQRKv9s8NdDAyupTegkipeZf9uiRrmeB0CEQbAtxjGgOLkdSVpe1crnZmfrzHFFDHS3FX4+hp8EwITTUuXM4ANV7bkNl2L0Q5RqDUPlyvKsbZIkatEypEWhECL3/3XICX797XQNHuwbcBr2P5jaI+St0I+QUCezmZtzLUWYX7hfPbeAIPlgstPa8wvTbXygCTOPmijHxEMIlv5Naxz1ciibgjdA/GbLn7H6AXZDwdwRBzGm14QkAGwgOr4BTge5Dt2txEwTCVCOI1L1HHLXow7bDlwnBM4CgV8C0xyAgSk74SAhqvon/MtRQH1d1fJ+1vRmCUj/EjlASjMCP7hRsv8Ot8BI7mEUFYmK2gBPk/udxsgyJd2X053GoG10afGuYqMWOKqjkPJKAJCAJSAKSgCQgCUgCkoAkIAlIApKAJDBI4C+gobatbqczgwAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQTSURBVHhe7ZldbtpAEMd3bQhE6kOOQE5QcoKmJwh9CEhVksZSsdqnJicInCDpUyWoRD4rQR9KTpD0BOEG4QbloVJIAE9n3Zrai4299hpRdXmIRLw7O//fzoxnF0LURxFQBBQBRUARUAQUAUVAEVAEFAFFQBFQBP43AnSZBVeaD5sApESo/oKCVSCUrsX1t13N+WpdSgCVxsM+EO2IUlKIK5if908AqHx6KICutVD4pizhjp0gAJrsheLaK38elohO79IQP88n4RTYbjwWv5q5XlyhfvOYeAr028wzgAFQrUuodU1H0Gu/X+3LXJfZEgKw3Ry/0cjkFIDWOuZKXYYzLOzZzs8UOCDdYXbFuDboQMY6QTYip4Aj3qZGoVZuPB3JcAxz/oYXDwCHbTP3Km3xzP9IANziHdEMAkuHJBBYtZ+t9Fa9Y+ZPktgVmRuaAn7i7QXAMtrm6qnIYvzYcuPx3g0ACD3tVFcMP5sXFxfYE0BJ07QtfF4QXXdnZ8dX69wISFM8a3L43afjyUxdabVaa5eXl8eU0hsU/yGO+HmwAgGkKd4OINbhuT5s9/kqz8RnMpkbHHYguuNRx/sCSFv8b+e0524nsdXt8k5ns1nsBmkxqpg442byYjHiCak0hj/c1d8CsuHuL3D3Cwjg3hMlAH38bozH455hGIM4gvk5nghYlHjbCe5gwzdXuq7XePEofGN3d/dWlnjbDWeRQPEyMKMNvhevNB/BbZp/jlUf22JP+Jewkl9Lcmdqxo6AtMXHcZrP/TTE25XI/gOj0H4gjgiZc9gbQaY9x5YNwG5osLFJY4EENvvuufg6LCawFTjVs/OsNSVUa/GjLaLvf61mzmQ6EFYDzs/PT/40Pvay2AX2WRGUWQCnKeAIC4oEdgJkdUImAFQ0cNvbYqdC1wdrQJf7XsAouLu6uirJ9MM39xcRCeXm8I4SV5XHPr9t5j1Vno+CJMKFzgILiQSA725BePExs7OTyaSGod9LIjxsbuBZIG0IeBDyhjhYpa0WrLkdZvmOef/SsqyPYULiPp97GkwTQru6eosHov7UcewM86OnmQLMIOzt7R2MRqN1BHEmOyIivf8DawLXv4vugp9dmMBh593iLkQi3Qj5R4JVT3o5yuxiFNx6qr1Oj2Vdt0XZkEgR4Bj6u2NWHUO4FmWBsDFBl6LsfoBdkKRxE+wBHuYg//x142fxi/lMamUOvBbHxRkIdi0OFu0LRxxeX7tqjOfw5fxfKAJEYYmMtyFYpJXk97956y39L0Odt/kumcCG580gQjDm2EhFMKZt4Wks3ztmbp0dzBYFYmlSwI/W9OdxvD+kBIqh6YFNQhB1bLOXarOFo0NNUAQUAUVAEVAEFAFFQBFQBBQBRUARUAQUAWkEfgGMicVyl/zyNQAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: FocusPrevious -Parameters: null -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/WebActions/PictureQuality.Enumerations$Enumeration.yaml b/resources/App/modelsource/WebActions/PictureQuality.Enumerations$Enumeration.yaml deleted file mode 100644 index c89a983..0000000 --- a/resources/App/modelsource/WebActions/PictureQuality.Enumerations$Enumeration.yaml +++ /dev/null @@ -1,52 +0,0 @@ -$Type: Enumerations$Enumeration -Documentation: "" -Excluded: false -ExportLevel: Hidden -Name: PictureQuality -RemoteSource: null -Values: -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Original - Name: original - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Low - Name: low - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Medium - Name: medium - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: High - Name: high - RemoteValue: null -- $Type: Enumerations$EnumerationValue - Caption: - $Type: Texts$Text - Items: - - $Type: Texts$Translation - LanguageCode: en_US - Text: Custom - Name: custom - RemoteValue: null diff --git a/resources/App/modelsource/WebActions/Projects$ModuleSettings.yaml b/resources/App/modelsource/WebActions/Projects$ModuleSettings.yaml deleted file mode 100644 index f6ae021..0000000 --- a/resources/App/modelsource/WebActions/Projects$ModuleSettings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -$Type: Projects$ModuleSettings -BasedOnVersion: "" -ExportLevel: Source -ExtensionName: "" -JarDependencies: null -ProtectedModuleType: AddOn -SolutionIdentifier: "" -Version: 1.0.0 diff --git a/resources/App/modelsource/WebActions/ScrollTo.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/ScrollTo.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 31c3498..0000000 --- a/resources/App/modelsource/WebActions/ScrollTo.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,33 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Scroll the window to make targeted element visible -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Scroll to - Category: Accessibility - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAS9SURBVHhe7VrvUhRHEO+e1ZRlsCBovvsIxxNEnuAQRdAvQgLJp3j4AnI8gZzfVCq5fEEUTbwnQJ+Ayxvc91QIVpk/VdxuOw0st7M7uzszi9Z5ma26Kqpmurd/v+nuXbZ/AP7yDHgGPAOeAc+AZ+D/ygDaAK/XGxPBl/82gOgaAl0FQPnTXXRAgF258jqMRKfz/HHP5j6fcq8RAfX5H64GIvpZbr7mGFy7H4n1syZi8t4/dzme/UcXf3GMC0SZ4eztlcY5Ee5VAM+3WDyH0d71he9Xy+5nus7gBUZt/sVEmNom9xVmwOzC8hoiNl0c59mQ9Pfr1pP1Kj5j8EkfEYlFl0zIJYBPXi5upAMlojeAWFjbc3eWa2EINRSwpusTEeH937afZHybkKIDH9u5kKAlgGue014GPzEIig6QYP3l9qZV4DdvLa9SgJIIGPgiOOiTmLLtCUXgXUnQ9oBAhDLtVfACYdoWPAf18sXmhkCaln8enJKJMMFN1eTE4z0m4HmvbU/IEMCnj4BH3TW++OR3tja7NgEn97IthqTUPTfVev1uIsPyveeBjwCWIgiX0pY2JGQIEBjOqA6pV3TyN26vUPKXB4MzgQjeJNfFxS9Wy0gtAr/fGmvvt8bbVUjIECBPv64ERWf3FCCgjpJZAN8UEVAGPratQkKWAIRaMqh+SL+XnZLpekTBa5UAfpvUX6bgq5Kga4JKXXZ23Gs/DS3b9fWv0rbgq5BQ+iZoerpntW+88b7GTSztjxse13zZfYrK4WvpO20/dAS8a411Za9Qnhim4IsygX3+IX0PPQEc4J+tS82YBFvwOhLYF/vUZc/QZUAcJAd8CDBlkvZ5ZcHlcAiHU3ng2S7zKszP9KTDV8+eGv3LXFab8frH9m8aR7xvaDPAFojrfk+AK3OjYuczYFRO0hWHzwBX5kbFzmfAqJykKw6fAa7MjYqdz4BROUlXHD4DXJkbFbuhzoDxxl+1qkTrvgMmfQ4tAVfuvV87D+f3qoy+2VZ+3dm7/OPf2s9hTMRQEsDg5beqo6BtxlzJk01+WkdBa3kkDB0BR2l/Av70s5WlCEI3V0ARPfhMPot/1a0y69MPVYgiwG8NP4tTL5lKPC2u2ohi+7m5ZbWpSZ2AzrfrrK8IfN7X5UwJEKFCQHZa7E5HKNS5IyF087zZkuACXtsEZbK8TQYlNULqtNgdPxxLZgaXlNso0+K0a1MSXMFrCYgu9DcUAqSQ4SzUXaw5SuuF0tNil3KoAp7vpx16zC6s7CImNIGyVkVI0zuOk2IWTUUEu4rshqD9avtpRt2Rl2CTjXeLAgIDWc1xwzOdKGkfgyEJDmzQoKSmJwpw1yUT+OQz4IFYJGUllcsrB5UwO/C5GcALJ+quh9kTkU8JqRph4USeduBEWcq9Y0YnsESi+y6CK44lPxPswRcSwIs35r9rghBK46rQA2PTdTlvbFbxc0yC+EmW1EkJu4EvJSCRCarOzyl6N51hcU9gEgBsaj7tz2jye5TSEDZRqPI5Ux5YXRpSsGQrjCzzz5kAEIBpw9P5MyIgNjytbaIZmXw1VUyZdE89KYnryVp/2/9vbKPTaQ0aahkqv+4Z8Ax4BjwDngHPgGfgEzHwAQEfazLvMkKdAAAAAElFTkSuQmCC - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAARxSURBVHhe7VpdTttAELadhAqpDxyBI4QTNJwAXmilChRSCV6hF2iSE5TnVGoSAZUQL3AC6AkIN8gR8lAJNQl25zMx3ax3vT+myHLXkiVgd8bzffvtrPGM57nLMeAYcAw4BhwDjoH/lQHfBHi/31+r1WpHZNOge31xp1xEUTTxfX9E99V0Or1utVpjk+e85lwtAgj4OgHvL4Abx0eEDObzefelidj5Nm8imMuD6tA4qIVBoDI8Pz8/qlard7bg4Z+UsE8E3p2enh6rnqc7DvCB9zjAnRCha8vOy1TA2dlZmyZ3bBxn2HR2d3e7eXwm4FkfoVfZt1GClACsPEn3RBDorWpvE3H1MAzrNK9NN3LF0kV+P+/t7Yl8K3kRgU+MbEgQEoA9D9lT8GuJcyQ2+rlrGvhwODwOggBEPPsiP5PZbLZhmhOywNuSIMwBlUqlw4On3zdNwSOoZrN5AtsFgUmcOE2QVLUvHfBwZpoTUgRg9WnF4uzKXF3atyPtaLmJsKUtwe/7Bo5VHZ9S8FHY8nBzlwkJKQJI+tusP1q5cdbK036P2FsGCEqgsVt2nJ51rCIgC/zF4eoAdx4SUgSQXLe4oDqqIHXHicxrdi49612WrQp8YpuHhBQBFGSdC/JeF6BqHr0MXXHqWpfZ6ILPS4JIAUv7Ms/e58HxWV90RMLGFHweEpRvgqpVfenxj71fdSSxlF9KdrHUFVfmduj9XlI3XBWOgB+Hb0eex50YmuCzlRB2Lw/fkO/lq3AEILyLg9XOMwmG4MUkhN0nn+mrkAQkJFSi2YaO7GW7AraxDwl42KVehXGmsw4pCWr9y6zam8n4v/avG0cyr7AKMAViO98RYMtcWeycAsqykrY4nAJsmSuLnVNAWVbSFodTgC1zZbFzCijLStricAqwZa4sdoVWAL4P5iV6R/AdkPVZWALe96btR792l6f0HX9d9j3yMRN+DgMRhSQA4H0/ioM2KXOxK8t+Wg+8sC0joXAEQLIJ+L+frcyaIER1hSB6/CLaDoUjIP50naPgKSyqULnL86JPup/Fx6yUUC3Om4gSe/LFJ7WJyLdtrS8LvOzrskgBSwTw1eI8ZFDfAU/ASObPlAQb8MIkSGr5yQYlqBZbc4CWGdaYrxbzjnVJsAUvJIAquCdcII2X6O5CzxFfDOWrxTbbIQ94PE9Y9KDixQ2NNZiAsFc3bSvFaJqi1b7h2m4G1HiR6u6QyetD72Hf8wN1W80i4elWlISnADUwtfieHgrsxkYJi24zHvwEjZMme0m2HZZ8GIKXKgAD6O6ipPWVDxItM/Q3NFHdyxSBk2NlZWWL5m5zSord5WmTkyrBAnwmARikFQfQpcRlsmqiuRQnWu06efzEJHj+d7SgJozinNeVPftsZeFT0udnHL9tn2FmTgAJTwxYgVcqIHk4JI3eQUH7nC4Rt8grpo2RKudPSqB+Ao3OEZkvpQJYQ3Zvo5mK6/5kp47plzHeKXCsEvCJCowbdww4BhwDjgHHgGPAMfDaDPwB0PeJJyHK/CQAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: ScrollTo -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: 'Selector to reach the element to be scrolled to. Examples: .warning - to scroll to an element with the class warning, or .mx-name-textBox1 to scroll - to a text box with the class mx-name-textBox1 (and name textBox1).' - IsRequired: true - Name: TargetSelector - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/WebActions/Security$ModuleSecurity.yaml b/resources/App/modelsource/WebActions/Security$ModuleSecurity.yaml deleted file mode 100644 index 33b4215..0000000 --- a/resources/App/modelsource/WebActions/Security$ModuleSecurity.yaml +++ /dev/null @@ -1,2 +0,0 @@ -$Type: Security$ModuleSecurity -ModuleRoles: null diff --git a/resources/App/modelsource/WebActions/SetFocus.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/SetFocus.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 01daba7..0000000 --- a/resources/App/modelsource/WebActions/SetFocus.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,34 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: ReturnValueName -Documentation: Set focus to the element found with the selector, The element should - be able to hold focus like a link, button, or input. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$VoidType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Set focus - Category: Accessibility - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAU2SURBVHhe7VlNUhtHFO5ujbARImCRA8i5AOIERrmAMK6Kk5VMvPAmkXAugDhBJLJyVRxgk9gLgnQC8AmknADtw6/5S1mjeXlPQai7Z6TRDJJQyj0bCk336/d973deM2Yew4BhwDBgGDAMGAYMA4YBw4BhwDBgGDAMGAY+NwZ4GMBz+fNF5sAS5/wJMJbEv7Nh5Nx1DwCccsZrAM5fTPDyUWl6P6jMQAQk8mcvOIg1BJwMetAo1iMhdWC8cLwR3+73vL4ImMmfJC2wdhF4ql/B97mOiLC5nT4rPar76SH8FiRyV1kEX/2/gCc85KFRiFbn8h+X/PD19AASwJnY1YVQ7DGAbSbYvs2itbPSpC/TfoqEeT+Tv0hZzEkyhy1xIbJeMhwQL443Yl1DoisBN25PllcSnANQbnJ7Bd3rNIzSw9rT0teJFFxEADtt8MZCt3DoSsBc7vzAnezg9WFpujgsEIOQixWqgJVhTZEFUDvcmF7wku+ZA1rZXsv0wGB93METQCyFBYc1XytgMXkncheeIeLpAbr1Mea3jjamV7wYzDx/uSg4XxKcZTD9jKQ8ArAa56xmO2K98v6NZ/5BwLuo020SpMqAGB7rGFwEUJODLrQnL2ywxmM9hjKZ/GwkdrWGAlYH4bphZQBnxeblp/VKZVvJSZgTZi2IYhiz2xyGXpzWmyV3CGCHJytD1vcEP3m1d9/gSU8ObDUyObGXyWSVZN1K0uCo2V/DRvtdBHAu5hVrCFHWrdOyPGepsFYb9D7SJTI1oSY+OgTYvpYLnviHQO7iRHYbtPLC36V4rb0x8/xV0hLOgSoI6vhtsGL/E69VKiXFFQcNluQtf/c99Sc/u3KO46R33r+9BU2lMcqiHV2xJB5uxB/JOnl4QCdmaKEMnv6PiGZBB29fTS3QwaMAT2f/+cdvZXuigWUNiZceB5Ox/L+r9kv5oL3OtxV2WRBADREeWR0VcFmXyjYmPfQ6xZqtShTsCUwA5oiUfMTO728qwY4c3Gr7oV1TpQUvw4EJ0NXXs+/g4PlLannBHZ8QBKhxZz20FI+4oz6BtlMylDfgcEbzCH9xgQnAjyHV5QXfvA8voEbsv0rQebAnuDsB2GYqbjXz6jqpJBpgZT3urFi0mvlGtYY/9+FWEHBqv63YZVUvgzaIdVkqlkHVOzVstNbdCufOleEHYGk5Kk4pVn/27csi4yIfDsKQdgGUdt79uipLn/sB5xkRaZ6BjRH2AWnFoC51AD4ovzWbygZ6Zz+wC/RBMiQogcWSLvb1VMG1UfoYonet4an2uHMATlflNVj2svRhIf9G2bf54FMae+1SYG0HvQEt37yOpfVehLpA13BEw+YZAvSjaxiCcY+u89RLd2qNIwy7Qw7zeo8waKwdeVB3mqwiOJTl1ldx/x8/bskE9P05TEJoICJYZFMB4OA06Jfxnga19f0yd7GG2U0JCQcYzgbd4/JeIzH3JBhYAT1BybTDs3I4yYncZR49oyjvxjnAAc4BvvKS2LUPwLn6U70kEqsYHpsUX+HUG94uylOJ3DlOgVzgT2xmf93t5J5jcc9QuJFEgxKM+4pgoq5/MQ4Ppip5Jn+dtFgjhWPxRbwMyLqv6FBLBstHpS+UxK4keT9lW5cLIDblGYHfnnF4j8BP8Jrsp+NSfKuXPj09oL3x5o5gb1zvBHWACL6Kbr/cz9VYXwS0D/hsL0d1hjvX42Ie2U7d5/U46lbHFu9D2OvxcQhXo4NhwDBgGDAMGAYMA4YBw4BhwDBgGDAMGAYMA6Nl4F8gVgGhGYrLKQAAAABJRU5ErkJggg== - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAT4SURBVHhe7VlNTiNHFK7X7R/YkRt4cgHMCWbIBWBGwpYifsbS2EpWQ3KBeE4QsopiRzIDYmGzwJwA5gR4ToBvMCwigXF3vbzXAVJV3Y3b7R8YTZXEAnfV+/neb70Swi6LgEXAImARsAhYBCwCFgGLgEXAImARsAhYBL41BCCNwuXm9StEsS7AfQkoCwJgKQ2dic8gXqGAnhDyM4DotquL5+PSHAuAcuP6LQrnN2JWGJfRPPajEH36qx9X8x+T8ksEQPnP6wJm3BMQWExK+Cn3MRDgydX2z4v9UXI4ozZsNL0d4cLF16I860NWLbDMpb9v1kfp96gHMAFAOAkRCWIPPwoHzmGIvSRIjxIkzfcfG/8UPSdTAImUj5ydKBpSuG+Pq5nYkIgFgN2eUQwlOBTdm2yuclqBqzRCz+rMf/KKeggIMpbwcSXOSLEAlBqDSzPZIeIvndrC3qyUmAZdqlB1QYlapcWVolPNrUTRj8wBnO3DmV5+eO7Ks4JUCutsKFVZzl8bzUFkiER6gGl9QnCfEKxEIXh4eEg9Aa47jrNG3+dSHgGgJ6XseZ73oVKpRGb6cmNwQtnwIQlyZehU8y9MHUIAcJNDLnSmbfTkCzOGWq3WUjabZVfbnYbrTkBjbzgcMhBaTlpr4dLCcHCp5zAqjUazFAqBoMNTFls/SvlMJsMgPbXyLOluLpc7Y4OocnOSDiqVsnxDN/4UkQOcZS1+UHZN67DlyQ2LE1htqkcpBIt33qjTpTKt/uACvBwdAo2bL6rbSBQrx7V87/4gIV0gZpealyD26f8KxWTPdMWpanpH7ODgYJ0M8Dv9FQw5Vre2th6UDkpjxvlfViqJ7drCd+qZsAcYFxtVeT7oum7dVJ4UX2HG81CeeW9vb3eZJ1megX9YnIzV/0O1P+LSNrIVDrkMgB4iALvzUlyV5Y6nVpnII7gSjbXSAFBUOWxubp6OxXGKmznkVHJmSCRhNTYAJlEz+yZhOq090/C8NABocUflUPOIaSmXhA4nQyMHaB6RhMbYAFAHZro8OYFeg5MwnnQP8+RKYNCZAgB8e1LWGpcSZRHTrhl35AUXR0dHmjUmVTDuPCvO7TfzNGOeW2P13EZjoHunoRvvDbXCpeYNDT+UJodKC9VOzerkenvU+7+flZJp6JJn/kHlcVc9a84zqEye04VuVd0TDgHET+oGX6B2gL/5vs83rrHdLY1iSc6wLCyTuTcYlChLCvxs7gkBwNNVdZMrYIcvFupvnH3J3VYZ9SQCznIPy8CymBUh6AKNKZFr6BYZAvxjaBhCU6B2Lf86ShFujbk7pHhcnuP9oM/JmPOR2vqq8tFMY18FIPF1mInwQIQOt1SC6NM06KfnPQ26l7fUuKXLGmohIYWg2WB4XB4/EjOTIVFHhHqnltMy7SzdOw3t8l+374WDe8bZy3Y1/30Uvdg+ADx8TRpfqYcY1VLzthXE1zNbnKeCKZChPM0EvghP/hAn7qNj8ahQuCfEgxIB8hQl9M0b47ywCR5sslSyJb6i0r0TnmBTfXDEm867BS2xa0YdJWxQS6VoPdn73ygBY76z5QHx13Ztcf8xEsmfxlzn7Lm+CZoKSoQLx/ffJHmwSQTAPYNv9nHURPjheVw4y8Gb4VM+j4PoU7L+lPZ5PGWE2WMWAYuARcAiYBGwCFgELAIWAYuARcAiYBGwCHzFCPwLsA8NdWIPZnIAAAAASUVORK5CYII= - Subtype: 0 - ImageDataDark: - Data: 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cApwb/0bbm3sw+kT478oPH9rclDu+W/R+/6jbrjreVOyrTfOTX2FwR9VLb7lKADx2UZuWS4RymHwx5en95YKVXXfv7pfYDkVAvl9gNomGfij56b33poIbZHTmcid2KILcgpgaMflH2jvy3Qm+xNZZ5tj2xs8x+5V1TrwxBxDU7dcy5r21INQvKr1vlupfaiK2tDUlVkeCKqhwxo9BaAAaOgUQiCgS6DRAsApgK6eIQ4CBgpQAAzsFFJCQJcABUCXNHEQMFCAAmBgp5ASAroEKAC6pImDgIECFAADO4WUENAlQAHQJU0cBAwUoAAY2CmkhIAuAQqALmniIGCgAAXAwE4hJQR0CVAAdEkTBwEDBSgABnYKKSGgS4ACoEuaOAgYKEABMLBTSAkBXQIUAF3SxEHAQAEKgIGdQkoI6BKgAOiSJg4CBgpQAAzsFFJCQJcABUCXNHEQMFCAAmBgp5ASAroEKAC6pImDgIECFAADO4WUENAlQAHQJU0cBAwUaLgAJDpSLfFyCgOtSQmBWAUyTYzN0AKg3lZ32Z91fn2mL9atoHEEEGhKILs+VTc2vVNhDYUWAMtzT/obSbY5/WGN8jkCCOgXyHSmdvqjqtezXQnLIkoBCFSRVHtyH6cBYax8joB+gWTKCRYAx/lRWBahBaCUaX9Nval2Yr4h27ZzPQ+3D4Q1zOcIIKBPYM0T+QE74fTOR/Qs63I5mX4rLIPQAvDWC/aEeqf73/gbSmWT+1Zvzu8La5zPEUAgfoE1aiymO1KBnbJtuX8nYzcsemgBkAbK6exfq3c+X/I3ps43DkrVcR0r9A3DYUnwOQIINC6QzqXya7d0HUyrsVi39qViUo3ZCH+RB+/+wcLWqp38N9uyV/nb9VzrWmW2cnRmtvRB4UqJd8BHQGcRBJoVyKpLfcnVTm9HR2aHzMfJKXmgLc/zElZ12xsDnaeixIhcAKSx5wbnvm5Z9t9aKmqUxlkGAQQ0CqjBb1nen7050PZa1KgND2Q5Eqh5qR9ajvVg1CAshwACMQvY1qWEW3k26p5/PptIcwD+1G8FcN0v2VZNrg54t/7xhwAC+gXU2FMDcNyy3EPFRDryYb8/0YaPAPwrP/fduU1Wwtrpec4ez/Y2qWqyVb8CERFYYQLq7lzPsk/ZlneymM5Emu1fYUJsLgIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACDQv8P2Z1Nz/A0ThaAAAAAElFTkSuQmCC - Subtype: 0 -Name: SetFocus -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: 'Selector to reach the element to give focus. Examples: .warning to - scroll to focus element with the class warning, or .mx-name-textBox1 to focus - to a text box with the class mx-name-textBox1 (and name textBox1).' - IsRequired: true - Name: TargetSelector - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: Web -TypeParameters: null diff --git a/resources/App/modelsource/WebActions/TakePicture.JavaScriptActions$JavaScriptAction.yaml b/resources/App/modelsource/WebActions/TakePicture.JavaScriptActions$JavaScriptAction.yaml deleted file mode 100644 index 745ac00..0000000 --- a/resources/App/modelsource/WebActions/TakePicture.JavaScriptActions$JavaScriptAction.yaml +++ /dev/null @@ -1,61 +0,0 @@ -$Type: JavaScriptActions$JavaScriptAction -ActionDefaultReturnName: IsPictureTaken -Documentation: Take a picture using the device's camera. -Excluded: false -ExportLevel: Hidden -JavaReturnType: - $Type: CodeActions$BooleanType -MicroflowActionInfo: - $Type: CodeActions$MicroflowActionInfo - Caption: Take picture - Category: Web camera - IconData: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATOSURBVHhe7VpdUtRAEO7JLlZZBaILvsMNwAsIJ9AbqE8+uWFPwHICd/HJJ/UEwgnAE7ieQN5dBYq1tCohbXcgkJlENpn0bLDMVu0Dy0z/fD3TP18C0HwaBBoEGgQaBBoEGgT+VwSUC8c73Z++B9EWKLUiIh9xFIEa/Nid/yAiLyVEHIDl7mQbFPSlDY3lIfTHu/M7krJFAVj0j1fmYO6rpIGmrOB3a/X07d0jKR2elCCW04raTyXl5cmauxOK6hA9AZ3u2UdPqWsDI+yN3ywMqoDSeXW25Xnq9ZUMxP3x7oIYCKInQIHaSDurPHVYxXnee+6Fhgz1uKrM9H4xAOj+rykF968jBSffhvOjqsaeDh+MEOHkSg7peOhP1qrKTfaLAUD3X4s+pexPUkYioHYKMEJDl72m3BwQZ3Oce0eKKarqOqpl9Ajc/0RdJg+UsYPXIuwFKujRaToyt2ZOADvfxvZnquUb1s6TFon7nxibzQMlEVDwlAL6mX2bCkAL26+rOB4roDsrcf8TYzN5oKT/8XLKHXyqpwKglTEbRRcIiN3/xAQzD1iatmbuy+SAZX+C6UXj4bxor2BpuPW2af6IVQFrC2ve2ABQcwBqVz/THEBliDOxT15vUKJcSfgCRDyhNppmftw7V+F+Xr22RepW5ACuv8QTHNCofBxzBdRjpMmSuOzSb1SBBjxOL3XP3uXVbFsQbtrnPAcwO5Q0VkUdIECec+OyTJNg0T2265wCwOyQp3Bg1VjxYEVjcMwwOfw4A4Ajn0uNIRxGiFsBtFa5x+BvALAewfkLygVHGV/pyrg8CU6SYDJPpCMfJzoFO+PhzQRJxz/dUtjaNkdrGmbWbZJjLUmwHbX6pvOhCjenOc/R/zFcHIQKNk0OIK+Pl7gZ4leAo68871naOI48DzRFDT4lIgXVuc7+UpXgMlpURtF14gCYxCjf6yKRNw3mk0BT5WH693bUFq8K4gBQLX+SNhpB9YtGw1xHyXJfP0myfCDLFgeARsm1tNEtBV9sASAiZE8Hk7pH4Y84AFr2JmOrECNm1qfEevsBEA6Qc3HiJwCMZmbx5S/rqDHVriGQpseFoJEHANRR2rYqj7Ja4OkAAIyE/L4SIw4AlT2dDzSqQhkHFHr6HGBUhTKy/rZWHIDQCweaMmpgbHp5niXMpBcYVeFWAkCZ+8RsYGj23y7zOCt+zAZRXyuBiO9tZoFpIImfAFZIgwtNdvrzPPr7oMhJuOQPDnJmCdEXIxJgnADAkcrp5eP5ntier53u5Fn6RCz6v1bo0brPrFEef3A5S2jJdVpki/7fyTicKF/yz/rE9VUiNOiByM734YJ2HYo6x+tqGYcTA9lwIjp62nUoaD3zB0Sc9qo4X0SVkyuQVnwx3wfrGEXF3/CiKZD4g3WbKbKI0+k1zgFgZZwTvr+59zyAYJXpMK4SFxG+/HD3yL/Rcac1D+hNsE0XGT8PHKc5oGw0XKyvNQe4cEha5kyugLTRkvL+cQCQrvC0781wZXLAUndybJIakojXLct83yFzAgiRUd1GOtMf4Z4pOwNApo93Zs1sBVOJPaZpsjcVAK6/3LhE9GrZbE0soo16SqKcynzZcZJ8EEL4aFa9RRFPmjUNAg0CDQINAg0CDQL1I/AHY2gE0NxvZ4kAAAAASUVORK5CYII= - Subtype: 0 - IconDataDark: - Data: iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATNSURBVHhe7VpBchM7EFXLrphU/UW4QbgBcAHgBPmb71SxgSxiYIVzgpgTJLvPN4vAhqqEBfEJEk5AOAG+QVj8XziOraZbZlwjzfx4RtOKQzFT5U0ive5+anW3WlKq/moGagZqBmoGagZqBn5XBiCG4Zv/jF8iYBdArUvgo4IzVLj/Ybv1TgIvjSFOQLs/3gXAnrSijIcIvaPOyitJbFECNv/+vq6a+qukgj7WaGLuDF6sDqVkaCkgu0Jg/pTEy8NqAYjKkPWA/sVHBWquIE5x5+j5rf0qpLRf/9eFRnMvwUBjBkfPVsVIEPUA8oGHaWNRw2kV461X6aaDAQAPqmKm54sR8Ff/4q4CWJuDI3770GmdVVXWYhDWHIdkWFlCnxgBYCbu6iN+EtKRYFxPAuN6WhU5uTGAozk29AEodFe1hCSJ/Z+I8+NACTVmQ1Edq6nZOczJHhkPsKmsAZ+piHnouHRJqRL7fx74vDhQUhVyIArMZJO1zfuyW6Ch96oYPmNcZv8numbiQGkGeBfBGnv1YgJSaSxEzsx+yf2faFE9o9gt7X2ZGLD55gLTYw63W6K1QiipofMW2SOWBUIVXPa8moBlr8Cy5V9rDNg4wLXW5eXLnyXz+rxfQFmDz/yAeKwMDvLydShRNyIGcP5t9y9Obk3G59wr4BrDaZZQirJ1h4Z9Pk6334wP8nJ2KAlXzYseA7g7NC+sClpA6eopz2m/HnULTgkeFpUA7g4pjftBhRV7RQP2LEbELxoBvPJ5rTEqkk5pn3cVdXa4xuBfAy/vKTRbiGqYKVRoy8T0hChBMDlP+MdjqrBeHXWubpC0+6MuKbXrz1VTvBcSHJcTBBuq5xvQUJNHi4zn1ecxPNbvAeTV8RI7Q3wL2NUH/SStHK/8+84fZ0UV5rE8Jz2eswSn0aIYRceJE+A3RsmQYZGV9xXmORQTTtN/XxnLZwVxApRubnir3yu6GplxZjJwvUCL9gMZW5yAzJET1ZdQAgD1sTNX6KYpjSlOgJ/zqzRG/ahP2WE9lMz/mydPgLSGkfHECfCLmY2cPlxRmzLt73R7vCjIgnHiBJC8YVpmlassrcxdL6CeCdk9hxEnANG49wEanKxQxgBU2j0HGOVkhTJY1xYDxituqcsFTEgtPztLuEHP9guEP3EPGGzBN7+AAa12y1xnPe7/SxcyxqkfqGHyNuQssIgvcQJYIEzNll/La4UnRTyBV36qmif+WQImU9GHEQkxUU6DDG5PdQDza+1EIJfG9OvRddWXpEaw5weKFUh3/7Yz5H10hN4JKacZZjmnQRI8U9hkVo2LGXK7txrUZ1bOKsivSqgdlmc8Y4Qav8j9+f9RtkAi+HB7tcer52yHIlrxGG6U0lzGKDolZFxUAlghu3rUzKCOT+EXXrZrRHNirnxCVnQCWBBH78PO6lNug3E7zGaJVFVHBg+t0eTuo+bKbTL8UYyIn+ch0YJgiDvGmLO0IBjDmBiY17IFYiguhflrE0BPR/n56JW/BUxlY0B/dB50kSG1JJFx/PcOGQ/gS8rIOiwPHs2xLzxDQKaOX566opLptfm5mqqdhQTY/GsLF3padtM+Khb4AVKZnzUc8QQmeP+6aoubRlutT81AzUDNQM1AzUDNQD4DPwBsHCiVuUlmPwAAAABJRU5ErkJggg== - Subtype: 0 - ImageDataDark: - Data: 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 - Subtype: 0 -Name: TakePicture -Parameters: -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: This is required. - IsRequired: true - Name: Picture - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: "" - IsRequired: true - Name: showConfirmationScreen - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: "" - Description: The default picture quality is 'Medium'. - IsRequired: true - Name: pictureQuality - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: Custom picture quality - Description: The picture will be scaled to this maximum pixel width, while maintaining - the aspect ratio. - IsRequired: true - Name: maximumWidth - ParameterType: - $Type: CodeActions$BasicParameterType -- $Type: JavaScriptActions$JavaScriptActionParameter - Category: Custom picture quality - Description: The picture will be scaled to this maximum pixel height, while maintaining - the aspect ratio. - IsRequired: true - Name: maximumHeight - ParameterType: - $Type: CodeActions$BasicParameterType -Platform: Web -TypeParameters: null diff --git a/resources/App/mprcontents/00/ef/00efe87a-0a71-474f-b76a-26e6263128fb.mxunit b/resources/App/mprcontents/00/ef/00efe87a-0a71-474f-b76a-26e6263128fb.mxunit new file mode 100644 index 0000000..e9abf27 Binary files /dev/null and b/resources/App/mprcontents/00/ef/00efe87a-0a71-474f-b76a-26e6263128fb.mxunit differ diff --git a/resources/App/mprcontents/02/6d/026db7bf-560a-4a14-9f17-1c078b73dac0.mxunit b/resources/App/mprcontents/02/6d/026db7bf-560a-4a14-9f17-1c078b73dac0.mxunit new file mode 100644 index 0000000..922b9f5 Binary files /dev/null and b/resources/App/mprcontents/02/6d/026db7bf-560a-4a14-9f17-1c078b73dac0.mxunit differ diff --git a/resources/App/mprcontents/02/b8/02b8bebf-1012-429c-a2d7-fd8352825e65.mxunit b/resources/App/mprcontents/02/b8/02b8bebf-1012-429c-a2d7-fd8352825e65.mxunit new file mode 100644 index 0000000..15a3e40 Binary files /dev/null and b/resources/App/mprcontents/02/b8/02b8bebf-1012-429c-a2d7-fd8352825e65.mxunit differ diff --git a/resources/App/mprcontents/03/4a/034a07b7-cf74-44ab-9774-6c2a91472873.mxunit b/resources/App/mprcontents/03/4a/034a07b7-cf74-44ab-9774-6c2a91472873.mxunit new file mode 100644 index 0000000..11952ae Binary files /dev/null and b/resources/App/mprcontents/03/4a/034a07b7-cf74-44ab-9774-6c2a91472873.mxunit differ diff --git a/resources/App/mprcontents/03/a3/03a32720-ebb1-4405-b33c-2a99c3286495.mxunit b/resources/App/mprcontents/03/a3/03a32720-ebb1-4405-b33c-2a99c3286495.mxunit new file mode 100644 index 0000000..29cd938 Binary files /dev/null and b/resources/App/mprcontents/03/a3/03a32720-ebb1-4405-b33c-2a99c3286495.mxunit differ diff --git a/resources/App/mprcontents/03/fd/03fd7ac4-6b1f-4a1d-a943-8b8f04e95632.mxunit b/resources/App/mprcontents/03/fd/03fd7ac4-6b1f-4a1d-a943-8b8f04e95632.mxunit new file mode 100644 index 0000000..4e43ae1 Binary files /dev/null and b/resources/App/mprcontents/03/fd/03fd7ac4-6b1f-4a1d-a943-8b8f04e95632.mxunit differ diff --git a/resources/App/mprcontents/05/ca/05ca8577-8aba-46ec-b595-39c44e88a052.mxunit b/resources/App/mprcontents/05/ca/05ca8577-8aba-46ec-b595-39c44e88a052.mxunit new file mode 100644 index 0000000..bc88f9f Binary files /dev/null and b/resources/App/mprcontents/05/ca/05ca8577-8aba-46ec-b595-39c44e88a052.mxunit differ diff --git a/resources/App/mprcontents/07/13/0713beb1-4622-41e5-b94c-659a69e1b1d1.mxunit b/resources/App/mprcontents/07/13/0713beb1-4622-41e5-b94c-659a69e1b1d1.mxunit new file mode 100644 index 0000000..89c26aa Binary files /dev/null and b/resources/App/mprcontents/07/13/0713beb1-4622-41e5-b94c-659a69e1b1d1.mxunit differ diff --git a/resources/App/mprcontents/08/71/08719f4c-7728-4987-9d4d-5a3ed0f481e4.mxunit b/resources/App/mprcontents/08/71/08719f4c-7728-4987-9d4d-5a3ed0f481e4.mxunit new file mode 100644 index 0000000..d8be08a Binary files /dev/null and b/resources/App/mprcontents/08/71/08719f4c-7728-4987-9d4d-5a3ed0f481e4.mxunit differ diff --git a/resources/App/mprcontents/0a/76/0a76e2c6-b8f8-45a8-8faa-21c16f76a1fc.mxunit b/resources/App/mprcontents/0a/76/0a76e2c6-b8f8-45a8-8faa-21c16f76a1fc.mxunit new file mode 100644 index 0000000..c948497 Binary files /dev/null and b/resources/App/mprcontents/0a/76/0a76e2c6-b8f8-45a8-8faa-21c16f76a1fc.mxunit differ diff --git a/resources/App/mprcontents/0a/e3/0ae3f6b8-86c7-4d78-ac40-2585dc4c0009.mxunit b/resources/App/mprcontents/0a/e3/0ae3f6b8-86c7-4d78-ac40-2585dc4c0009.mxunit new file mode 100644 index 0000000..1feca90 Binary files /dev/null and b/resources/App/mprcontents/0a/e3/0ae3f6b8-86c7-4d78-ac40-2585dc4c0009.mxunit differ diff --git a/resources/App/mprcontents/0a/fa/0afaefce-ced4-4bd3-bef7-496fc3749a2f.mxunit b/resources/App/mprcontents/0a/fa/0afaefce-ced4-4bd3-bef7-496fc3749a2f.mxunit new file mode 100644 index 0000000..b28f094 Binary files /dev/null and b/resources/App/mprcontents/0a/fa/0afaefce-ced4-4bd3-bef7-496fc3749a2f.mxunit differ diff --git a/resources/App/mprcontents/0b/58/0b586bd6-9a2c-4ceb-98ac-cc006e4e5573.mxunit b/resources/App/mprcontents/0b/58/0b586bd6-9a2c-4ceb-98ac-cc006e4e5573.mxunit new file mode 100644 index 0000000..217a05a Binary files /dev/null and b/resources/App/mprcontents/0b/58/0b586bd6-9a2c-4ceb-98ac-cc006e4e5573.mxunit differ diff --git a/resources/App/mprcontents/0b/b5/0bb53484-0006-473f-b450-3068ea5ae60d.mxunit b/resources/App/mprcontents/0b/b5/0bb53484-0006-473f-b450-3068ea5ae60d.mxunit new file mode 100644 index 0000000..9926b15 Binary files /dev/null and b/resources/App/mprcontents/0b/b5/0bb53484-0006-473f-b450-3068ea5ae60d.mxunit differ diff --git a/resources/App/mprcontents/0c/5b/0c5b01a9-367e-4d16-b3ac-249c4bbe4da6.mxunit b/resources/App/mprcontents/0c/5b/0c5b01a9-367e-4d16-b3ac-249c4bbe4da6.mxunit new file mode 100644 index 0000000..31fd41c Binary files /dev/null and b/resources/App/mprcontents/0c/5b/0c5b01a9-367e-4d16-b3ac-249c4bbe4da6.mxunit differ diff --git a/resources/App/mprcontents/0c/d7/0cd7ab6c-8192-422c-9c65-68509b109edc.mxunit b/resources/App/mprcontents/0c/d7/0cd7ab6c-8192-422c-9c65-68509b109edc.mxunit new file mode 100644 index 0000000..29ee611 Binary files /dev/null and b/resources/App/mprcontents/0c/d7/0cd7ab6c-8192-422c-9c65-68509b109edc.mxunit differ diff --git a/resources/App/mprcontents/0e/6a/0e6a6824-3595-476b-9588-3e605ffeaefe.mxunit b/resources/App/mprcontents/0e/6a/0e6a6824-3595-476b-9588-3e605ffeaefe.mxunit new file mode 100644 index 0000000..0639852 Binary files /dev/null and b/resources/App/mprcontents/0e/6a/0e6a6824-3595-476b-9588-3e605ffeaefe.mxunit differ diff --git a/resources/App/mprcontents/0f/64/0f642725-b6b2-4f06-9bd2-6e706fa95a1b.mxunit b/resources/App/mprcontents/0f/64/0f642725-b6b2-4f06-9bd2-6e706fa95a1b.mxunit new file mode 100644 index 0000000..5745427 Binary files /dev/null and b/resources/App/mprcontents/0f/64/0f642725-b6b2-4f06-9bd2-6e706fa95a1b.mxunit differ diff --git a/resources/App/mprcontents/11/46/114622e4-691f-44f2-bb15-d0acfe9f67e6.mxunit b/resources/App/mprcontents/11/46/114622e4-691f-44f2-bb15-d0acfe9f67e6.mxunit new file mode 100644 index 0000000..f223ba5 Binary files /dev/null and b/resources/App/mprcontents/11/46/114622e4-691f-44f2-bb15-d0acfe9f67e6.mxunit differ diff --git a/resources/App/mprcontents/11/f8/11f87af9-0d0d-4b92-b6e4-d1ef11b0d5e8.mxunit b/resources/App/mprcontents/11/f8/11f87af9-0d0d-4b92-b6e4-d1ef11b0d5e8.mxunit new file mode 100644 index 0000000..757e302 Binary files /dev/null and b/resources/App/mprcontents/11/f8/11f87af9-0d0d-4b92-b6e4-d1ef11b0d5e8.mxunit differ diff --git a/resources/App/mprcontents/12/9a/129a8287-0e35-4e57-a88a-cc61f0a0fa0f.mxunit b/resources/App/mprcontents/12/9a/129a8287-0e35-4e57-a88a-cc61f0a0fa0f.mxunit new file mode 100644 index 0000000..eb0f988 Binary files /dev/null and b/resources/App/mprcontents/12/9a/129a8287-0e35-4e57-a88a-cc61f0a0fa0f.mxunit differ diff --git a/resources/App/mprcontents/12/b7/12b7e910-59df-4c6e-beb4-fe6ef1e77e52.mxunit b/resources/App/mprcontents/12/b7/12b7e910-59df-4c6e-beb4-fe6ef1e77e52.mxunit new file mode 100644 index 0000000..062ed35 Binary files /dev/null and b/resources/App/mprcontents/12/b7/12b7e910-59df-4c6e-beb4-fe6ef1e77e52.mxunit differ diff --git a/resources/App/mprcontents/13/ef/13ef4b6d-b4a8-45c4-9ebd-6503d918400d.mxunit b/resources/App/mprcontents/13/ef/13ef4b6d-b4a8-45c4-9ebd-6503d918400d.mxunit new file mode 100644 index 0000000..9ad6788 Binary files /dev/null and b/resources/App/mprcontents/13/ef/13ef4b6d-b4a8-45c4-9ebd-6503d918400d.mxunit differ diff --git a/resources/App/mprcontents/14/29/1429f12a-7df1-4943-8c80-579a01e3ab7f.mxunit b/resources/App/mprcontents/14/29/1429f12a-7df1-4943-8c80-579a01e3ab7f.mxunit new file mode 100644 index 0000000..a70e04b Binary files /dev/null and b/resources/App/mprcontents/14/29/1429f12a-7df1-4943-8c80-579a01e3ab7f.mxunit differ diff --git a/resources/App/mprcontents/14/38/143809c5-b1ed-42db-a757-efae7186c21e.mxunit b/resources/App/mprcontents/14/38/143809c5-b1ed-42db-a757-efae7186c21e.mxunit new file mode 100644 index 0000000..1160ab8 Binary files /dev/null and b/resources/App/mprcontents/14/38/143809c5-b1ed-42db-a757-efae7186c21e.mxunit differ diff --git a/resources/App/mprcontents/14/61/1461ac65-d01a-4459-aa4c-580a597a6c2d.mxunit b/resources/App/mprcontents/14/61/1461ac65-d01a-4459-aa4c-580a597a6c2d.mxunit new file mode 100644 index 0000000..0e91a80 Binary files /dev/null and b/resources/App/mprcontents/14/61/1461ac65-d01a-4459-aa4c-580a597a6c2d.mxunit differ diff --git a/resources/App/mprcontents/14/82/148210cd-cabd-4c03-85fd-3ac73571c93a.mxunit b/resources/App/mprcontents/14/82/148210cd-cabd-4c03-85fd-3ac73571c93a.mxunit new file mode 100644 index 0000000..73c08ef Binary files /dev/null and b/resources/App/mprcontents/14/82/148210cd-cabd-4c03-85fd-3ac73571c93a.mxunit differ diff --git a/resources/App/mprcontents/16/1a/161ae22e-c93e-4669-bef9-52444bf0f2b7.mxunit b/resources/App/mprcontents/16/1a/161ae22e-c93e-4669-bef9-52444bf0f2b7.mxunit new file mode 100644 index 0000000..0c15856 Binary files /dev/null and b/resources/App/mprcontents/16/1a/161ae22e-c93e-4669-bef9-52444bf0f2b7.mxunit differ diff --git a/resources/App/mprcontents/16/74/16747dc6-b6b7-42ae-aabf-255dca2aeeaf.mxunit b/resources/App/mprcontents/16/74/16747dc6-b6b7-42ae-aabf-255dca2aeeaf.mxunit new file mode 100644 index 0000000..4a61b38 Binary files /dev/null and b/resources/App/mprcontents/16/74/16747dc6-b6b7-42ae-aabf-255dca2aeeaf.mxunit differ diff --git a/resources/App/mprcontents/17/a3/17a394bc-35b3-4c70-bed2-83d54c2dd913.mxunit b/resources/App/mprcontents/17/a3/17a394bc-35b3-4c70-bed2-83d54c2dd913.mxunit new file mode 100644 index 0000000..d4768e8 Binary files /dev/null and b/resources/App/mprcontents/17/a3/17a394bc-35b3-4c70-bed2-83d54c2dd913.mxunit differ diff --git a/resources/App/mprcontents/17/dd/17ddfbbe-a269-408e-bb2e-311384d20b1e.mxunit b/resources/App/mprcontents/17/dd/17ddfbbe-a269-408e-bb2e-311384d20b1e.mxunit new file mode 100644 index 0000000..bcbb999 Binary files /dev/null and b/resources/App/mprcontents/17/dd/17ddfbbe-a269-408e-bb2e-311384d20b1e.mxunit differ diff --git a/resources/App/mprcontents/18/bf/18bf8a2b-f70d-4136-9838-edc544aa6721.mxunit b/resources/App/mprcontents/18/bf/18bf8a2b-f70d-4136-9838-edc544aa6721.mxunit new file mode 100644 index 0000000..c248118 Binary files /dev/null and b/resources/App/mprcontents/18/bf/18bf8a2b-f70d-4136-9838-edc544aa6721.mxunit differ diff --git a/resources/App/mprcontents/19/ca/19ca6e76-e506-4a2c-a4e9-7c01181ce91b.mxunit b/resources/App/mprcontents/19/ca/19ca6e76-e506-4a2c-a4e9-7c01181ce91b.mxunit new file mode 100644 index 0000000..a933b67 Binary files /dev/null and b/resources/App/mprcontents/19/ca/19ca6e76-e506-4a2c-a4e9-7c01181ce91b.mxunit differ diff --git a/resources/App/mprcontents/1a/51/1a51db26-7364-4395-a43d-ccece6851c0b.mxunit b/resources/App/mprcontents/1a/51/1a51db26-7364-4395-a43d-ccece6851c0b.mxunit new file mode 100644 index 0000000..b8aa9dd Binary files /dev/null and b/resources/App/mprcontents/1a/51/1a51db26-7364-4395-a43d-ccece6851c0b.mxunit differ diff --git a/resources/App/mprcontents/1a/73/1a73a12b-d8c9-4555-acbf-fe5baf6afad3.mxunit b/resources/App/mprcontents/1a/73/1a73a12b-d8c9-4555-acbf-fe5baf6afad3.mxunit new file mode 100644 index 0000000..fff8bdb Binary files /dev/null and b/resources/App/mprcontents/1a/73/1a73a12b-d8c9-4555-acbf-fe5baf6afad3.mxunit differ diff --git a/resources/App/mprcontents/1a/a1/1aa1eca3-6e14-4cef-a241-0da2c8119a86.mxunit b/resources/App/mprcontents/1a/a1/1aa1eca3-6e14-4cef-a241-0da2c8119a86.mxunit new file mode 100644 index 0000000..293cfb3 Binary files /dev/null and b/resources/App/mprcontents/1a/a1/1aa1eca3-6e14-4cef-a241-0da2c8119a86.mxunit differ diff --git a/resources/App/mprcontents/1a/d0/1ad0bd7c-c6cc-49c7-9d53-fb2ea8ef3ad0.mxunit b/resources/App/mprcontents/1a/d0/1ad0bd7c-c6cc-49c7-9d53-fb2ea8ef3ad0.mxunit new file mode 100644 index 0000000..2bcb8ec Binary files /dev/null and b/resources/App/mprcontents/1a/d0/1ad0bd7c-c6cc-49c7-9d53-fb2ea8ef3ad0.mxunit differ diff --git a/resources/App/mprcontents/1a/fa/1afaaca6-51f4-4299-9ac8-0bbf6e13c7b9.mxunit b/resources/App/mprcontents/1a/fa/1afaaca6-51f4-4299-9ac8-0bbf6e13c7b9.mxunit new file mode 100644 index 0000000..6b176f9 Binary files /dev/null and b/resources/App/mprcontents/1a/fa/1afaaca6-51f4-4299-9ac8-0bbf6e13c7b9.mxunit differ diff --git a/resources/App/mprcontents/1f/cc/1fcc2823-c303-5a27-b6c7-78b04c96c88f.mxunit b/resources/App/mprcontents/1f/cc/1fcc2823-c303-5a27-b6c7-78b04c96c88f.mxunit new file mode 100644 index 0000000..9569061 Binary files /dev/null and b/resources/App/mprcontents/1f/cc/1fcc2823-c303-5a27-b6c7-78b04c96c88f.mxunit differ diff --git a/resources/App/mprcontents/21/a7/21a76e0a-dc16-4eba-a210-7eb973f99b64.mxunit b/resources/App/mprcontents/21/a7/21a76e0a-dc16-4eba-a210-7eb973f99b64.mxunit new file mode 100644 index 0000000..d1616db Binary files /dev/null and b/resources/App/mprcontents/21/a7/21a76e0a-dc16-4eba-a210-7eb973f99b64.mxunit differ diff --git a/resources/App/mprcontents/22/6c/226c39a5-593d-4582-a1b1-c3ee23118b0d.mxunit b/resources/App/mprcontents/22/6c/226c39a5-593d-4582-a1b1-c3ee23118b0d.mxunit new file mode 100644 index 0000000..6daf55f Binary files /dev/null and b/resources/App/mprcontents/22/6c/226c39a5-593d-4582-a1b1-c3ee23118b0d.mxunit differ diff --git a/resources/App/mprcontents/22/e4/22e423c9-21ec-47ea-9725-0f80e3fba202.mxunit b/resources/App/mprcontents/22/e4/22e423c9-21ec-47ea-9725-0f80e3fba202.mxunit new file mode 100644 index 0000000..7f9e8c6 Binary files /dev/null and b/resources/App/mprcontents/22/e4/22e423c9-21ec-47ea-9725-0f80e3fba202.mxunit differ diff --git a/resources/App/mprcontents/24/a0/24a0b711-9139-46e4-bd13-59ae8ae1bca5.mxunit b/resources/App/mprcontents/24/a0/24a0b711-9139-46e4-bd13-59ae8ae1bca5.mxunit new file mode 100644 index 0000000..d25ed96 Binary files /dev/null and b/resources/App/mprcontents/24/a0/24a0b711-9139-46e4-bd13-59ae8ae1bca5.mxunit differ diff --git a/resources/App/mprcontents/25/67/25670fb7-a936-4981-b169-dd572596b3a1.mxunit b/resources/App/mprcontents/25/67/25670fb7-a936-4981-b169-dd572596b3a1.mxunit new file mode 100644 index 0000000..941f281 Binary files /dev/null and b/resources/App/mprcontents/25/67/25670fb7-a936-4981-b169-dd572596b3a1.mxunit differ diff --git a/resources/App/mprcontents/26/1b/261b27f1-64ee-4958-b311-4758589dd4ad.mxunit b/resources/App/mprcontents/26/1b/261b27f1-64ee-4958-b311-4758589dd4ad.mxunit new file mode 100644 index 0000000..00b0c73 Binary files /dev/null and b/resources/App/mprcontents/26/1b/261b27f1-64ee-4958-b311-4758589dd4ad.mxunit differ diff --git a/resources/App/mprcontents/26/6a/266a4aa6-e224-4d65-9d5f-d5698fffc7a6.mxunit b/resources/App/mprcontents/26/6a/266a4aa6-e224-4d65-9d5f-d5698fffc7a6.mxunit new file mode 100644 index 0000000..12ccf28 Binary files /dev/null and b/resources/App/mprcontents/26/6a/266a4aa6-e224-4d65-9d5f-d5698fffc7a6.mxunit differ diff --git a/resources/App/mprcontents/27/08/2708cb26-836c-489a-b7f6-3ed19e4a4ca9.mxunit b/resources/App/mprcontents/27/08/2708cb26-836c-489a-b7f6-3ed19e4a4ca9.mxunit new file mode 100644 index 0000000..a2f31be Binary files /dev/null and b/resources/App/mprcontents/27/08/2708cb26-836c-489a-b7f6-3ed19e4a4ca9.mxunit differ diff --git a/resources/App/mprcontents/27/1b/271b43d3-893d-44c2-a92e-99da353c135e.mxunit b/resources/App/mprcontents/27/1b/271b43d3-893d-44c2-a92e-99da353c135e.mxunit new file mode 100644 index 0000000..26c2ffc Binary files /dev/null and b/resources/App/mprcontents/27/1b/271b43d3-893d-44c2-a92e-99da353c135e.mxunit differ diff --git a/resources/App/mprcontents/27/64/27643f56-87ad-45d8-a55c-9c4af1755615.mxunit b/resources/App/mprcontents/27/64/27643f56-87ad-45d8-a55c-9c4af1755615.mxunit new file mode 100644 index 0000000..674fefc Binary files /dev/null and b/resources/App/mprcontents/27/64/27643f56-87ad-45d8-a55c-9c4af1755615.mxunit differ diff --git a/resources/App/mprcontents/28/dc/28dc318d-8532-4143-a797-9159dedde93e.mxunit b/resources/App/mprcontents/28/dc/28dc318d-8532-4143-a797-9159dedde93e.mxunit new file mode 100644 index 0000000..8d04e8e Binary files /dev/null and b/resources/App/mprcontents/28/dc/28dc318d-8532-4143-a797-9159dedde93e.mxunit differ diff --git a/resources/App/mprcontents/29/18/29189391-e84c-423c-ae75-d560c98267d6.mxunit b/resources/App/mprcontents/29/18/29189391-e84c-423c-ae75-d560c98267d6.mxunit new file mode 100644 index 0000000..3aad835 Binary files /dev/null and b/resources/App/mprcontents/29/18/29189391-e84c-423c-ae75-d560c98267d6.mxunit differ diff --git a/resources/App/mprcontents/29/7f/297f1082-47f6-47b5-a570-a36538d63642.mxunit b/resources/App/mprcontents/29/7f/297f1082-47f6-47b5-a570-a36538d63642.mxunit new file mode 100644 index 0000000..db24a2d Binary files /dev/null and b/resources/App/mprcontents/29/7f/297f1082-47f6-47b5-a570-a36538d63642.mxunit differ diff --git a/resources/App/mprcontents/29/ca/29ca2381-4a73-431c-8a03-ced6b5ca47ac.mxunit b/resources/App/mprcontents/29/ca/29ca2381-4a73-431c-8a03-ced6b5ca47ac.mxunit new file mode 100644 index 0000000..6beb96c Binary files /dev/null and b/resources/App/mprcontents/29/ca/29ca2381-4a73-431c-8a03-ced6b5ca47ac.mxunit differ diff --git a/resources/App/mprcontents/2a/36/2a362b17-1f7a-4428-bd10-90420a8ad1e5.mxunit b/resources/App/mprcontents/2a/36/2a362b17-1f7a-4428-bd10-90420a8ad1e5.mxunit new file mode 100644 index 0000000..1bb1715 Binary files /dev/null and b/resources/App/mprcontents/2a/36/2a362b17-1f7a-4428-bd10-90420a8ad1e5.mxunit differ diff --git a/resources/App/mprcontents/2a/a2/2aa207e0-a059-4752-b72f-d35c337cc1db.mxunit b/resources/App/mprcontents/2a/a2/2aa207e0-a059-4752-b72f-d35c337cc1db.mxunit new file mode 100644 index 0000000..a768a15 Binary files /dev/null and b/resources/App/mprcontents/2a/a2/2aa207e0-a059-4752-b72f-d35c337cc1db.mxunit differ diff --git a/resources/App/mprcontents/2c/e6/2ce6c8eb-8f4c-4ded-9a51-e6db399af49a.mxunit b/resources/App/mprcontents/2c/e6/2ce6c8eb-8f4c-4ded-9a51-e6db399af49a.mxunit new file mode 100644 index 0000000..4cd58bc Binary files /dev/null and b/resources/App/mprcontents/2c/e6/2ce6c8eb-8f4c-4ded-9a51-e6db399af49a.mxunit differ diff --git a/resources/App/mprcontents/2c/f2/2cf270a8-d304-4309-b615-5ada8b1d5f01.mxunit b/resources/App/mprcontents/2c/f2/2cf270a8-d304-4309-b615-5ada8b1d5f01.mxunit new file mode 100644 index 0000000..5d0aeee Binary files /dev/null and b/resources/App/mprcontents/2c/f2/2cf270a8-d304-4309-b615-5ada8b1d5f01.mxunit differ diff --git a/resources/App/mprcontents/2e/54/2e54d810-c0ed-464a-afcb-e8a33fb0cbe8.mxunit b/resources/App/mprcontents/2e/54/2e54d810-c0ed-464a-afcb-e8a33fb0cbe8.mxunit new file mode 100644 index 0000000..500b9cc Binary files /dev/null and b/resources/App/mprcontents/2e/54/2e54d810-c0ed-464a-afcb-e8a33fb0cbe8.mxunit differ diff --git a/resources/App/mprcontents/2e/c0/2ec04fd8-23d5-4178-be20-c388699469a9.mxunit b/resources/App/mprcontents/2e/c0/2ec04fd8-23d5-4178-be20-c388699469a9.mxunit new file mode 100644 index 0000000..a7c7533 Binary files /dev/null and b/resources/App/mprcontents/2e/c0/2ec04fd8-23d5-4178-be20-c388699469a9.mxunit differ diff --git a/resources/App/mprcontents/2e/c7/2ec75954-657e-4c30-9b35-ac305faa4a93.mxunit b/resources/App/mprcontents/2e/c7/2ec75954-657e-4c30-9b35-ac305faa4a93.mxunit new file mode 100644 index 0000000..f98078b Binary files /dev/null and b/resources/App/mprcontents/2e/c7/2ec75954-657e-4c30-9b35-ac305faa4a93.mxunit differ diff --git a/resources/App/mprcontents/30/15/301519f3-4259-427d-9d6b-9b17cc3dd96d.mxunit b/resources/App/mprcontents/30/15/301519f3-4259-427d-9d6b-9b17cc3dd96d.mxunit new file mode 100644 index 0000000..4f3d13a Binary files /dev/null and b/resources/App/mprcontents/30/15/301519f3-4259-427d-9d6b-9b17cc3dd96d.mxunit differ diff --git a/resources/App/mprcontents/30/6b/306b00ba-b646-4c51-aac4-b8c6ae74bd4f.mxunit b/resources/App/mprcontents/30/6b/306b00ba-b646-4c51-aac4-b8c6ae74bd4f.mxunit new file mode 100644 index 0000000..12494fc Binary files /dev/null and b/resources/App/mprcontents/30/6b/306b00ba-b646-4c51-aac4-b8c6ae74bd4f.mxunit differ diff --git a/resources/App/mprcontents/32/7f/327f654c-9b53-434d-90ad-df02f787a2ff.mxunit b/resources/App/mprcontents/32/7f/327f654c-9b53-434d-90ad-df02f787a2ff.mxunit new file mode 100644 index 0000000..86ba9c1 Binary files /dev/null and b/resources/App/mprcontents/32/7f/327f654c-9b53-434d-90ad-df02f787a2ff.mxunit differ diff --git a/resources/App/mprcontents/34/14/341428f3-e2be-490e-86c8-a2b6764b62c2.mxunit b/resources/App/mprcontents/34/14/341428f3-e2be-490e-86c8-a2b6764b62c2.mxunit new file mode 100644 index 0000000..bec95a8 Binary files /dev/null and b/resources/App/mprcontents/34/14/341428f3-e2be-490e-86c8-a2b6764b62c2.mxunit differ diff --git a/resources/App/mprcontents/36/8f/368fb3a6-1155-4845-b425-f8a7de00f6be.mxunit b/resources/App/mprcontents/36/8f/368fb3a6-1155-4845-b425-f8a7de00f6be.mxunit new file mode 100644 index 0000000..09fbd7d Binary files /dev/null and b/resources/App/mprcontents/36/8f/368fb3a6-1155-4845-b425-f8a7de00f6be.mxunit differ diff --git a/resources/App/mprcontents/37/98/3798c374-fff5-4a92-ba0d-3ad0f0d8b716.mxunit b/resources/App/mprcontents/37/98/3798c374-fff5-4a92-ba0d-3ad0f0d8b716.mxunit new file mode 100644 index 0000000..53ef9bf Binary files /dev/null and b/resources/App/mprcontents/37/98/3798c374-fff5-4a92-ba0d-3ad0f0d8b716.mxunit differ diff --git a/resources/App/mprcontents/39/54/3954a9f6-6050-47d1-97db-9051c283eea3.mxunit b/resources/App/mprcontents/39/54/3954a9f6-6050-47d1-97db-9051c283eea3.mxunit new file mode 100644 index 0000000..37ffca2 Binary files /dev/null and b/resources/App/mprcontents/39/54/3954a9f6-6050-47d1-97db-9051c283eea3.mxunit differ diff --git a/resources/App/mprcontents/39/58/39582ae1-689a-4b5d-a0fe-861d48f2bcfa.mxunit b/resources/App/mprcontents/39/58/39582ae1-689a-4b5d-a0fe-861d48f2bcfa.mxunit new file mode 100644 index 0000000..07fc8d3 Binary files /dev/null and b/resources/App/mprcontents/39/58/39582ae1-689a-4b5d-a0fe-861d48f2bcfa.mxunit differ diff --git a/resources/App/mprcontents/39/b3/39b3fecc-ae17-4049-9dfd-fa1480e3d697.mxunit b/resources/App/mprcontents/39/b3/39b3fecc-ae17-4049-9dfd-fa1480e3d697.mxunit new file mode 100644 index 0000000..105b516 Binary files /dev/null and b/resources/App/mprcontents/39/b3/39b3fecc-ae17-4049-9dfd-fa1480e3d697.mxunit differ diff --git a/resources/App/mprcontents/3b/17/3b17a484-feaf-4f1b-91d0-8cd5f723f19f.mxunit b/resources/App/mprcontents/3b/17/3b17a484-feaf-4f1b-91d0-8cd5f723f19f.mxunit new file mode 100644 index 0000000..dec13fc Binary files /dev/null and b/resources/App/mprcontents/3b/17/3b17a484-feaf-4f1b-91d0-8cd5f723f19f.mxunit differ diff --git a/resources/App/mprcontents/3b/a0/3ba0c74a-cecf-4d9f-81db-829dc1581246.mxunit b/resources/App/mprcontents/3b/a0/3ba0c74a-cecf-4d9f-81db-829dc1581246.mxunit new file mode 100644 index 0000000..9ed3684 Binary files /dev/null and b/resources/App/mprcontents/3b/a0/3ba0c74a-cecf-4d9f-81db-829dc1581246.mxunit differ diff --git a/resources/App/mprcontents/3c/48/3c483316-5885-4e83-8e68-9e6c03e1a0ea.mxunit b/resources/App/mprcontents/3c/48/3c483316-5885-4e83-8e68-9e6c03e1a0ea.mxunit new file mode 100644 index 0000000..cecb9f1 Binary files /dev/null and b/resources/App/mprcontents/3c/48/3c483316-5885-4e83-8e68-9e6c03e1a0ea.mxunit differ diff --git a/resources/App/mprcontents/3d/11/3d1111f6-fa18-4cfe-971b-6bfd233c24fa.mxunit b/resources/App/mprcontents/3d/11/3d1111f6-fa18-4cfe-971b-6bfd233c24fa.mxunit new file mode 100644 index 0000000..f0b8ba1 Binary files /dev/null and b/resources/App/mprcontents/3d/11/3d1111f6-fa18-4cfe-971b-6bfd233c24fa.mxunit differ diff --git a/resources/App/mprcontents/3d/96/3d96819d-c400-4491-a655-24c14ae205cf.mxunit b/resources/App/mprcontents/3d/96/3d96819d-c400-4491-a655-24c14ae205cf.mxunit new file mode 100644 index 0000000..74e2a92 Binary files /dev/null and b/resources/App/mprcontents/3d/96/3d96819d-c400-4491-a655-24c14ae205cf.mxunit differ diff --git a/resources/App/mprcontents/3e/b9/3eb98efb-631a-4f9e-a13b-a34009b9c624.mxunit b/resources/App/mprcontents/3e/b9/3eb98efb-631a-4f9e-a13b-a34009b9c624.mxunit new file mode 100644 index 0000000..4210400 Binary files /dev/null and b/resources/App/mprcontents/3e/b9/3eb98efb-631a-4f9e-a13b-a34009b9c624.mxunit differ diff --git a/resources/App/mprcontents/3f/64/3f64baa2-b85c-4999-9a3c-3cc38382eb54.mxunit b/resources/App/mprcontents/3f/64/3f64baa2-b85c-4999-9a3c-3cc38382eb54.mxunit new file mode 100644 index 0000000..7901692 Binary files /dev/null and b/resources/App/mprcontents/3f/64/3f64baa2-b85c-4999-9a3c-3cc38382eb54.mxunit differ diff --git a/resources/App/mprcontents/3f/96/3f9640e7-bb82-4fc0-b35b-30ef7223aae1.mxunit b/resources/App/mprcontents/3f/96/3f9640e7-bb82-4fc0-b35b-30ef7223aae1.mxunit new file mode 100644 index 0000000..586fa0a Binary files /dev/null and b/resources/App/mprcontents/3f/96/3f9640e7-bb82-4fc0-b35b-30ef7223aae1.mxunit differ diff --git a/resources/App/mprcontents/3f/c5/3fc52f74-964f-4958-a50d-7139d784f4a7.mxunit b/resources/App/mprcontents/3f/c5/3fc52f74-964f-4958-a50d-7139d784f4a7.mxunit new file mode 100644 index 0000000..73564b0 Binary files /dev/null and b/resources/App/mprcontents/3f/c5/3fc52f74-964f-4958-a50d-7139d784f4a7.mxunit differ diff --git a/resources/App/mprcontents/40/66/4066e511-1172-4e62-92d0-4605af33a88e.mxunit b/resources/App/mprcontents/40/66/4066e511-1172-4e62-92d0-4605af33a88e.mxunit new file mode 100644 index 0000000..788dd5d Binary files /dev/null and b/resources/App/mprcontents/40/66/4066e511-1172-4e62-92d0-4605af33a88e.mxunit differ diff --git a/resources/App/mprcontents/42/33/4233fb7a-9d54-494a-9308-570833dfd946.mxunit b/resources/App/mprcontents/42/33/4233fb7a-9d54-494a-9308-570833dfd946.mxunit new file mode 100644 index 0000000..e69cd61 Binary files /dev/null and b/resources/App/mprcontents/42/33/4233fb7a-9d54-494a-9308-570833dfd946.mxunit differ diff --git a/resources/App/mprcontents/42/f1/42f136dd-b87f-4893-8af4-8a8904c7faf0.mxunit b/resources/App/mprcontents/42/f1/42f136dd-b87f-4893-8af4-8a8904c7faf0.mxunit new file mode 100644 index 0000000..0a98c15 Binary files /dev/null and b/resources/App/mprcontents/42/f1/42f136dd-b87f-4893-8af4-8a8904c7faf0.mxunit differ diff --git a/resources/App/mprcontents/43/8e/438e2835-5476-4fab-96a3-5ed0c2efcf56.mxunit b/resources/App/mprcontents/43/8e/438e2835-5476-4fab-96a3-5ed0c2efcf56.mxunit new file mode 100644 index 0000000..d684ca1 Binary files /dev/null and b/resources/App/mprcontents/43/8e/438e2835-5476-4fab-96a3-5ed0c2efcf56.mxunit differ diff --git a/resources/App/mprcontents/49/68/49689bba-7a1b-4940-a2af-3dd5e4704176.mxunit b/resources/App/mprcontents/49/68/49689bba-7a1b-4940-a2af-3dd5e4704176.mxunit new file mode 100644 index 0000000..6b79eea Binary files /dev/null and b/resources/App/mprcontents/49/68/49689bba-7a1b-4940-a2af-3dd5e4704176.mxunit differ diff --git a/resources/App/mprcontents/4a/76/4a7608d1-ded0-4298-ad6f-63a769f8727c.mxunit b/resources/App/mprcontents/4a/76/4a7608d1-ded0-4298-ad6f-63a769f8727c.mxunit new file mode 100644 index 0000000..bf04fed Binary files /dev/null and b/resources/App/mprcontents/4a/76/4a7608d1-ded0-4298-ad6f-63a769f8727c.mxunit differ diff --git a/resources/App/mprcontents/4a/84/4a8475b3-14cb-4100-8963-58f2fd3a0be8.mxunit b/resources/App/mprcontents/4a/84/4a8475b3-14cb-4100-8963-58f2fd3a0be8.mxunit new file mode 100644 index 0000000..ebab414 Binary files /dev/null and b/resources/App/mprcontents/4a/84/4a8475b3-14cb-4100-8963-58f2fd3a0be8.mxunit differ diff --git a/resources/App/mprcontents/4c/59/4c595520-aff3-4113-97aa-7ee44d6f53c0.mxunit b/resources/App/mprcontents/4c/59/4c595520-aff3-4113-97aa-7ee44d6f53c0.mxunit new file mode 100644 index 0000000..827d911 Binary files /dev/null and b/resources/App/mprcontents/4c/59/4c595520-aff3-4113-97aa-7ee44d6f53c0.mxunit differ diff --git a/resources/App/mprcontents/4c/af/4cafaf47-e4e0-41c1-91ff-ef146ffa8516.mxunit b/resources/App/mprcontents/4c/af/4cafaf47-e4e0-41c1-91ff-ef146ffa8516.mxunit new file mode 100644 index 0000000..d8cb3eb Binary files /dev/null and b/resources/App/mprcontents/4c/af/4cafaf47-e4e0-41c1-91ff-ef146ffa8516.mxunit differ diff --git a/resources/App/mprcontents/4c/cc/4ccc7ba4-93e3-4a13-8d2c-eee6e132f8a5.mxunit b/resources/App/mprcontents/4c/cc/4ccc7ba4-93e3-4a13-8d2c-eee6e132f8a5.mxunit new file mode 100644 index 0000000..208abeb Binary files /dev/null and b/resources/App/mprcontents/4c/cc/4ccc7ba4-93e3-4a13-8d2c-eee6e132f8a5.mxunit differ diff --git a/resources/App/mprcontents/4d/e1/4de1b8f9-2843-4255-a33d-cca1e42e173e.mxunit b/resources/App/mprcontents/4d/e1/4de1b8f9-2843-4255-a33d-cca1e42e173e.mxunit new file mode 100644 index 0000000..6bbde6d Binary files /dev/null and b/resources/App/mprcontents/4d/e1/4de1b8f9-2843-4255-a33d-cca1e42e173e.mxunit differ diff --git a/resources/App/mprcontents/4e/70/4e70063d-53e1-477a-ab92-6b763330c293.mxunit b/resources/App/mprcontents/4e/70/4e70063d-53e1-477a-ab92-6b763330c293.mxunit new file mode 100644 index 0000000..f5ce07c Binary files /dev/null and b/resources/App/mprcontents/4e/70/4e70063d-53e1-477a-ab92-6b763330c293.mxunit differ diff --git a/resources/App/mprcontents/4f/10/4f102865-77b0-444b-8766-560c8cccf147.mxunit b/resources/App/mprcontents/4f/10/4f102865-77b0-444b-8766-560c8cccf147.mxunit new file mode 100644 index 0000000..b928c8a Binary files /dev/null and b/resources/App/mprcontents/4f/10/4f102865-77b0-444b-8766-560c8cccf147.mxunit differ diff --git a/resources/App/mprcontents/4f/12/4f12b7b1-2b9e-4556-8157-2cbf1d5e7a10.mxunit b/resources/App/mprcontents/4f/12/4f12b7b1-2b9e-4556-8157-2cbf1d5e7a10.mxunit new file mode 100644 index 0000000..b42cefd Binary files /dev/null and b/resources/App/mprcontents/4f/12/4f12b7b1-2b9e-4556-8157-2cbf1d5e7a10.mxunit differ diff --git a/resources/App/mprcontents/50/cc/50cc4067-e0d5-444f-ae30-2353627b0409.mxunit b/resources/App/mprcontents/50/cc/50cc4067-e0d5-444f-ae30-2353627b0409.mxunit new file mode 100644 index 0000000..1eb414a Binary files /dev/null and b/resources/App/mprcontents/50/cc/50cc4067-e0d5-444f-ae30-2353627b0409.mxunit differ diff --git a/resources/App/mprcontents/50/d5/50d544c7-4890-4e54-b913-d8cdff06c6bf.mxunit b/resources/App/mprcontents/50/d5/50d544c7-4890-4e54-b913-d8cdff06c6bf.mxunit new file mode 100644 index 0000000..54d8dca Binary files /dev/null and b/resources/App/mprcontents/50/d5/50d544c7-4890-4e54-b913-d8cdff06c6bf.mxunit differ diff --git a/resources/App/mprcontents/52/c3/52c3a70d-6cfd-4b52-9fe8-851ae6d6cfc9.mxunit b/resources/App/mprcontents/52/c3/52c3a70d-6cfd-4b52-9fe8-851ae6d6cfc9.mxunit new file mode 100644 index 0000000..d049571 Binary files /dev/null and b/resources/App/mprcontents/52/c3/52c3a70d-6cfd-4b52-9fe8-851ae6d6cfc9.mxunit differ diff --git a/resources/App/mprcontents/55/57/55578f2f-31c5-4d33-ba85-dda6bd60232b.mxunit b/resources/App/mprcontents/55/57/55578f2f-31c5-4d33-ba85-dda6bd60232b.mxunit new file mode 100644 index 0000000..ad8c90a Binary files /dev/null and b/resources/App/mprcontents/55/57/55578f2f-31c5-4d33-ba85-dda6bd60232b.mxunit differ diff --git a/resources/App/mprcontents/55/82/55824636-b5d8-4c97-b808-6c06dd050c9a.mxunit b/resources/App/mprcontents/55/82/55824636-b5d8-4c97-b808-6c06dd050c9a.mxunit new file mode 100644 index 0000000..1312033 Binary files /dev/null and b/resources/App/mprcontents/55/82/55824636-b5d8-4c97-b808-6c06dd050c9a.mxunit differ diff --git a/resources/App/mprcontents/56/1c/561c7c6a-1fd4-4404-9c93-ba824abeb060.mxunit b/resources/App/mprcontents/56/1c/561c7c6a-1fd4-4404-9c93-ba824abeb060.mxunit new file mode 100644 index 0000000..aae26a6 Binary files /dev/null and b/resources/App/mprcontents/56/1c/561c7c6a-1fd4-4404-9c93-ba824abeb060.mxunit differ diff --git a/resources/App/mprcontents/56/88/56883e31-5742-435d-8136-e0ff82b94bde.mxunit b/resources/App/mprcontents/56/88/56883e31-5742-435d-8136-e0ff82b94bde.mxunit new file mode 100644 index 0000000..b64e946 Binary files /dev/null and b/resources/App/mprcontents/56/88/56883e31-5742-435d-8136-e0ff82b94bde.mxunit differ diff --git a/resources/App/mprcontents/56/c3/56c3739b-88d9-4968-9ef5-ea1246db6ac4.mxunit b/resources/App/mprcontents/56/c3/56c3739b-88d9-4968-9ef5-ea1246db6ac4.mxunit new file mode 100644 index 0000000..7f3ef2e Binary files /dev/null and b/resources/App/mprcontents/56/c3/56c3739b-88d9-4968-9ef5-ea1246db6ac4.mxunit differ diff --git a/resources/App/mprcontents/57/d2/57d2ecb5-6c2f-4ffa-a0b3-a37a40da3adf.mxunit b/resources/App/mprcontents/57/d2/57d2ecb5-6c2f-4ffa-a0b3-a37a40da3adf.mxunit new file mode 100644 index 0000000..fc5ebe8 Binary files /dev/null and b/resources/App/mprcontents/57/d2/57d2ecb5-6c2f-4ffa-a0b3-a37a40da3adf.mxunit differ diff --git a/resources/App/mprcontents/58/d6/58d6e6d7-e937-4e2b-8759-891ff039627a.mxunit b/resources/App/mprcontents/58/d6/58d6e6d7-e937-4e2b-8759-891ff039627a.mxunit new file mode 100644 index 0000000..3194dfe Binary files /dev/null and b/resources/App/mprcontents/58/d6/58d6e6d7-e937-4e2b-8759-891ff039627a.mxunit differ diff --git a/resources/App/mprcontents/59/73/5973b1b6-2dce-4ffb-bbc5-77ef85735a64.mxunit b/resources/App/mprcontents/59/73/5973b1b6-2dce-4ffb-bbc5-77ef85735a64.mxunit new file mode 100644 index 0000000..dc57822 Binary files /dev/null and b/resources/App/mprcontents/59/73/5973b1b6-2dce-4ffb-bbc5-77ef85735a64.mxunit differ diff --git a/resources/App/mprcontents/5a/72/5a72bcab-7e51-464b-a891-804c86fa4e8a.mxunit b/resources/App/mprcontents/5a/72/5a72bcab-7e51-464b-a891-804c86fa4e8a.mxunit new file mode 100644 index 0000000..b6b0a74 Binary files /dev/null and b/resources/App/mprcontents/5a/72/5a72bcab-7e51-464b-a891-804c86fa4e8a.mxunit differ diff --git a/resources/App/mprcontents/5a/fc/5afc73e9-6a23-40af-a219-1a4a37a06650.mxunit b/resources/App/mprcontents/5a/fc/5afc73e9-6a23-40af-a219-1a4a37a06650.mxunit new file mode 100644 index 0000000..4319b8b Binary files /dev/null and b/resources/App/mprcontents/5a/fc/5afc73e9-6a23-40af-a219-1a4a37a06650.mxunit differ diff --git a/resources/App/mprcontents/5c/35/5c35e640-9857-4459-94ce-cf72a890ff8a.mxunit b/resources/App/mprcontents/5c/35/5c35e640-9857-4459-94ce-cf72a890ff8a.mxunit new file mode 100644 index 0000000..1194f92 Binary files /dev/null and b/resources/App/mprcontents/5c/35/5c35e640-9857-4459-94ce-cf72a890ff8a.mxunit differ diff --git a/resources/App/mprcontents/5c/af/5caf4583-6fd7-41cf-8a95-4b77ee62b82a.mxunit b/resources/App/mprcontents/5c/af/5caf4583-6fd7-41cf-8a95-4b77ee62b82a.mxunit new file mode 100644 index 0000000..b0f7094 Binary files /dev/null and b/resources/App/mprcontents/5c/af/5caf4583-6fd7-41cf-8a95-4b77ee62b82a.mxunit differ diff --git a/resources/App/mprcontents/5d/6d/5d6db297-c7f3-4ec5-964b-bc20dbeecdb8.mxunit b/resources/App/mprcontents/5d/6d/5d6db297-c7f3-4ec5-964b-bc20dbeecdb8.mxunit new file mode 100644 index 0000000..d9624cc Binary files /dev/null and b/resources/App/mprcontents/5d/6d/5d6db297-c7f3-4ec5-964b-bc20dbeecdb8.mxunit differ diff --git a/resources/App/mprcontents/5d/df/5ddf4a9f-7554-473e-87c9-bca3deaf42a6.mxunit b/resources/App/mprcontents/5d/df/5ddf4a9f-7554-473e-87c9-bca3deaf42a6.mxunit new file mode 100644 index 0000000..833aa3c Binary files /dev/null and b/resources/App/mprcontents/5d/df/5ddf4a9f-7554-473e-87c9-bca3deaf42a6.mxunit differ diff --git a/resources/App/mprcontents/5e/30/5e30c595-7ed8-4be8-97f2-b4d11433e464.mxunit b/resources/App/mprcontents/5e/30/5e30c595-7ed8-4be8-97f2-b4d11433e464.mxunit new file mode 100644 index 0000000..7fbc402 Binary files /dev/null and b/resources/App/mprcontents/5e/30/5e30c595-7ed8-4be8-97f2-b4d11433e464.mxunit differ diff --git a/resources/App/mprcontents/5f/85/5f85da9e-4582-4f32-ab11-49fedf652999.mxunit b/resources/App/mprcontents/5f/85/5f85da9e-4582-4f32-ab11-49fedf652999.mxunit new file mode 100644 index 0000000..7623507 Binary files /dev/null and b/resources/App/mprcontents/5f/85/5f85da9e-4582-4f32-ab11-49fedf652999.mxunit differ diff --git a/resources/App/mprcontents/5f/9c/5f9c51cc-9646-4885-9717-3556498ed9f9.mxunit b/resources/App/mprcontents/5f/9c/5f9c51cc-9646-4885-9717-3556498ed9f9.mxunit new file mode 100644 index 0000000..4fe5c17 Binary files /dev/null and b/resources/App/mprcontents/5f/9c/5f9c51cc-9646-4885-9717-3556498ed9f9.mxunit differ diff --git a/resources/App/mprcontents/60/c8/60c87733-80fb-409d-8bd3-ca97327f0aa0.mxunit b/resources/App/mprcontents/60/c8/60c87733-80fb-409d-8bd3-ca97327f0aa0.mxunit new file mode 100644 index 0000000..fdcfa9d Binary files /dev/null and b/resources/App/mprcontents/60/c8/60c87733-80fb-409d-8bd3-ca97327f0aa0.mxunit differ diff --git a/resources/App/mprcontents/61/7e/617ebc16-aac7-4986-a328-367d65267d9b.mxunit b/resources/App/mprcontents/61/7e/617ebc16-aac7-4986-a328-367d65267d9b.mxunit new file mode 100644 index 0000000..b78efe6 Binary files /dev/null and b/resources/App/mprcontents/61/7e/617ebc16-aac7-4986-a328-367d65267d9b.mxunit differ diff --git a/resources/App/mprcontents/61/e0/61e015d4-bb39-4ac9-8fa7-d9b30155f8f2.mxunit b/resources/App/mprcontents/61/e0/61e015d4-bb39-4ac9-8fa7-d9b30155f8f2.mxunit new file mode 100644 index 0000000..28584be Binary files /dev/null and b/resources/App/mprcontents/61/e0/61e015d4-bb39-4ac9-8fa7-d9b30155f8f2.mxunit differ diff --git a/resources/App/mprcontents/62/a5/62a50345-65cd-47fe-bb9a-f81d00a45c2c.mxunit b/resources/App/mprcontents/62/a5/62a50345-65cd-47fe-bb9a-f81d00a45c2c.mxunit new file mode 100644 index 0000000..d12c740 Binary files /dev/null and b/resources/App/mprcontents/62/a5/62a50345-65cd-47fe-bb9a-f81d00a45c2c.mxunit differ diff --git a/resources/App/mprcontents/64/06/6406ab7d-52ca-4df0-bb2a-f3943251a331.mxunit b/resources/App/mprcontents/64/06/6406ab7d-52ca-4df0-bb2a-f3943251a331.mxunit new file mode 100644 index 0000000..2b01c01 Binary files /dev/null and b/resources/App/mprcontents/64/06/6406ab7d-52ca-4df0-bb2a-f3943251a331.mxunit differ diff --git a/resources/App/mprcontents/66/76/66769be5-e8b8-494e-a873-1d01c8ff7121.mxunit b/resources/App/mprcontents/66/76/66769be5-e8b8-494e-a873-1d01c8ff7121.mxunit new file mode 100644 index 0000000..4176440 Binary files /dev/null and b/resources/App/mprcontents/66/76/66769be5-e8b8-494e-a873-1d01c8ff7121.mxunit differ diff --git a/resources/App/mprcontents/67/0b/670bb1f1-28ba-4c97-b6e5-45d617988f6e.mxunit b/resources/App/mprcontents/67/0b/670bb1f1-28ba-4c97-b6e5-45d617988f6e.mxunit new file mode 100644 index 0000000..831617e Binary files /dev/null and b/resources/App/mprcontents/67/0b/670bb1f1-28ba-4c97-b6e5-45d617988f6e.mxunit differ diff --git a/resources/App/mprcontents/67/7e/677eeb1f-1f59-4c38-9b29-d1f84a939248.mxunit b/resources/App/mprcontents/67/7e/677eeb1f-1f59-4c38-9b29-d1f84a939248.mxunit new file mode 100644 index 0000000..6592804 Binary files /dev/null and b/resources/App/mprcontents/67/7e/677eeb1f-1f59-4c38-9b29-d1f84a939248.mxunit differ diff --git a/resources/App/mprcontents/68/ac/68ac1578-b430-4e70-93b5-ecf45f1d001e.mxunit b/resources/App/mprcontents/68/ac/68ac1578-b430-4e70-93b5-ecf45f1d001e.mxunit new file mode 100644 index 0000000..a045ba5 Binary files /dev/null and b/resources/App/mprcontents/68/ac/68ac1578-b430-4e70-93b5-ecf45f1d001e.mxunit differ diff --git a/resources/App/mprcontents/68/fa/68fa8f91-ad7d-459f-b224-81cc0df70763.mxunit b/resources/App/mprcontents/68/fa/68fa8f91-ad7d-459f-b224-81cc0df70763.mxunit new file mode 100644 index 0000000..601f13f Binary files /dev/null and b/resources/App/mprcontents/68/fa/68fa8f91-ad7d-459f-b224-81cc0df70763.mxunit differ diff --git a/resources/App/mprcontents/69/05/69058e0f-45ea-4935-8f37-58b6741233c5.mxunit b/resources/App/mprcontents/69/05/69058e0f-45ea-4935-8f37-58b6741233c5.mxunit new file mode 100644 index 0000000..225e116 Binary files /dev/null and b/resources/App/mprcontents/69/05/69058e0f-45ea-4935-8f37-58b6741233c5.mxunit differ diff --git a/resources/App/mprcontents/6b/27/6b276d4e-27d1-4913-8ef8-7cb38e03a716.mxunit b/resources/App/mprcontents/6b/27/6b276d4e-27d1-4913-8ef8-7cb38e03a716.mxunit new file mode 100644 index 0000000..72e7a27 Binary files /dev/null and b/resources/App/mprcontents/6b/27/6b276d4e-27d1-4913-8ef8-7cb38e03a716.mxunit differ diff --git a/resources/App/mprcontents/6c/e2/6ce271bd-7e09-436c-b777-4eb6aeee7291.mxunit b/resources/App/mprcontents/6c/e2/6ce271bd-7e09-436c-b777-4eb6aeee7291.mxunit new file mode 100644 index 0000000..51eb391 Binary files /dev/null and b/resources/App/mprcontents/6c/e2/6ce271bd-7e09-436c-b777-4eb6aeee7291.mxunit differ diff --git a/resources/App/mprcontents/6f/07/6f07212d-817e-4967-807e-e4f8b1d4303a.mxunit b/resources/App/mprcontents/6f/07/6f07212d-817e-4967-807e-e4f8b1d4303a.mxunit new file mode 100644 index 0000000..e689dc4 Binary files /dev/null and b/resources/App/mprcontents/6f/07/6f07212d-817e-4967-807e-e4f8b1d4303a.mxunit differ diff --git a/resources/App/mprcontents/6f/d6/6fd663e0-8450-47d6-8c85-c98af939e2ec.mxunit b/resources/App/mprcontents/6f/d6/6fd663e0-8450-47d6-8c85-c98af939e2ec.mxunit new file mode 100644 index 0000000..0e35f8c Binary files /dev/null and b/resources/App/mprcontents/6f/d6/6fd663e0-8450-47d6-8c85-c98af939e2ec.mxunit differ diff --git a/resources/App/mprcontents/70/54/70546d89-30b5-40a7-a996-f61dd03964d9.mxunit b/resources/App/mprcontents/70/54/70546d89-30b5-40a7-a996-f61dd03964d9.mxunit new file mode 100644 index 0000000..9425830 Binary files /dev/null and b/resources/App/mprcontents/70/54/70546d89-30b5-40a7-a996-f61dd03964d9.mxunit differ diff --git a/resources/App/mprcontents/70/7b/707bcd24-d79e-461c-8610-0db0a57d1035.mxunit b/resources/App/mprcontents/70/7b/707bcd24-d79e-461c-8610-0db0a57d1035.mxunit new file mode 100644 index 0000000..17b25d4 Binary files /dev/null and b/resources/App/mprcontents/70/7b/707bcd24-d79e-461c-8610-0db0a57d1035.mxunit differ diff --git a/resources/App/mprcontents/71/63/7163ed0d-2605-4a8f-9ec7-cb9dd0066c92.mxunit b/resources/App/mprcontents/71/63/7163ed0d-2605-4a8f-9ec7-cb9dd0066c92.mxunit new file mode 100644 index 0000000..2d05cca Binary files /dev/null and b/resources/App/mprcontents/71/63/7163ed0d-2605-4a8f-9ec7-cb9dd0066c92.mxunit differ diff --git a/resources/App/mprcontents/71/d5/71d53e38-4eee-4844-a87d-d7366112be0b.mxunit b/resources/App/mprcontents/71/d5/71d53e38-4eee-4844-a87d-d7366112be0b.mxunit new file mode 100644 index 0000000..22f5a72 Binary files /dev/null and b/resources/App/mprcontents/71/d5/71d53e38-4eee-4844-a87d-d7366112be0b.mxunit differ diff --git a/resources/App/mprcontents/72/b0/72b02043-4676-4bde-ae04-f1c61a2c8194.mxunit b/resources/App/mprcontents/72/b0/72b02043-4676-4bde-ae04-f1c61a2c8194.mxunit new file mode 100644 index 0000000..a2fbbb0 Binary files /dev/null and b/resources/App/mprcontents/72/b0/72b02043-4676-4bde-ae04-f1c61a2c8194.mxunit differ diff --git a/resources/App/mprcontents/73/81/7381a1bf-72ad-4712-9de5-eba8b52e3d28.mxunit b/resources/App/mprcontents/73/81/7381a1bf-72ad-4712-9de5-eba8b52e3d28.mxunit new file mode 100644 index 0000000..242d983 Binary files /dev/null and b/resources/App/mprcontents/73/81/7381a1bf-72ad-4712-9de5-eba8b52e3d28.mxunit differ diff --git a/resources/App/mprcontents/73/b0/73b03502-f37b-4991-8573-31c77751528a.mxunit b/resources/App/mprcontents/73/b0/73b03502-f37b-4991-8573-31c77751528a.mxunit new file mode 100644 index 0000000..bee7392 Binary files /dev/null and b/resources/App/mprcontents/73/b0/73b03502-f37b-4991-8573-31c77751528a.mxunit differ diff --git a/resources/App/mprcontents/75/50/75509d9e-8212-4244-a28b-4cd651c08016.mxunit b/resources/App/mprcontents/75/50/75509d9e-8212-4244-a28b-4cd651c08016.mxunit new file mode 100644 index 0000000..92fd1cd Binary files /dev/null and b/resources/App/mprcontents/75/50/75509d9e-8212-4244-a28b-4cd651c08016.mxunit differ diff --git a/resources/App/mprcontents/75/c5/75c51a30-68f3-4d1a-82ff-0974c0ceb653.mxunit b/resources/App/mprcontents/75/c5/75c51a30-68f3-4d1a-82ff-0974c0ceb653.mxunit new file mode 100644 index 0000000..3c7dea6 Binary files /dev/null and b/resources/App/mprcontents/75/c5/75c51a30-68f3-4d1a-82ff-0974c0ceb653.mxunit differ diff --git a/resources/App/mprcontents/77/7b/777becc9-89f9-429d-a0eb-a9a458619c0e.mxunit b/resources/App/mprcontents/77/7b/777becc9-89f9-429d-a0eb-a9a458619c0e.mxunit new file mode 100644 index 0000000..4be9b6a Binary files /dev/null and b/resources/App/mprcontents/77/7b/777becc9-89f9-429d-a0eb-a9a458619c0e.mxunit differ diff --git a/resources/App/mprcontents/79/1e/791e998b-965f-4de3-af2b-fef3f92a487c.mxunit b/resources/App/mprcontents/79/1e/791e998b-965f-4de3-af2b-fef3f92a487c.mxunit new file mode 100644 index 0000000..2e3b0f2 Binary files /dev/null and b/resources/App/mprcontents/79/1e/791e998b-965f-4de3-af2b-fef3f92a487c.mxunit differ diff --git a/resources/App/mprcontents/79/b6/79b61234-494e-4641-a425-0dc8a1380b51.mxunit b/resources/App/mprcontents/79/b6/79b61234-494e-4641-a425-0dc8a1380b51.mxunit new file mode 100644 index 0000000..8659343 Binary files /dev/null and b/resources/App/mprcontents/79/b6/79b61234-494e-4641-a425-0dc8a1380b51.mxunit differ diff --git a/resources/App/mprcontents/7a/32/7a327cab-2820-40ad-8e86-164db4ea51d3.mxunit b/resources/App/mprcontents/7a/32/7a327cab-2820-40ad-8e86-164db4ea51d3.mxunit new file mode 100644 index 0000000..bdc2f06 Binary files /dev/null and b/resources/App/mprcontents/7a/32/7a327cab-2820-40ad-8e86-164db4ea51d3.mxunit differ diff --git a/resources/App/mprcontents/7b/22/7b22940f-b2dd-43e1-9a0b-25011a7e1b33.mxunit b/resources/App/mprcontents/7b/22/7b22940f-b2dd-43e1-9a0b-25011a7e1b33.mxunit new file mode 100644 index 0000000..9507b00 Binary files /dev/null and b/resources/App/mprcontents/7b/22/7b22940f-b2dd-43e1-9a0b-25011a7e1b33.mxunit differ diff --git a/resources/App/mprcontents/7c/02/7c02cb9a-55ff-4e73-bbcd-ea4024df60a8.mxunit b/resources/App/mprcontents/7c/02/7c02cb9a-55ff-4e73-bbcd-ea4024df60a8.mxunit new file mode 100644 index 0000000..ad41d30 Binary files /dev/null and b/resources/App/mprcontents/7c/02/7c02cb9a-55ff-4e73-bbcd-ea4024df60a8.mxunit differ diff --git a/resources/App/mprcontents/7c/16/7c1606c3-2787-4eef-8948-19b71b1d0434.mxunit b/resources/App/mprcontents/7c/16/7c1606c3-2787-4eef-8948-19b71b1d0434.mxunit new file mode 100644 index 0000000..c0b2ad1 Binary files /dev/null and b/resources/App/mprcontents/7c/16/7c1606c3-2787-4eef-8948-19b71b1d0434.mxunit differ diff --git a/resources/App/mprcontents/7c/fb/7cfb9f70-8913-47df-b1be-0cfd2796fd48.mxunit b/resources/App/mprcontents/7c/fb/7cfb9f70-8913-47df-b1be-0cfd2796fd48.mxunit new file mode 100644 index 0000000..ae2d0f7 Binary files /dev/null and b/resources/App/mprcontents/7c/fb/7cfb9f70-8913-47df-b1be-0cfd2796fd48.mxunit differ diff --git a/resources/App/mprcontents/7d/0f/7d0fc640-30bc-4eb1-8a2a-10cc49709357.mxunit b/resources/App/mprcontents/7d/0f/7d0fc640-30bc-4eb1-8a2a-10cc49709357.mxunit new file mode 100644 index 0000000..6d7c27a Binary files /dev/null and b/resources/App/mprcontents/7d/0f/7d0fc640-30bc-4eb1-8a2a-10cc49709357.mxunit differ diff --git a/resources/App/mprcontents/7d/ab/7dabee89-b6e8-4fee-8c97-751302c58237.mxunit b/resources/App/mprcontents/7d/ab/7dabee89-b6e8-4fee-8c97-751302c58237.mxunit new file mode 100644 index 0000000..b23fb28 Binary files /dev/null and b/resources/App/mprcontents/7d/ab/7dabee89-b6e8-4fee-8c97-751302c58237.mxunit differ diff --git a/resources/App/mprcontents/7e/00/7e009f57-b1bc-4a01-a2d3-bf4544e340cd.mxunit b/resources/App/mprcontents/7e/00/7e009f57-b1bc-4a01-a2d3-bf4544e340cd.mxunit new file mode 100644 index 0000000..51a09a8 Binary files /dev/null and b/resources/App/mprcontents/7e/00/7e009f57-b1bc-4a01-a2d3-bf4544e340cd.mxunit differ diff --git a/resources/App/mprcontents/7e/0a/7e0a32d2-be5c-4ade-8382-edb1f9a092db.mxunit b/resources/App/mprcontents/7e/0a/7e0a32d2-be5c-4ade-8382-edb1f9a092db.mxunit new file mode 100644 index 0000000..0ca611f Binary files /dev/null and b/resources/App/mprcontents/7e/0a/7e0a32d2-be5c-4ade-8382-edb1f9a092db.mxunit differ diff --git a/resources/App/mprcontents/7f/1d/7f1db668-3cf9-419f-90b1-ad3eadf7f2b4.mxunit b/resources/App/mprcontents/7f/1d/7f1db668-3cf9-419f-90b1-ad3eadf7f2b4.mxunit new file mode 100644 index 0000000..a37bbe3 Binary files /dev/null and b/resources/App/mprcontents/7f/1d/7f1db668-3cf9-419f-90b1-ad3eadf7f2b4.mxunit differ diff --git a/resources/App/mprcontents/82/c0/82c0048a-8107-45cf-8d69-7905e46f18dc.mxunit b/resources/App/mprcontents/82/c0/82c0048a-8107-45cf-8d69-7905e46f18dc.mxunit new file mode 100644 index 0000000..0f7681c Binary files /dev/null and b/resources/App/mprcontents/82/c0/82c0048a-8107-45cf-8d69-7905e46f18dc.mxunit differ diff --git a/resources/App/mprcontents/82/d1/82d165a8-16a6-48ad-8da9-588682ea7954.mxunit b/resources/App/mprcontents/82/d1/82d165a8-16a6-48ad-8da9-588682ea7954.mxunit new file mode 100644 index 0000000..cdbceff Binary files /dev/null and b/resources/App/mprcontents/82/d1/82d165a8-16a6-48ad-8da9-588682ea7954.mxunit differ diff --git a/resources/App/mprcontents/82/df/82dfed13-e9bb-457a-8648-7ef7b2b377e1.mxunit b/resources/App/mprcontents/82/df/82dfed13-e9bb-457a-8648-7ef7b2b377e1.mxunit new file mode 100644 index 0000000..273e26f Binary files /dev/null and b/resources/App/mprcontents/82/df/82dfed13-e9bb-457a-8648-7ef7b2b377e1.mxunit differ diff --git a/resources/App/mprcontents/83/ac/83ac9da3-18de-48d1-8eef-2beece10c17e.mxunit b/resources/App/mprcontents/83/ac/83ac9da3-18de-48d1-8eef-2beece10c17e.mxunit new file mode 100644 index 0000000..c0db2d7 Binary files /dev/null and b/resources/App/mprcontents/83/ac/83ac9da3-18de-48d1-8eef-2beece10c17e.mxunit differ diff --git a/resources/App/mprcontents/84/77/84776610-13b2-48cb-a265-d5e984d63129.mxunit b/resources/App/mprcontents/84/77/84776610-13b2-48cb-a265-d5e984d63129.mxunit new file mode 100644 index 0000000..3b083bb Binary files /dev/null and b/resources/App/mprcontents/84/77/84776610-13b2-48cb-a265-d5e984d63129.mxunit differ diff --git a/resources/App/mprcontents/85/39/853974ed-2f42-4501-96df-b2c01daec346.mxunit b/resources/App/mprcontents/85/39/853974ed-2f42-4501-96df-b2c01daec346.mxunit new file mode 100644 index 0000000..01342f0 Binary files /dev/null and b/resources/App/mprcontents/85/39/853974ed-2f42-4501-96df-b2c01daec346.mxunit differ diff --git a/resources/App/mprcontents/87/c0/87c034b7-b78f-4dcb-a421-f89b537ae4a9.mxunit b/resources/App/mprcontents/87/c0/87c034b7-b78f-4dcb-a421-f89b537ae4a9.mxunit new file mode 100644 index 0000000..ea15f4e Binary files /dev/null and b/resources/App/mprcontents/87/c0/87c034b7-b78f-4dcb-a421-f89b537ae4a9.mxunit differ diff --git a/resources/App/mprcontents/87/dd/87dd3d37-729a-4bd4-91ae-862271213f53.mxunit b/resources/App/mprcontents/87/dd/87dd3d37-729a-4bd4-91ae-862271213f53.mxunit new file mode 100644 index 0000000..4957893 Binary files /dev/null and b/resources/App/mprcontents/87/dd/87dd3d37-729a-4bd4-91ae-862271213f53.mxunit differ diff --git a/resources/App/mprcontents/88/a9/88a971eb-18f0-42cf-b570-b455e6fc8622.mxunit b/resources/App/mprcontents/88/a9/88a971eb-18f0-42cf-b570-b455e6fc8622.mxunit new file mode 100644 index 0000000..66fb16a Binary files /dev/null and b/resources/App/mprcontents/88/a9/88a971eb-18f0-42cf-b570-b455e6fc8622.mxunit differ diff --git a/resources/App/mprcontents/89/f8/89f88d6c-fd37-4963-b6ab-276bfae9635a.mxunit b/resources/App/mprcontents/89/f8/89f88d6c-fd37-4963-b6ab-276bfae9635a.mxunit new file mode 100644 index 0000000..134ed32 Binary files /dev/null and b/resources/App/mprcontents/89/f8/89f88d6c-fd37-4963-b6ab-276bfae9635a.mxunit differ diff --git a/resources/App/mprcontents/8a/23/8a23c5c4-f92a-4907-9042-b20c703e070c.mxunit b/resources/App/mprcontents/8a/23/8a23c5c4-f92a-4907-9042-b20c703e070c.mxunit new file mode 100644 index 0000000..c0b6a2f Binary files /dev/null and b/resources/App/mprcontents/8a/23/8a23c5c4-f92a-4907-9042-b20c703e070c.mxunit differ diff --git a/resources/App/mprcontents/8a/f2/8af27f67-3a88-4a0d-ba0c-4a46b7e7ae67.mxunit b/resources/App/mprcontents/8a/f2/8af27f67-3a88-4a0d-ba0c-4a46b7e7ae67.mxunit new file mode 100644 index 0000000..8ed4c3a Binary files /dev/null and b/resources/App/mprcontents/8a/f2/8af27f67-3a88-4a0d-ba0c-4a46b7e7ae67.mxunit differ diff --git a/resources/App/mprcontents/8c/05/8c050e75-37e8-4325-be9a-a4d9da22d948.mxunit b/resources/App/mprcontents/8c/05/8c050e75-37e8-4325-be9a-a4d9da22d948.mxunit new file mode 100644 index 0000000..230ef00 Binary files /dev/null and b/resources/App/mprcontents/8c/05/8c050e75-37e8-4325-be9a-a4d9da22d948.mxunit differ diff --git a/resources/App/mprcontents/8c/62/8c62c403-4a67-4887-bdbe-d9e8566db5e8.mxunit b/resources/App/mprcontents/8c/62/8c62c403-4a67-4887-bdbe-d9e8566db5e8.mxunit new file mode 100644 index 0000000..65e7ed4 Binary files /dev/null and b/resources/App/mprcontents/8c/62/8c62c403-4a67-4887-bdbe-d9e8566db5e8.mxunit differ diff --git a/resources/App/mprcontents/8c/9a/8c9a1f40-db5b-4f06-92ad-d551a86c05ba.mxunit b/resources/App/mprcontents/8c/9a/8c9a1f40-db5b-4f06-92ad-d551a86c05ba.mxunit new file mode 100644 index 0000000..3387645 Binary files /dev/null and b/resources/App/mprcontents/8c/9a/8c9a1f40-db5b-4f06-92ad-d551a86c05ba.mxunit differ diff --git a/resources/App/mprcontents/8c/a0/8ca040e0-87f1-455a-9133-8bdd758e80c3.mxunit b/resources/App/mprcontents/8c/a0/8ca040e0-87f1-455a-9133-8bdd758e80c3.mxunit new file mode 100644 index 0000000..eb8d365 Binary files /dev/null and b/resources/App/mprcontents/8c/a0/8ca040e0-87f1-455a-9133-8bdd758e80c3.mxunit differ diff --git a/resources/App/mprcontents/8c/bc/8cbc5266-a733-45e2-a489-b6ae463bd156.mxunit b/resources/App/mprcontents/8c/bc/8cbc5266-a733-45e2-a489-b6ae463bd156.mxunit new file mode 100644 index 0000000..cbfd03a Binary files /dev/null and b/resources/App/mprcontents/8c/bc/8cbc5266-a733-45e2-a489-b6ae463bd156.mxunit differ diff --git a/resources/App/mprcontents/8c/db/8cdb1586-9d91-42b8-87fd-8f1cf3587f24.mxunit b/resources/App/mprcontents/8c/db/8cdb1586-9d91-42b8-87fd-8f1cf3587f24.mxunit new file mode 100644 index 0000000..b4da997 Binary files /dev/null and b/resources/App/mprcontents/8c/db/8cdb1586-9d91-42b8-87fd-8f1cf3587f24.mxunit differ diff --git a/resources/App/mprcontents/8d/32/8d32ba4c-3459-47ce-8860-92ec631a52c4.mxunit b/resources/App/mprcontents/8d/32/8d32ba4c-3459-47ce-8860-92ec631a52c4.mxunit new file mode 100644 index 0000000..56132bf Binary files /dev/null and b/resources/App/mprcontents/8d/32/8d32ba4c-3459-47ce-8860-92ec631a52c4.mxunit differ diff --git a/resources/App/mprcontents/8e/87/8e8702a6-d569-4df6-a7da-0d61118b1ca6.mxunit b/resources/App/mprcontents/8e/87/8e8702a6-d569-4df6-a7da-0d61118b1ca6.mxunit new file mode 100644 index 0000000..4bb2040 Binary files /dev/null and b/resources/App/mprcontents/8e/87/8e8702a6-d569-4df6-a7da-0d61118b1ca6.mxunit differ diff --git a/resources/App/mprcontents/8e/e4/8ee4f63b-7fec-4c5a-a355-96ec10169227.mxunit b/resources/App/mprcontents/8e/e4/8ee4f63b-7fec-4c5a-a355-96ec10169227.mxunit new file mode 100644 index 0000000..3608c78 Binary files /dev/null and b/resources/App/mprcontents/8e/e4/8ee4f63b-7fec-4c5a-a355-96ec10169227.mxunit differ diff --git a/resources/App/mprcontents/8f/89/8f894d7c-f89f-4531-a70b-16ffa04ef801.mxunit b/resources/App/mprcontents/8f/89/8f894d7c-f89f-4531-a70b-16ffa04ef801.mxunit new file mode 100644 index 0000000..233f27d Binary files /dev/null and b/resources/App/mprcontents/8f/89/8f894d7c-f89f-4531-a70b-16ffa04ef801.mxunit differ diff --git a/resources/App/mprcontents/90/ca/90ca716c-a2a0-444b-919a-92be50a13f4d.mxunit b/resources/App/mprcontents/90/ca/90ca716c-a2a0-444b-919a-92be50a13f4d.mxunit new file mode 100644 index 0000000..955b7e3 Binary files /dev/null and b/resources/App/mprcontents/90/ca/90ca716c-a2a0-444b-919a-92be50a13f4d.mxunit differ diff --git a/resources/App/mprcontents/93/7b/937b1379-ee24-4f8a-a250-45bb6f21ecbe.mxunit b/resources/App/mprcontents/93/7b/937b1379-ee24-4f8a-a250-45bb6f21ecbe.mxunit new file mode 100644 index 0000000..88aeb2c Binary files /dev/null and b/resources/App/mprcontents/93/7b/937b1379-ee24-4f8a-a250-45bb6f21ecbe.mxunit differ diff --git a/resources/App/mprcontents/93/9b/939b729e-b9e3-4be7-ac90-b760bbee8866.mxunit b/resources/App/mprcontents/93/9b/939b729e-b9e3-4be7-ac90-b760bbee8866.mxunit new file mode 100644 index 0000000..77ded37 Binary files /dev/null and b/resources/App/mprcontents/93/9b/939b729e-b9e3-4be7-ac90-b760bbee8866.mxunit differ diff --git a/resources/App/mprcontents/94/94/9494f23d-b26b-4833-a332-f1799db96497.mxunit b/resources/App/mprcontents/94/94/9494f23d-b26b-4833-a332-f1799db96497.mxunit new file mode 100644 index 0000000..6efa677 Binary files /dev/null and b/resources/App/mprcontents/94/94/9494f23d-b26b-4833-a332-f1799db96497.mxunit differ diff --git a/resources/App/mprcontents/94/d1/94d18158-04f9-4bbf-ae73-17a535a2d95e.mxunit b/resources/App/mprcontents/94/d1/94d18158-04f9-4bbf-ae73-17a535a2d95e.mxunit new file mode 100644 index 0000000..3e1bee8 Binary files /dev/null and b/resources/App/mprcontents/94/d1/94d18158-04f9-4bbf-ae73-17a535a2d95e.mxunit differ diff --git a/resources/App/mprcontents/95/6f/956fbadc-37f1-4719-aef4-9441516cabad.mxunit b/resources/App/mprcontents/95/6f/956fbadc-37f1-4719-aef4-9441516cabad.mxunit new file mode 100644 index 0000000..9c50b63 Binary files /dev/null and b/resources/App/mprcontents/95/6f/956fbadc-37f1-4719-aef4-9441516cabad.mxunit differ diff --git a/resources/App/mprcontents/96/8d/968daf33-92da-4a33-9cd4-a737c8194506.mxunit b/resources/App/mprcontents/96/8d/968daf33-92da-4a33-9cd4-a737c8194506.mxunit new file mode 100644 index 0000000..4aadf2e Binary files /dev/null and b/resources/App/mprcontents/96/8d/968daf33-92da-4a33-9cd4-a737c8194506.mxunit differ diff --git a/resources/App/mprcontents/98/60/986015db-548d-4bc0-b5ce-00ef54612262.mxunit b/resources/App/mprcontents/98/60/986015db-548d-4bc0-b5ce-00ef54612262.mxunit new file mode 100644 index 0000000..8a5c068 Binary files /dev/null and b/resources/App/mprcontents/98/60/986015db-548d-4bc0-b5ce-00ef54612262.mxunit differ diff --git a/resources/App/mprcontents/99/58/99583648-1d72-49fe-a6e6-f244215016ec.mxunit b/resources/App/mprcontents/99/58/99583648-1d72-49fe-a6e6-f244215016ec.mxunit new file mode 100644 index 0000000..eee0996 Binary files /dev/null and b/resources/App/mprcontents/99/58/99583648-1d72-49fe-a6e6-f244215016ec.mxunit differ diff --git a/resources/App/mprcontents/9a/85/9a8573bd-755b-4f75-8475-06ee9ace010e.mxunit b/resources/App/mprcontents/9a/85/9a8573bd-755b-4f75-8475-06ee9ace010e.mxunit new file mode 100644 index 0000000..71034dc Binary files /dev/null and b/resources/App/mprcontents/9a/85/9a8573bd-755b-4f75-8475-06ee9ace010e.mxunit differ diff --git a/resources/App/mprcontents/9b/ac/9bac3712-d4d5-4bad-87bf-426a93693d19.mxunit b/resources/App/mprcontents/9b/ac/9bac3712-d4d5-4bad-87bf-426a93693d19.mxunit new file mode 100644 index 0000000..dd7ab5c Binary files /dev/null and b/resources/App/mprcontents/9b/ac/9bac3712-d4d5-4bad-87bf-426a93693d19.mxunit differ diff --git a/resources/App/mprcontents/9b/ea/9bea0e5d-dbb8-4d23-908c-9aa32a9a7885.mxunit b/resources/App/mprcontents/9b/ea/9bea0e5d-dbb8-4d23-908c-9aa32a9a7885.mxunit new file mode 100644 index 0000000..9849f42 Binary files /dev/null and b/resources/App/mprcontents/9b/ea/9bea0e5d-dbb8-4d23-908c-9aa32a9a7885.mxunit differ diff --git a/resources/App/mprcontents/9b/fc/9bfc14f9-8b46-4716-874c-5f1b9d183140.mxunit b/resources/App/mprcontents/9b/fc/9bfc14f9-8b46-4716-874c-5f1b9d183140.mxunit new file mode 100644 index 0000000..a1b56cd Binary files /dev/null and b/resources/App/mprcontents/9b/fc/9bfc14f9-8b46-4716-874c-5f1b9d183140.mxunit differ diff --git a/resources/App/mprcontents/9c/52/9c523131-df0e-4fdf-af63-fa6f61ba536e.mxunit b/resources/App/mprcontents/9c/52/9c523131-df0e-4fdf-af63-fa6f61ba536e.mxunit new file mode 100644 index 0000000..057ff99 Binary files /dev/null and b/resources/App/mprcontents/9c/52/9c523131-df0e-4fdf-af63-fa6f61ba536e.mxunit differ diff --git a/resources/App/mprcontents/9d/95/9d957600-4a62-48d8-b571-69bc4c62d9cb.mxunit b/resources/App/mprcontents/9d/95/9d957600-4a62-48d8-b571-69bc4c62d9cb.mxunit new file mode 100644 index 0000000..8c90611 Binary files /dev/null and b/resources/App/mprcontents/9d/95/9d957600-4a62-48d8-b571-69bc4c62d9cb.mxunit differ diff --git a/resources/App/mprcontents/9e/13/9e132b65-3dd1-456e-8eab-cfad3d47bdf3.mxunit b/resources/App/mprcontents/9e/13/9e132b65-3dd1-456e-8eab-cfad3d47bdf3.mxunit new file mode 100644 index 0000000..1f5a4aa Binary files /dev/null and b/resources/App/mprcontents/9e/13/9e132b65-3dd1-456e-8eab-cfad3d47bdf3.mxunit differ diff --git a/resources/App/mprcontents/9e/4d/9e4d56e2-d569-4bfa-bcde-4f891c9c9619.mxunit b/resources/App/mprcontents/9e/4d/9e4d56e2-d569-4bfa-bcde-4f891c9c9619.mxunit new file mode 100644 index 0000000..57170c1 Binary files /dev/null and b/resources/App/mprcontents/9e/4d/9e4d56e2-d569-4bfa-bcde-4f891c9c9619.mxunit differ diff --git a/resources/App/mprcontents/a0/07/a0074443-29fe-44e2-bd88-7b7254f344c1.mxunit b/resources/App/mprcontents/a0/07/a0074443-29fe-44e2-bd88-7b7254f344c1.mxunit new file mode 100644 index 0000000..e680328 Binary files /dev/null and b/resources/App/mprcontents/a0/07/a0074443-29fe-44e2-bd88-7b7254f344c1.mxunit differ diff --git a/resources/App/mprcontents/a0/14/a014108b-548e-4952-a36e-5e2dcdfd27ea.mxunit b/resources/App/mprcontents/a0/14/a014108b-548e-4952-a36e-5e2dcdfd27ea.mxunit new file mode 100644 index 0000000..c82ab12 Binary files /dev/null and b/resources/App/mprcontents/a0/14/a014108b-548e-4952-a36e-5e2dcdfd27ea.mxunit differ diff --git a/resources/App/mprcontents/a0/26/a02627f6-6617-4ae1-889b-46994ed067d8.mxunit b/resources/App/mprcontents/a0/26/a02627f6-6617-4ae1-889b-46994ed067d8.mxunit new file mode 100644 index 0000000..a38a237 Binary files /dev/null and b/resources/App/mprcontents/a0/26/a02627f6-6617-4ae1-889b-46994ed067d8.mxunit differ diff --git a/resources/App/mprcontents/a1/12/a1123d60-efc1-4cac-b648-74b6e7bf289d.mxunit b/resources/App/mprcontents/a1/12/a1123d60-efc1-4cac-b648-74b6e7bf289d.mxunit new file mode 100644 index 0000000..6b6878c Binary files /dev/null and b/resources/App/mprcontents/a1/12/a1123d60-efc1-4cac-b648-74b6e7bf289d.mxunit differ diff --git a/resources/App/mprcontents/a2/c1/a2c14364-46e3-4f9d-9a8d-79189f89979d.mxunit b/resources/App/mprcontents/a2/c1/a2c14364-46e3-4f9d-9a8d-79189f89979d.mxunit new file mode 100644 index 0000000..07feee3 Binary files /dev/null and b/resources/App/mprcontents/a2/c1/a2c14364-46e3-4f9d-9a8d-79189f89979d.mxunit differ diff --git a/resources/App/mprcontents/a2/c4/a2c4f448-5816-478f-bc53-1ba4e8b03bbb.mxunit b/resources/App/mprcontents/a2/c4/a2c4f448-5816-478f-bc53-1ba4e8b03bbb.mxunit new file mode 100644 index 0000000..e45d039 Binary files /dev/null and b/resources/App/mprcontents/a2/c4/a2c4f448-5816-478f-bc53-1ba4e8b03bbb.mxunit differ diff --git a/resources/App/mprcontents/a3/48/a3489798-453a-47c1-8bf7-b06f5b85d2e5.mxunit b/resources/App/mprcontents/a3/48/a3489798-453a-47c1-8bf7-b06f5b85d2e5.mxunit new file mode 100644 index 0000000..4233492 Binary files /dev/null and b/resources/App/mprcontents/a3/48/a3489798-453a-47c1-8bf7-b06f5b85d2e5.mxunit differ diff --git a/resources/App/mprcontents/a3/f7/a3f7d17e-6cf9-4192-b8b0-af07545901ad.mxunit b/resources/App/mprcontents/a3/f7/a3f7d17e-6cf9-4192-b8b0-af07545901ad.mxunit new file mode 100644 index 0000000..ed65731 Binary files /dev/null and b/resources/App/mprcontents/a3/f7/a3f7d17e-6cf9-4192-b8b0-af07545901ad.mxunit differ diff --git a/resources/App/mprcontents/a4/36/a4363a18-7ccc-4002-8950-8e8069ed6ee8.mxunit b/resources/App/mprcontents/a4/36/a4363a18-7ccc-4002-8950-8e8069ed6ee8.mxunit new file mode 100644 index 0000000..2c81334 Binary files /dev/null and b/resources/App/mprcontents/a4/36/a4363a18-7ccc-4002-8950-8e8069ed6ee8.mxunit differ diff --git a/resources/App/mprcontents/a4/4f/a44fad7a-b3c3-4d67-a971-2c520a2884fb.mxunit b/resources/App/mprcontents/a4/4f/a44fad7a-b3c3-4d67-a971-2c520a2884fb.mxunit new file mode 100644 index 0000000..08773b9 Binary files /dev/null and b/resources/App/mprcontents/a4/4f/a44fad7a-b3c3-4d67-a971-2c520a2884fb.mxunit differ diff --git a/resources/App/mprcontents/a4/d3/a4d34da5-2466-401f-ac3a-e01c335bf583.mxunit b/resources/App/mprcontents/a4/d3/a4d34da5-2466-401f-ac3a-e01c335bf583.mxunit new file mode 100644 index 0000000..10db4f0 Binary files /dev/null and b/resources/App/mprcontents/a4/d3/a4d34da5-2466-401f-ac3a-e01c335bf583.mxunit differ diff --git a/resources/App/mprcontents/a5/c9/a5c92844-ec95-477f-84b7-45d14107430b.mxunit b/resources/App/mprcontents/a5/c9/a5c92844-ec95-477f-84b7-45d14107430b.mxunit new file mode 100644 index 0000000..6c8dd06 Binary files /dev/null and b/resources/App/mprcontents/a5/c9/a5c92844-ec95-477f-84b7-45d14107430b.mxunit differ diff --git a/resources/App/mprcontents/a8/61/a8611ddd-ae29-4074-a231-492b4c1cf9eb.mxunit b/resources/App/mprcontents/a8/61/a8611ddd-ae29-4074-a231-492b4c1cf9eb.mxunit new file mode 100644 index 0000000..9d8c5f5 Binary files /dev/null and b/resources/App/mprcontents/a8/61/a8611ddd-ae29-4074-a231-492b4c1cf9eb.mxunit differ diff --git a/resources/App/mprcontents/a9/87/a987e84b-acd3-4084-855c-f72ba761c337.mxunit b/resources/App/mprcontents/a9/87/a987e84b-acd3-4084-855c-f72ba761c337.mxunit new file mode 100644 index 0000000..21c978d Binary files /dev/null and b/resources/App/mprcontents/a9/87/a987e84b-acd3-4084-855c-f72ba761c337.mxunit differ diff --git a/resources/App/mprcontents/a9/eb/a9eb36c4-e994-40fa-8f10-63341d468442.mxunit b/resources/App/mprcontents/a9/eb/a9eb36c4-e994-40fa-8f10-63341d468442.mxunit new file mode 100644 index 0000000..908e4c4 Binary files /dev/null and b/resources/App/mprcontents/a9/eb/a9eb36c4-e994-40fa-8f10-63341d468442.mxunit differ diff --git a/resources/App/mprcontents/aa/94/aa943f50-127f-451c-b6ea-8ed53a19928d.mxunit b/resources/App/mprcontents/aa/94/aa943f50-127f-451c-b6ea-8ed53a19928d.mxunit new file mode 100644 index 0000000..5eed8ea Binary files /dev/null and b/resources/App/mprcontents/aa/94/aa943f50-127f-451c-b6ea-8ed53a19928d.mxunit differ diff --git a/resources/App/mprcontents/ad/04/ad046995-408f-44c1-b9d0-9310eea5a905.mxunit b/resources/App/mprcontents/ad/04/ad046995-408f-44c1-b9d0-9310eea5a905.mxunit new file mode 100644 index 0000000..e95ffee Binary files /dev/null and b/resources/App/mprcontents/ad/04/ad046995-408f-44c1-b9d0-9310eea5a905.mxunit differ diff --git a/resources/App/mprcontents/ae/a5/aea5c369-a393-40c5-9c7d-23501e958df2.mxunit b/resources/App/mprcontents/ae/a5/aea5c369-a393-40c5-9c7d-23501e958df2.mxunit new file mode 100644 index 0000000..28a46b5 Binary files /dev/null and b/resources/App/mprcontents/ae/a5/aea5c369-a393-40c5-9c7d-23501e958df2.mxunit differ diff --git a/resources/App/mprcontents/ae/ed/aeed4e8f-d335-4fcb-bc20-7a90bf4b54b5.mxunit b/resources/App/mprcontents/ae/ed/aeed4e8f-d335-4fcb-bc20-7a90bf4b54b5.mxunit new file mode 100644 index 0000000..dea8985 Binary files /dev/null and b/resources/App/mprcontents/ae/ed/aeed4e8f-d335-4fcb-bc20-7a90bf4b54b5.mxunit differ diff --git a/resources/App/mprcontents/b0/6f/b06f8eba-0df9-43d8-b20b-6676c8e5b1f7.mxunit b/resources/App/mprcontents/b0/6f/b06f8eba-0df9-43d8-b20b-6676c8e5b1f7.mxunit new file mode 100644 index 0000000..a1312ab Binary files /dev/null and b/resources/App/mprcontents/b0/6f/b06f8eba-0df9-43d8-b20b-6676c8e5b1f7.mxunit differ diff --git a/resources/App/mprcontents/b1/02/b102c7e6-554e-4ba9-a3b5-7a9221b0e8bf.mxunit b/resources/App/mprcontents/b1/02/b102c7e6-554e-4ba9-a3b5-7a9221b0e8bf.mxunit new file mode 100644 index 0000000..00f3e79 Binary files /dev/null and b/resources/App/mprcontents/b1/02/b102c7e6-554e-4ba9-a3b5-7a9221b0e8bf.mxunit differ diff --git a/resources/App/mprcontents/b1/c6/b1c634b8-8dff-4806-8e3e-5f4f32e380be.mxunit b/resources/App/mprcontents/b1/c6/b1c634b8-8dff-4806-8e3e-5f4f32e380be.mxunit new file mode 100644 index 0000000..a67a106 Binary files /dev/null and b/resources/App/mprcontents/b1/c6/b1c634b8-8dff-4806-8e3e-5f4f32e380be.mxunit differ diff --git a/resources/App/mprcontents/b1/f9/b1f91db0-496f-40a1-9530-2fa49b833b66.mxunit b/resources/App/mprcontents/b1/f9/b1f91db0-496f-40a1-9530-2fa49b833b66.mxunit new file mode 100644 index 0000000..b33dc88 Binary files /dev/null and b/resources/App/mprcontents/b1/f9/b1f91db0-496f-40a1-9530-2fa49b833b66.mxunit differ diff --git a/resources/App/mprcontents/b2/40/b240064b-4ab9-49c6-8530-b8f5fcc61082.mxunit b/resources/App/mprcontents/b2/40/b240064b-4ab9-49c6-8530-b8f5fcc61082.mxunit new file mode 100644 index 0000000..086e310 Binary files /dev/null and b/resources/App/mprcontents/b2/40/b240064b-4ab9-49c6-8530-b8f5fcc61082.mxunit differ diff --git a/resources/App/mprcontents/b2/f9/b2f9bc8c-e972-4447-9e84-a67c01db5af6.mxunit b/resources/App/mprcontents/b2/f9/b2f9bc8c-e972-4447-9e84-a67c01db5af6.mxunit new file mode 100644 index 0000000..5e7a0e3 Binary files /dev/null and b/resources/App/mprcontents/b2/f9/b2f9bc8c-e972-4447-9e84-a67c01db5af6.mxunit differ diff --git a/resources/App/mprcontents/b3/6f/b36f8f50-341a-47e0-bd2d-32bfae49cd7a.mxunit b/resources/App/mprcontents/b3/6f/b36f8f50-341a-47e0-bd2d-32bfae49cd7a.mxunit new file mode 100644 index 0000000..23b8d18 Binary files /dev/null and b/resources/App/mprcontents/b3/6f/b36f8f50-341a-47e0-bd2d-32bfae49cd7a.mxunit differ diff --git a/resources/App/mprcontents/b3/72/b372108d-833d-4f48-9805-fe3a4440e8a2.mxunit b/resources/App/mprcontents/b3/72/b372108d-833d-4f48-9805-fe3a4440e8a2.mxunit new file mode 100644 index 0000000..f8eb28c Binary files /dev/null and b/resources/App/mprcontents/b3/72/b372108d-833d-4f48-9805-fe3a4440e8a2.mxunit differ diff --git a/resources/App/mprcontents/b3/8a/b38a55be-601d-44b6-96fd-9015a855730f.mxunit b/resources/App/mprcontents/b3/8a/b38a55be-601d-44b6-96fd-9015a855730f.mxunit new file mode 100644 index 0000000..b08dd88 Binary files /dev/null and b/resources/App/mprcontents/b3/8a/b38a55be-601d-44b6-96fd-9015a855730f.mxunit differ diff --git a/resources/App/mprcontents/b4/28/b4280c38-e350-4128-8142-3745bd397238.mxunit b/resources/App/mprcontents/b4/28/b4280c38-e350-4128-8142-3745bd397238.mxunit new file mode 100644 index 0000000..d05abba Binary files /dev/null and b/resources/App/mprcontents/b4/28/b4280c38-e350-4128-8142-3745bd397238.mxunit differ diff --git a/resources/App/mprcontents/b4/ca/b4cab1ae-8bbb-4f37-b4a1-541b13f7c0d4.mxunit b/resources/App/mprcontents/b4/ca/b4cab1ae-8bbb-4f37-b4a1-541b13f7c0d4.mxunit new file mode 100644 index 0000000..91e0a76 Binary files /dev/null and b/resources/App/mprcontents/b4/ca/b4cab1ae-8bbb-4f37-b4a1-541b13f7c0d4.mxunit differ diff --git a/resources/App/mprcontents/b6/29/b62986ab-1ec9-5c84-9d33-1f0829ffce9b.mxunit b/resources/App/mprcontents/b6/29/b62986ab-1ec9-5c84-9d33-1f0829ffce9b.mxunit new file mode 100644 index 0000000..6c4092f Binary files /dev/null and b/resources/App/mprcontents/b6/29/b62986ab-1ec9-5c84-9d33-1f0829ffce9b.mxunit differ diff --git a/resources/App/mprcontents/b7/93/b7933bb7-ef7b-42b6-b645-e502f9370ca8.mxunit b/resources/App/mprcontents/b7/93/b7933bb7-ef7b-42b6-b645-e502f9370ca8.mxunit new file mode 100644 index 0000000..80fe992 Binary files /dev/null and b/resources/App/mprcontents/b7/93/b7933bb7-ef7b-42b6-b645-e502f9370ca8.mxunit differ diff --git a/resources/App/mprcontents/b7/d1/b7d119bb-c0d7-4f28-85d6-cc0ebf1f4483.mxunit b/resources/App/mprcontents/b7/d1/b7d119bb-c0d7-4f28-85d6-cc0ebf1f4483.mxunit new file mode 100644 index 0000000..49270c2 Binary files /dev/null and b/resources/App/mprcontents/b7/d1/b7d119bb-c0d7-4f28-85d6-cc0ebf1f4483.mxunit differ diff --git a/resources/App/mprcontents/b8/94/b894b5f4-d5f5-4a22-b9de-8aa6181a50cc.mxunit b/resources/App/mprcontents/b8/94/b894b5f4-d5f5-4a22-b9de-8aa6181a50cc.mxunit new file mode 100644 index 0000000..18a95cf Binary files /dev/null and b/resources/App/mprcontents/b8/94/b894b5f4-d5f5-4a22-b9de-8aa6181a50cc.mxunit differ diff --git a/resources/App/mprcontents/b9/1f/b91fe237-ceff-497f-b007-923d0cb6c338.mxunit b/resources/App/mprcontents/b9/1f/b91fe237-ceff-497f-b007-923d0cb6c338.mxunit new file mode 100644 index 0000000..6c20c81 Binary files /dev/null and b/resources/App/mprcontents/b9/1f/b91fe237-ceff-497f-b007-923d0cb6c338.mxunit differ diff --git a/resources/App/mprcontents/b9/46/b9466362-8edf-40ef-a4a4-7ec71cea78d8.mxunit b/resources/App/mprcontents/b9/46/b9466362-8edf-40ef-a4a4-7ec71cea78d8.mxunit new file mode 100644 index 0000000..83c7d50 Binary files /dev/null and b/resources/App/mprcontents/b9/46/b9466362-8edf-40ef-a4a4-7ec71cea78d8.mxunit differ diff --git a/resources/App/mprcontents/ba/00/ba00902e-69a3-47da-90c7-c66882699b3d.mxunit b/resources/App/mprcontents/ba/00/ba00902e-69a3-47da-90c7-c66882699b3d.mxunit new file mode 100644 index 0000000..277e6e9 Binary files /dev/null and b/resources/App/mprcontents/ba/00/ba00902e-69a3-47da-90c7-c66882699b3d.mxunit differ diff --git a/resources/App/mprcontents/ba/10/ba101110-9023-409b-a267-2b2a47f8a243.mxunit b/resources/App/mprcontents/ba/10/ba101110-9023-409b-a267-2b2a47f8a243.mxunit new file mode 100644 index 0000000..e989502 Binary files /dev/null and b/resources/App/mprcontents/ba/10/ba101110-9023-409b-a267-2b2a47f8a243.mxunit differ diff --git a/resources/App/mprcontents/ba/23/ba23c1d2-0422-478c-925f-033cf62cce47.mxunit b/resources/App/mprcontents/ba/23/ba23c1d2-0422-478c-925f-033cf62cce47.mxunit new file mode 100644 index 0000000..5bba32c Binary files /dev/null and b/resources/App/mprcontents/ba/23/ba23c1d2-0422-478c-925f-033cf62cce47.mxunit differ diff --git a/resources/App/mprcontents/bc/03/bc03d646-28f8-4d58-a716-ac2acba641e8.mxunit b/resources/App/mprcontents/bc/03/bc03d646-28f8-4d58-a716-ac2acba641e8.mxunit new file mode 100644 index 0000000..2f273d7 Binary files /dev/null and b/resources/App/mprcontents/bc/03/bc03d646-28f8-4d58-a716-ac2acba641e8.mxunit differ diff --git a/resources/App/mprcontents/bc/09/bc09b701-d12b-4560-8c0a-0d524125a8ab.mxunit b/resources/App/mprcontents/bc/09/bc09b701-d12b-4560-8c0a-0d524125a8ab.mxunit new file mode 100644 index 0000000..0b4c18c Binary files /dev/null and b/resources/App/mprcontents/bc/09/bc09b701-d12b-4560-8c0a-0d524125a8ab.mxunit differ diff --git a/resources/App/mprcontents/bc/40/bc40b585-71ba-410a-85d0-724d2145c34b.mxunit b/resources/App/mprcontents/bc/40/bc40b585-71ba-410a-85d0-724d2145c34b.mxunit new file mode 100644 index 0000000..1f93eac Binary files /dev/null and b/resources/App/mprcontents/bc/40/bc40b585-71ba-410a-85d0-724d2145c34b.mxunit differ diff --git a/resources/App/mprcontents/bd/43/bd43ddf8-bd13-402b-a227-7e4c7992cead.mxunit b/resources/App/mprcontents/bd/43/bd43ddf8-bd13-402b-a227-7e4c7992cead.mxunit new file mode 100644 index 0000000..ee7e71f Binary files /dev/null and b/resources/App/mprcontents/bd/43/bd43ddf8-bd13-402b-a227-7e4c7992cead.mxunit differ diff --git a/resources/App/mprcontents/bd/6f/bd6f65bd-2393-539d-9388-4684a54d0646.mxunit b/resources/App/mprcontents/bd/6f/bd6f65bd-2393-539d-9388-4684a54d0646.mxunit new file mode 100644 index 0000000..68924a8 Binary files /dev/null and b/resources/App/mprcontents/bd/6f/bd6f65bd-2393-539d-9388-4684a54d0646.mxunit differ diff --git a/resources/App/mprcontents/bd/fe/bdfe8eed-5e4d-4546-adc1-eb43554886b6.mxunit b/resources/App/mprcontents/bd/fe/bdfe8eed-5e4d-4546-adc1-eb43554886b6.mxunit new file mode 100644 index 0000000..87e6679 Binary files /dev/null and b/resources/App/mprcontents/bd/fe/bdfe8eed-5e4d-4546-adc1-eb43554886b6.mxunit differ diff --git a/resources/App/mprcontents/be/8f/be8f9f58-0bb5-4f08-8087-26dfa778598a.mxunit b/resources/App/mprcontents/be/8f/be8f9f58-0bb5-4f08-8087-26dfa778598a.mxunit new file mode 100644 index 0000000..c3317ae Binary files /dev/null and b/resources/App/mprcontents/be/8f/be8f9f58-0bb5-4f08-8087-26dfa778598a.mxunit differ diff --git a/resources/App/mprcontents/bf/15/bf15fbd7-4bd0-4d47-9050-f720387c42d8.mxunit b/resources/App/mprcontents/bf/15/bf15fbd7-4bd0-4d47-9050-f720387c42d8.mxunit new file mode 100644 index 0000000..d155e20 Binary files /dev/null and b/resources/App/mprcontents/bf/15/bf15fbd7-4bd0-4d47-9050-f720387c42d8.mxunit differ diff --git a/resources/App/mprcontents/c0/0a/c00a3f6b-9ee4-4310-b382-2c6b0efa0847.mxunit b/resources/App/mprcontents/c0/0a/c00a3f6b-9ee4-4310-b382-2c6b0efa0847.mxunit new file mode 100644 index 0000000..b8c518f Binary files /dev/null and b/resources/App/mprcontents/c0/0a/c00a3f6b-9ee4-4310-b382-2c6b0efa0847.mxunit differ diff --git a/resources/App/mprcontents/c0/6c/c06c9959-0e3f-46d4-96c4-b83ba044f2d1.mxunit b/resources/App/mprcontents/c0/6c/c06c9959-0e3f-46d4-96c4-b83ba044f2d1.mxunit new file mode 100644 index 0000000..125d0bf Binary files /dev/null and b/resources/App/mprcontents/c0/6c/c06c9959-0e3f-46d4-96c4-b83ba044f2d1.mxunit differ diff --git a/resources/App/mprcontents/c3/0b/c30b7153-64fb-4ccb-862d-89a0867e58e0.mxunit b/resources/App/mprcontents/c3/0b/c30b7153-64fb-4ccb-862d-89a0867e58e0.mxunit new file mode 100644 index 0000000..a569744 Binary files /dev/null and b/resources/App/mprcontents/c3/0b/c30b7153-64fb-4ccb-862d-89a0867e58e0.mxunit differ diff --git a/resources/App/mprcontents/c6/a5/c6a5aaba-e4a3-4083-9a19-5876be0d17d8.mxunit b/resources/App/mprcontents/c6/a5/c6a5aaba-e4a3-4083-9a19-5876be0d17d8.mxunit new file mode 100644 index 0000000..d84eabb Binary files /dev/null and b/resources/App/mprcontents/c6/a5/c6a5aaba-e4a3-4083-9a19-5876be0d17d8.mxunit differ diff --git a/resources/App/mprcontents/c7/6d/c76d066f-2e75-4dfa-85ee-8f9672a2cbb6.mxunit b/resources/App/mprcontents/c7/6d/c76d066f-2e75-4dfa-85ee-8f9672a2cbb6.mxunit new file mode 100644 index 0000000..cf2bf59 Binary files /dev/null and b/resources/App/mprcontents/c7/6d/c76d066f-2e75-4dfa-85ee-8f9672a2cbb6.mxunit differ diff --git a/resources/App/mprcontents/c9/a3/c9a3d54a-9538-4aa4-af55-3b2b04b3dffd.mxunit b/resources/App/mprcontents/c9/a3/c9a3d54a-9538-4aa4-af55-3b2b04b3dffd.mxunit new file mode 100644 index 0000000..4fb672d Binary files /dev/null and b/resources/App/mprcontents/c9/a3/c9a3d54a-9538-4aa4-af55-3b2b04b3dffd.mxunit differ diff --git a/resources/App/mprcontents/c9/b3/c9b3e4f2-d8ea-48b5-bb5e-026ca89d6a0d.mxunit b/resources/App/mprcontents/c9/b3/c9b3e4f2-d8ea-48b5-bb5e-026ca89d6a0d.mxunit new file mode 100644 index 0000000..b9bded5 Binary files /dev/null and b/resources/App/mprcontents/c9/b3/c9b3e4f2-d8ea-48b5-bb5e-026ca89d6a0d.mxunit differ diff --git a/resources/App/mprcontents/c9/dd/c9dd3ceb-717d-4a32-9c40-b602f42c02cb.mxunit b/resources/App/mprcontents/c9/dd/c9dd3ceb-717d-4a32-9c40-b602f42c02cb.mxunit new file mode 100644 index 0000000..37b47bb Binary files /dev/null and b/resources/App/mprcontents/c9/dd/c9dd3ceb-717d-4a32-9c40-b602f42c02cb.mxunit differ diff --git a/resources/App/mprcontents/ca/12/ca120b4a-a94e-4429-8f7f-53932083300a.mxunit b/resources/App/mprcontents/ca/12/ca120b4a-a94e-4429-8f7f-53932083300a.mxunit new file mode 100644 index 0000000..b9b1fa7 Binary files /dev/null and b/resources/App/mprcontents/ca/12/ca120b4a-a94e-4429-8f7f-53932083300a.mxunit differ diff --git a/resources/App/mprcontents/cc/c1/ccc1cbc8-3606-47a8-93f0-d94a7c51aeb3.mxunit b/resources/App/mprcontents/cc/c1/ccc1cbc8-3606-47a8-93f0-d94a7c51aeb3.mxunit new file mode 100644 index 0000000..802a74c Binary files /dev/null and b/resources/App/mprcontents/cc/c1/ccc1cbc8-3606-47a8-93f0-d94a7c51aeb3.mxunit differ diff --git a/resources/App/mprcontents/cd/fe/cdfe3d91-c908-4cd2-b3ad-60e2faaacb24.mxunit b/resources/App/mprcontents/cd/fe/cdfe3d91-c908-4cd2-b3ad-60e2faaacb24.mxunit new file mode 100644 index 0000000..897a2e3 Binary files /dev/null and b/resources/App/mprcontents/cd/fe/cdfe3d91-c908-4cd2-b3ad-60e2faaacb24.mxunit differ diff --git a/resources/App/mprcontents/ce/1b/ce1b1b87-70a6-4cd4-901d-f7cef66e0e96.mxunit b/resources/App/mprcontents/ce/1b/ce1b1b87-70a6-4cd4-901d-f7cef66e0e96.mxunit new file mode 100644 index 0000000..3a418d6 Binary files /dev/null and b/resources/App/mprcontents/ce/1b/ce1b1b87-70a6-4cd4-901d-f7cef66e0e96.mxunit differ diff --git a/resources/App/mprcontents/cf/08/cf084808-5bbc-4521-8d9a-caf0d5a246c7.mxunit b/resources/App/mprcontents/cf/08/cf084808-5bbc-4521-8d9a-caf0d5a246c7.mxunit new file mode 100644 index 0000000..d073a95 Binary files /dev/null and b/resources/App/mprcontents/cf/08/cf084808-5bbc-4521-8d9a-caf0d5a246c7.mxunit differ diff --git a/resources/App/mprcontents/cf/48/cf48f3b4-eccb-4edb-ba51-7b39fc9e23b6.mxunit b/resources/App/mprcontents/cf/48/cf48f3b4-eccb-4edb-ba51-7b39fc9e23b6.mxunit new file mode 100644 index 0000000..85d067d Binary files /dev/null and b/resources/App/mprcontents/cf/48/cf48f3b4-eccb-4edb-ba51-7b39fc9e23b6.mxunit differ diff --git a/resources/App/mprcontents/d0/c1/d0c1e3d7-06cc-4bf8-8c37-c41d8bb53c43.mxunit b/resources/App/mprcontents/d0/c1/d0c1e3d7-06cc-4bf8-8c37-c41d8bb53c43.mxunit new file mode 100644 index 0000000..d0d12d5 Binary files /dev/null and b/resources/App/mprcontents/d0/c1/d0c1e3d7-06cc-4bf8-8c37-c41d8bb53c43.mxunit differ diff --git a/resources/App/mprcontents/d0/e7/d0e76b38-5c0e-4fc3-9d8f-0d568b8f0b0a.mxunit b/resources/App/mprcontents/d0/e7/d0e76b38-5c0e-4fc3-9d8f-0d568b8f0b0a.mxunit new file mode 100644 index 0000000..1d5be3f Binary files /dev/null and b/resources/App/mprcontents/d0/e7/d0e76b38-5c0e-4fc3-9d8f-0d568b8f0b0a.mxunit differ diff --git a/resources/App/mprcontents/d1/1e/d11edf2c-312b-42a2-b427-175783d4646a.mxunit b/resources/App/mprcontents/d1/1e/d11edf2c-312b-42a2-b427-175783d4646a.mxunit new file mode 100644 index 0000000..3a1f126 Binary files /dev/null and b/resources/App/mprcontents/d1/1e/d11edf2c-312b-42a2-b427-175783d4646a.mxunit differ diff --git a/resources/App/mprcontents/d1/21/d121ee37-f102-56ae-b644-160f1d340296.mxunit b/resources/App/mprcontents/d1/21/d121ee37-f102-56ae-b644-160f1d340296.mxunit new file mode 100644 index 0000000..6d6146f Binary files /dev/null and b/resources/App/mprcontents/d1/21/d121ee37-f102-56ae-b644-160f1d340296.mxunit differ diff --git a/resources/App/mprcontents/d3/6e/d36e018d-b1b9-4060-bfd7-3a21f7da6626.mxunit b/resources/App/mprcontents/d3/6e/d36e018d-b1b9-4060-bfd7-3a21f7da6626.mxunit new file mode 100644 index 0000000..e12dcce Binary files /dev/null and b/resources/App/mprcontents/d3/6e/d36e018d-b1b9-4060-bfd7-3a21f7da6626.mxunit differ diff --git a/resources/App/mprcontents/d3/a9/d3a9158a-e6ab-4f45-a577-4eb4963f6516.mxunit b/resources/App/mprcontents/d3/a9/d3a9158a-e6ab-4f45-a577-4eb4963f6516.mxunit new file mode 100644 index 0000000..82bed6a Binary files /dev/null and b/resources/App/mprcontents/d3/a9/d3a9158a-e6ab-4f45-a577-4eb4963f6516.mxunit differ diff --git a/resources/App/mprcontents/d4/23/d4230c89-2f40-4b7f-b929-3aa081d2ea09.mxunit b/resources/App/mprcontents/d4/23/d4230c89-2f40-4b7f-b929-3aa081d2ea09.mxunit new file mode 100644 index 0000000..327a4c5 Binary files /dev/null and b/resources/App/mprcontents/d4/23/d4230c89-2f40-4b7f-b929-3aa081d2ea09.mxunit differ diff --git a/resources/App/mprcontents/d4/41/d4411b54-1098-4c3a-a4df-c433b1f4ea31.mxunit b/resources/App/mprcontents/d4/41/d4411b54-1098-4c3a-a4df-c433b1f4ea31.mxunit new file mode 100644 index 0000000..eb0f2a8 Binary files /dev/null and b/resources/App/mprcontents/d4/41/d4411b54-1098-4c3a-a4df-c433b1f4ea31.mxunit differ diff --git a/resources/App/mprcontents/d5/52/d55249b6-6a33-4020-9650-6f04c8a51a0f.mxunit b/resources/App/mprcontents/d5/52/d55249b6-6a33-4020-9650-6f04c8a51a0f.mxunit new file mode 100644 index 0000000..b62f511 Binary files /dev/null and b/resources/App/mprcontents/d5/52/d55249b6-6a33-4020-9650-6f04c8a51a0f.mxunit differ diff --git a/resources/App/mprcontents/d5/8a/d58aac24-2bb5-456c-9fa0-1744e840d50e.mxunit b/resources/App/mprcontents/d5/8a/d58aac24-2bb5-456c-9fa0-1744e840d50e.mxunit new file mode 100644 index 0000000..70e6c6e Binary files /dev/null and b/resources/App/mprcontents/d5/8a/d58aac24-2bb5-456c-9fa0-1744e840d50e.mxunit differ diff --git a/resources/App/mprcontents/d6/7e/d67ead05-919d-4ece-af80-7752245ff6fe.mxunit b/resources/App/mprcontents/d6/7e/d67ead05-919d-4ece-af80-7752245ff6fe.mxunit new file mode 100644 index 0000000..62b2aa4 Binary files /dev/null and b/resources/App/mprcontents/d6/7e/d67ead05-919d-4ece-af80-7752245ff6fe.mxunit differ diff --git a/resources/App/mprcontents/d7/0f/d70f5aff-883e-4a20-af36-f1fd92944cb1.mxunit b/resources/App/mprcontents/d7/0f/d70f5aff-883e-4a20-af36-f1fd92944cb1.mxunit new file mode 100644 index 0000000..9496683 Binary files /dev/null and b/resources/App/mprcontents/d7/0f/d70f5aff-883e-4a20-af36-f1fd92944cb1.mxunit differ diff --git a/resources/App/mprcontents/d7/f5/d7f53422-8f6c-4145-b0c5-f341948e7519.mxunit b/resources/App/mprcontents/d7/f5/d7f53422-8f6c-4145-b0c5-f341948e7519.mxunit new file mode 100644 index 0000000..5b21236 Binary files /dev/null and b/resources/App/mprcontents/d7/f5/d7f53422-8f6c-4145-b0c5-f341948e7519.mxunit differ diff --git a/resources/App/mprcontents/d8/1f/d81f0e10-eabd-4f33-a1ba-dfa688a6be62.mxunit b/resources/App/mprcontents/d8/1f/d81f0e10-eabd-4f33-a1ba-dfa688a6be62.mxunit new file mode 100644 index 0000000..a6abe51 Binary files /dev/null and b/resources/App/mprcontents/d8/1f/d81f0e10-eabd-4f33-a1ba-dfa688a6be62.mxunit differ diff --git a/resources/App/mprcontents/d8/54/d8545727-73de-4770-93ca-e9f96fc00741.mxunit b/resources/App/mprcontents/d8/54/d8545727-73de-4770-93ca-e9f96fc00741.mxunit new file mode 100644 index 0000000..3bec8fe Binary files /dev/null and b/resources/App/mprcontents/d8/54/d8545727-73de-4770-93ca-e9f96fc00741.mxunit differ diff --git a/resources/App/mprcontents/d9/a6/d9a69bad-0856-43e7-bbc6-f17f1031bbd0.mxunit b/resources/App/mprcontents/d9/a6/d9a69bad-0856-43e7-bbc6-f17f1031bbd0.mxunit new file mode 100644 index 0000000..e1a65d1 Binary files /dev/null and b/resources/App/mprcontents/d9/a6/d9a69bad-0856-43e7-bbc6-f17f1031bbd0.mxunit differ diff --git a/resources/App/mprcontents/d9/b2/d9b2701f-59bb-437e-bca9-8f4e048bff19.mxunit b/resources/App/mprcontents/d9/b2/d9b2701f-59bb-437e-bca9-8f4e048bff19.mxunit new file mode 100644 index 0000000..8e50d2f Binary files /dev/null and b/resources/App/mprcontents/d9/b2/d9b2701f-59bb-437e-bca9-8f4e048bff19.mxunit differ diff --git a/resources/App/mprcontents/da/bf/dabfe3bc-c362-4dfe-aa51-d0f0375d3520.mxunit b/resources/App/mprcontents/da/bf/dabfe3bc-c362-4dfe-aa51-d0f0375d3520.mxunit new file mode 100644 index 0000000..6506ee9 Binary files /dev/null and b/resources/App/mprcontents/da/bf/dabfe3bc-c362-4dfe-aa51-d0f0375d3520.mxunit differ diff --git a/resources/App/mprcontents/db/05/db05625b-ad0c-4bc8-8a0b-9cf6601c1b15.mxunit b/resources/App/mprcontents/db/05/db05625b-ad0c-4bc8-8a0b-9cf6601c1b15.mxunit new file mode 100644 index 0000000..a32faeb Binary files /dev/null and b/resources/App/mprcontents/db/05/db05625b-ad0c-4bc8-8a0b-9cf6601c1b15.mxunit differ diff --git a/resources/App/mprcontents/db/1a/db1a3505-118e-49cc-b0ba-41e232a6e201.mxunit b/resources/App/mprcontents/db/1a/db1a3505-118e-49cc-b0ba-41e232a6e201.mxunit new file mode 100644 index 0000000..723033d Binary files /dev/null and b/resources/App/mprcontents/db/1a/db1a3505-118e-49cc-b0ba-41e232a6e201.mxunit differ diff --git a/resources/App/mprcontents/dc/83/dc8380d2-9ddd-4365-bb0b-50252a1636b9.mxunit b/resources/App/mprcontents/dc/83/dc8380d2-9ddd-4365-bb0b-50252a1636b9.mxunit new file mode 100644 index 0000000..f581632 Binary files /dev/null and b/resources/App/mprcontents/dc/83/dc8380d2-9ddd-4365-bb0b-50252a1636b9.mxunit differ diff --git a/resources/App/mprcontents/dc/b4/dcb4daf9-2100-4bca-a867-88f06c78bd0e.mxunit b/resources/App/mprcontents/dc/b4/dcb4daf9-2100-4bca-a867-88f06c78bd0e.mxunit new file mode 100644 index 0000000..cd08703 Binary files /dev/null and b/resources/App/mprcontents/dc/b4/dcb4daf9-2100-4bca-a867-88f06c78bd0e.mxunit differ diff --git a/resources/App/mprcontents/dd/56/dd5621a1-aeec-475a-bff6-a155c528e335.mxunit b/resources/App/mprcontents/dd/56/dd5621a1-aeec-475a-bff6-a155c528e335.mxunit new file mode 100644 index 0000000..c99a603 Binary files /dev/null and b/resources/App/mprcontents/dd/56/dd5621a1-aeec-475a-bff6-a155c528e335.mxunit differ diff --git a/resources/App/mprcontents/dd/e9/dde96d2f-a836-474c-abd6-cfc925d19235.mxunit b/resources/App/mprcontents/dd/e9/dde96d2f-a836-474c-abd6-cfc925d19235.mxunit new file mode 100644 index 0000000..a2ff99c Binary files /dev/null and b/resources/App/mprcontents/dd/e9/dde96d2f-a836-474c-abd6-cfc925d19235.mxunit differ diff --git a/resources/App/mprcontents/de/c4/dec46798-acf2-41b9-b8ae-42e6450205e7.mxunit b/resources/App/mprcontents/de/c4/dec46798-acf2-41b9-b8ae-42e6450205e7.mxunit new file mode 100644 index 0000000..86259c7 Binary files /dev/null and b/resources/App/mprcontents/de/c4/dec46798-acf2-41b9-b8ae-42e6450205e7.mxunit differ diff --git a/resources/App/mprcontents/df/23/df236791-f996-4af0-9eb7-7e59e24a3a1b.mxunit b/resources/App/mprcontents/df/23/df236791-f996-4af0-9eb7-7e59e24a3a1b.mxunit new file mode 100644 index 0000000..285e159 Binary files /dev/null and b/resources/App/mprcontents/df/23/df236791-f996-4af0-9eb7-7e59e24a3a1b.mxunit differ diff --git a/resources/App/mprcontents/df/d6/dfd6bab5-f1d2-4740-ac0e-894a73588da7.mxunit b/resources/App/mprcontents/df/d6/dfd6bab5-f1d2-4740-ac0e-894a73588da7.mxunit new file mode 100644 index 0000000..0b0ae7d Binary files /dev/null and b/resources/App/mprcontents/df/d6/dfd6bab5-f1d2-4740-ac0e-894a73588da7.mxunit differ diff --git a/resources/App/mprcontents/e0/58/e058b8be-2bea-4a7b-b22f-6c56ad05aa75.mxunit b/resources/App/mprcontents/e0/58/e058b8be-2bea-4a7b-b22f-6c56ad05aa75.mxunit new file mode 100644 index 0000000..5980302 Binary files /dev/null and b/resources/App/mprcontents/e0/58/e058b8be-2bea-4a7b-b22f-6c56ad05aa75.mxunit differ diff --git a/resources/App/mprcontents/e0/71/e071696e-6c94-4e00-8b9e-d1530f65ccfc.mxunit b/resources/App/mprcontents/e0/71/e071696e-6c94-4e00-8b9e-d1530f65ccfc.mxunit new file mode 100644 index 0000000..14ea6f6 Binary files /dev/null and b/resources/App/mprcontents/e0/71/e071696e-6c94-4e00-8b9e-d1530f65ccfc.mxunit differ diff --git a/resources/App/mprcontents/e2/da/e2dae2ac-a117-4d45-80cd-37ff11a67e1f.mxunit b/resources/App/mprcontents/e2/da/e2dae2ac-a117-4d45-80cd-37ff11a67e1f.mxunit new file mode 100644 index 0000000..097cb6a Binary files /dev/null and b/resources/App/mprcontents/e2/da/e2dae2ac-a117-4d45-80cd-37ff11a67e1f.mxunit differ diff --git a/resources/App/mprcontents/e3/71/e3718ef2-eed6-42e1-88d9-7c9f45941196.mxunit b/resources/App/mprcontents/e3/71/e3718ef2-eed6-42e1-88d9-7c9f45941196.mxunit new file mode 100644 index 0000000..1605976 Binary files /dev/null and b/resources/App/mprcontents/e3/71/e3718ef2-eed6-42e1-88d9-7c9f45941196.mxunit differ diff --git a/resources/App/mprcontents/e3/a0/e3a090bf-31ac-4dbe-946d-b1a95ebb00e4.mxunit b/resources/App/mprcontents/e3/a0/e3a090bf-31ac-4dbe-946d-b1a95ebb00e4.mxunit new file mode 100644 index 0000000..31ca233 Binary files /dev/null and b/resources/App/mprcontents/e3/a0/e3a090bf-31ac-4dbe-946d-b1a95ebb00e4.mxunit differ diff --git a/resources/App/mprcontents/e3/bc/e3bc83be-d216-42ae-a0a2-b1123b2744b5.mxunit b/resources/App/mprcontents/e3/bc/e3bc83be-d216-42ae-a0a2-b1123b2744b5.mxunit new file mode 100644 index 0000000..a24b81d Binary files /dev/null and b/resources/App/mprcontents/e3/bc/e3bc83be-d216-42ae-a0a2-b1123b2744b5.mxunit differ diff --git a/resources/App/mprcontents/e5/19/e519b093-0eb2-4c1e-908f-3dda16cfdd77.mxunit b/resources/App/mprcontents/e5/19/e519b093-0eb2-4c1e-908f-3dda16cfdd77.mxunit new file mode 100644 index 0000000..913e3d4 Binary files /dev/null and b/resources/App/mprcontents/e5/19/e519b093-0eb2-4c1e-908f-3dda16cfdd77.mxunit differ diff --git a/resources/App/mprcontents/e6/a5/e6a5d1a8-7e3c-4d49-94c9-5f4d8f026446.mxunit b/resources/App/mprcontents/e6/a5/e6a5d1a8-7e3c-4d49-94c9-5f4d8f026446.mxunit new file mode 100644 index 0000000..bef2f00 Binary files /dev/null and b/resources/App/mprcontents/e6/a5/e6a5d1a8-7e3c-4d49-94c9-5f4d8f026446.mxunit differ diff --git a/resources/App/mprcontents/e7/45/e745f4bc-5fed-41b7-ac99-931aec92245c.mxunit b/resources/App/mprcontents/e7/45/e745f4bc-5fed-41b7-ac99-931aec92245c.mxunit new file mode 100644 index 0000000..d4314fc Binary files /dev/null and b/resources/App/mprcontents/e7/45/e745f4bc-5fed-41b7-ac99-931aec92245c.mxunit differ diff --git a/resources/App/mprcontents/e7/c0/e7c079d6-42a6-4a5b-a43f-26520ab88857.mxunit b/resources/App/mprcontents/e7/c0/e7c079d6-42a6-4a5b-a43f-26520ab88857.mxunit new file mode 100644 index 0000000..ff03438 Binary files /dev/null and b/resources/App/mprcontents/e7/c0/e7c079d6-42a6-4a5b-a43f-26520ab88857.mxunit differ diff --git a/resources/App/mprcontents/e8/de/e8de4aff-c6c7-4139-ac1e-89faa581efd1.mxunit b/resources/App/mprcontents/e8/de/e8de4aff-c6c7-4139-ac1e-89faa581efd1.mxunit new file mode 100644 index 0000000..e59b04f Binary files /dev/null and b/resources/App/mprcontents/e8/de/e8de4aff-c6c7-4139-ac1e-89faa581efd1.mxunit differ diff --git a/resources/App/mprcontents/e8/f1/e8f1e10b-06bf-4a84-b905-be7b44c339bd.mxunit b/resources/App/mprcontents/e8/f1/e8f1e10b-06bf-4a84-b905-be7b44c339bd.mxunit new file mode 100644 index 0000000..5e4e62e Binary files /dev/null and b/resources/App/mprcontents/e8/f1/e8f1e10b-06bf-4a84-b905-be7b44c339bd.mxunit differ diff --git a/resources/App/mprcontents/e9/db/e9dbdf4b-ce93-44dc-9f5f-4c3b0b7ea287.mxunit b/resources/App/mprcontents/e9/db/e9dbdf4b-ce93-44dc-9f5f-4c3b0b7ea287.mxunit new file mode 100644 index 0000000..6d6ceed Binary files /dev/null and b/resources/App/mprcontents/e9/db/e9dbdf4b-ce93-44dc-9f5f-4c3b0b7ea287.mxunit differ diff --git a/resources/App/mprcontents/ea/04/ea040570-23ea-4b76-b665-7d14f93f4239.mxunit b/resources/App/mprcontents/ea/04/ea040570-23ea-4b76-b665-7d14f93f4239.mxunit new file mode 100644 index 0000000..6f40751 Binary files /dev/null and b/resources/App/mprcontents/ea/04/ea040570-23ea-4b76-b665-7d14f93f4239.mxunit differ diff --git a/resources/App/mprcontents/ea/95/ea954677-af49-476e-9177-21ee524fd7e3.mxunit b/resources/App/mprcontents/ea/95/ea954677-af49-476e-9177-21ee524fd7e3.mxunit new file mode 100644 index 0000000..36fcc3b Binary files /dev/null and b/resources/App/mprcontents/ea/95/ea954677-af49-476e-9177-21ee524fd7e3.mxunit differ diff --git a/resources/App/mprcontents/eb/fc/ebfca7a5-4b45-4573-830c-fc14032c0a13.mxunit b/resources/App/mprcontents/eb/fc/ebfca7a5-4b45-4573-830c-fc14032c0a13.mxunit new file mode 100644 index 0000000..b4e07a6 Binary files /dev/null and b/resources/App/mprcontents/eb/fc/ebfca7a5-4b45-4573-830c-fc14032c0a13.mxunit differ diff --git a/resources/App/mprcontents/ec/6a/ec6a89a5-4b06-4e94-8b39-ddb0511360d5.mxunit b/resources/App/mprcontents/ec/6a/ec6a89a5-4b06-4e94-8b39-ddb0511360d5.mxunit new file mode 100644 index 0000000..a15938e Binary files /dev/null and b/resources/App/mprcontents/ec/6a/ec6a89a5-4b06-4e94-8b39-ddb0511360d5.mxunit differ diff --git a/resources/App/mprcontents/ec/8a/ec8a37da-e8a9-460a-929a-5bd3ccaea35e.mxunit b/resources/App/mprcontents/ec/8a/ec8a37da-e8a9-460a-929a-5bd3ccaea35e.mxunit new file mode 100644 index 0000000..6942fee Binary files /dev/null and b/resources/App/mprcontents/ec/8a/ec8a37da-e8a9-460a-929a-5bd3ccaea35e.mxunit differ diff --git a/resources/App/mprcontents/ed/b1/edb1c104-9c8c-4ff1-899d-202c4d4bc0b4.mxunit b/resources/App/mprcontents/ed/b1/edb1c104-9c8c-4ff1-899d-202c4d4bc0b4.mxunit new file mode 100644 index 0000000..4a1b6d6 Binary files /dev/null and b/resources/App/mprcontents/ed/b1/edb1c104-9c8c-4ff1-899d-202c4d4bc0b4.mxunit differ diff --git a/resources/App/mprcontents/ee/67/ee67597c-8ac1-4a24-b7c1-6ba399425a3e.mxunit b/resources/App/mprcontents/ee/67/ee67597c-8ac1-4a24-b7c1-6ba399425a3e.mxunit new file mode 100644 index 0000000..74df931 Binary files /dev/null and b/resources/App/mprcontents/ee/67/ee67597c-8ac1-4a24-b7c1-6ba399425a3e.mxunit differ diff --git a/resources/App/mprcontents/ee/7a/ee7a03c9-7cf7-4b43-98dc-525aebe3dbfe.mxunit b/resources/App/mprcontents/ee/7a/ee7a03c9-7cf7-4b43-98dc-525aebe3dbfe.mxunit new file mode 100644 index 0000000..d5d5a2c Binary files /dev/null and b/resources/App/mprcontents/ee/7a/ee7a03c9-7cf7-4b43-98dc-525aebe3dbfe.mxunit differ diff --git a/resources/App/mprcontents/ee/c4/eec4d2b9-8287-4b88-b5c9-2b4f2e30e68e.mxunit b/resources/App/mprcontents/ee/c4/eec4d2b9-8287-4b88-b5c9-2b4f2e30e68e.mxunit new file mode 100644 index 0000000..72433ea Binary files /dev/null and b/resources/App/mprcontents/ee/c4/eec4d2b9-8287-4b88-b5c9-2b4f2e30e68e.mxunit differ diff --git a/resources/App/mprcontents/ef/da/efda8b99-f0dc-4a66-8610-8e941df1d8aa.mxunit b/resources/App/mprcontents/ef/da/efda8b99-f0dc-4a66-8610-8e941df1d8aa.mxunit new file mode 100644 index 0000000..f7c9ee6 Binary files /dev/null and b/resources/App/mprcontents/ef/da/efda8b99-f0dc-4a66-8610-8e941df1d8aa.mxunit differ diff --git a/resources/App/mprcontents/f1/a8/f1a8501f-1f4d-4341-9e47-c4ae4b3d978d.mxunit b/resources/App/mprcontents/f1/a8/f1a8501f-1f4d-4341-9e47-c4ae4b3d978d.mxunit new file mode 100644 index 0000000..2acb726 Binary files /dev/null and b/resources/App/mprcontents/f1/a8/f1a8501f-1f4d-4341-9e47-c4ae4b3d978d.mxunit differ diff --git a/resources/App/mprcontents/f2/81/f28101dd-c449-48e2-b66c-95e0ea96b308.mxunit b/resources/App/mprcontents/f2/81/f28101dd-c449-48e2-b66c-95e0ea96b308.mxunit new file mode 100644 index 0000000..fc76f22 Binary files /dev/null and b/resources/App/mprcontents/f2/81/f28101dd-c449-48e2-b66c-95e0ea96b308.mxunit differ diff --git a/resources/App/mprcontents/f3/63/f363daee-d6a3-43f6-8a2b-3a7f8057c711.mxunit b/resources/App/mprcontents/f3/63/f363daee-d6a3-43f6-8a2b-3a7f8057c711.mxunit new file mode 100644 index 0000000..cf90933 Binary files /dev/null and b/resources/App/mprcontents/f3/63/f363daee-d6a3-43f6-8a2b-3a7f8057c711.mxunit differ diff --git a/resources/App/mprcontents/f3/a1/f3a1fdfd-db6f-4eae-a2a3-3121452d4e64.mxunit b/resources/App/mprcontents/f3/a1/f3a1fdfd-db6f-4eae-a2a3-3121452d4e64.mxunit new file mode 100644 index 0000000..fd904a4 Binary files /dev/null and b/resources/App/mprcontents/f3/a1/f3a1fdfd-db6f-4eae-a2a3-3121452d4e64.mxunit differ diff --git a/resources/App/mprcontents/f4/99/f4994a4c-350a-4c1d-818d-8d80dd165c40.mxunit b/resources/App/mprcontents/f4/99/f4994a4c-350a-4c1d-818d-8d80dd165c40.mxunit new file mode 100644 index 0000000..b6b2ccc Binary files /dev/null and b/resources/App/mprcontents/f4/99/f4994a4c-350a-4c1d-818d-8d80dd165c40.mxunit differ diff --git a/resources/App/mprcontents/f4/9b/f49bd5ef-53dc-48dd-9adf-be7cc6d38987.mxunit b/resources/App/mprcontents/f4/9b/f49bd5ef-53dc-48dd-9adf-be7cc6d38987.mxunit new file mode 100644 index 0000000..4fa66a0 Binary files /dev/null and b/resources/App/mprcontents/f4/9b/f49bd5ef-53dc-48dd-9adf-be7cc6d38987.mxunit differ diff --git a/resources/App/mprcontents/f6/14/f61447e6-c19f-41e1-a8d9-e89a73070940.mxunit b/resources/App/mprcontents/f6/14/f61447e6-c19f-41e1-a8d9-e89a73070940.mxunit new file mode 100644 index 0000000..6eb4984 Binary files /dev/null and b/resources/App/mprcontents/f6/14/f61447e6-c19f-41e1-a8d9-e89a73070940.mxunit differ diff --git a/resources/App/mprcontents/f6/ce/f6ce2dbe-717e-4fff-9188-ef723a3283c6.mxunit b/resources/App/mprcontents/f6/ce/f6ce2dbe-717e-4fff-9188-ef723a3283c6.mxunit new file mode 100644 index 0000000..4ab9793 Binary files /dev/null and b/resources/App/mprcontents/f6/ce/f6ce2dbe-717e-4fff-9188-ef723a3283c6.mxunit differ diff --git a/resources/App/mprcontents/f8/9e/f89e3225-b912-4870-a603-5a0f23b92ff2.mxunit b/resources/App/mprcontents/f8/9e/f89e3225-b912-4870-a603-5a0f23b92ff2.mxunit new file mode 100644 index 0000000..c681ea3 Binary files /dev/null and b/resources/App/mprcontents/f8/9e/f89e3225-b912-4870-a603-5a0f23b92ff2.mxunit differ diff --git a/resources/App/mprcontents/f8/ad/f8ad4947-4bde-476a-8fdf-11a08bd3ff27.mxunit b/resources/App/mprcontents/f8/ad/f8ad4947-4bde-476a-8fdf-11a08bd3ff27.mxunit new file mode 100644 index 0000000..78c0740 Binary files /dev/null and b/resources/App/mprcontents/f8/ad/f8ad4947-4bde-476a-8fdf-11a08bd3ff27.mxunit differ diff --git a/resources/App/mprcontents/f8/c5/f8c503cb-67bc-4774-b37d-0f745cc8914c.mxunit b/resources/App/mprcontents/f8/c5/f8c503cb-67bc-4774-b37d-0f745cc8914c.mxunit new file mode 100644 index 0000000..4d4a8b8 Binary files /dev/null and b/resources/App/mprcontents/f8/c5/f8c503cb-67bc-4774-b37d-0f745cc8914c.mxunit differ diff --git a/resources/App/mprcontents/f9/b7/f9b7d3d0-91c1-4f11-ab98-5a6d88605a5b.mxunit b/resources/App/mprcontents/f9/b7/f9b7d3d0-91c1-4f11-ab98-5a6d88605a5b.mxunit new file mode 100644 index 0000000..e7142de Binary files /dev/null and b/resources/App/mprcontents/f9/b7/f9b7d3d0-91c1-4f11-ab98-5a6d88605a5b.mxunit differ diff --git a/resources/App/mprcontents/fa/6a/fa6a8486-d682-437e-8352-7761c80fa7c4.mxunit b/resources/App/mprcontents/fa/6a/fa6a8486-d682-437e-8352-7761c80fa7c4.mxunit new file mode 100644 index 0000000..3daa006 Binary files /dev/null and b/resources/App/mprcontents/fa/6a/fa6a8486-d682-437e-8352-7761c80fa7c4.mxunit differ diff --git a/resources/App/mprcontents/fa/98/fa98da50-4a45-47e4-865e-c41625ef3e64.mxunit b/resources/App/mprcontents/fa/98/fa98da50-4a45-47e4-865e-c41625ef3e64.mxunit new file mode 100644 index 0000000..58dfcf9 Binary files /dev/null and b/resources/App/mprcontents/fa/98/fa98da50-4a45-47e4-865e-c41625ef3e64.mxunit differ diff --git a/resources/App/mprcontents/fa/d5/fad52b2a-8af3-405a-9b89-a97995a07563.mxunit b/resources/App/mprcontents/fa/d5/fad52b2a-8af3-405a-9b89-a97995a07563.mxunit new file mode 100644 index 0000000..519494e Binary files /dev/null and b/resources/App/mprcontents/fa/d5/fad52b2a-8af3-405a-9b89-a97995a07563.mxunit differ diff --git a/resources/App/mprcontents/fb/1d/fb1dc43d-db06-421d-a434-13b9fd601831.mxunit b/resources/App/mprcontents/fb/1d/fb1dc43d-db06-421d-a434-13b9fd601831.mxunit new file mode 100644 index 0000000..82c0f69 Binary files /dev/null and b/resources/App/mprcontents/fb/1d/fb1dc43d-db06-421d-a434-13b9fd601831.mxunit differ diff --git a/resources/App/mprcontents/fc/47/fc47868a-9670-46cf-ae22-86a24a755960.mxunit b/resources/App/mprcontents/fc/47/fc47868a-9670-46cf-ae22-86a24a755960.mxunit new file mode 100644 index 0000000..9ed4829 Binary files /dev/null and b/resources/App/mprcontents/fc/47/fc47868a-9670-46cf-ae22-86a24a755960.mxunit differ diff --git a/resources/App/mprcontents/fd/b8/fdb8fda5-9e82-45cc-a1da-9999dc67cd52.mxunit b/resources/App/mprcontents/fd/b8/fdb8fda5-9e82-45cc-a1da-9999dc67cd52.mxunit new file mode 100644 index 0000000..c394d7d Binary files /dev/null and b/resources/App/mprcontents/fd/b8/fdb8fda5-9e82-45cc-a1da-9999dc67cd52.mxunit differ diff --git a/resources/App/mprcontents/fd/bd/fdbd9286-b9f2-411d-a624-fa24eb687b43.mxunit b/resources/App/mprcontents/fd/bd/fdbd9286-b9f2-411d-a624-fa24eb687b43.mxunit new file mode 100644 index 0000000..4880722 Binary files /dev/null and b/resources/App/mprcontents/fd/bd/fdbd9286-b9f2-411d-a624-fa24eb687b43.mxunit differ diff --git a/resources/App/mprcontents/fe/65/fe65e699-0279-41bb-972c-c77e7509d039.mxunit b/resources/App/mprcontents/fe/65/fe65e699-0279-41bb-972c-c77e7509d039.mxunit new file mode 100644 index 0000000..71c9581 Binary files /dev/null and b/resources/App/mprcontents/fe/65/fe65e699-0279-41bb-972c-c77e7509d039.mxunit differ diff --git a/resources/App/mprcontents/fe/99/fe99decc-5f13-4ee8-9a69-c3680f4f70f4.mxunit b/resources/App/mprcontents/fe/99/fe99decc-5f13-4ee8-9a69-c3680f4f70f4.mxunit new file mode 100644 index 0000000..71bbc8b Binary files /dev/null and b/resources/App/mprcontents/fe/99/fe99decc-5f13-4ee8-9a69-c3680f4f70f4.mxunit differ diff --git a/resources/App/mprcontents/ff/9c/ff9cb8af-b2cc-4d39-adda-634748b0aae4.mxunit b/resources/App/mprcontents/ff/9c/ff9cb8af-b2cc-4d39-adda-634748b0aae4.mxunit new file mode 100644 index 0000000..6c44dee Binary files /dev/null and b/resources/App/mprcontents/ff/9c/ff9cb8af-b2cc-4d39-adda-634748b0aae4.mxunit differ diff --git a/resources/App/mprcontents/mprname b/resources/App/mprcontents/mprname new file mode 100644 index 0000000..46fae28 --- /dev/null +++ b/resources/App/mprcontents/mprname @@ -0,0 +1 @@ +App.mpr \ No newline at end of file diff --git a/resources/App/project-settings.user.json b/resources/App/project-settings.user.json index fcc8ccf..8cfabd4 100644 --- a/resources/App/project-settings.user.json +++ b/resources/App/project-settings.user.json @@ -5,7 +5,7 @@ "suppressions": [], "suppressAppStoreWarnings": false, "showSuppressionInfo": true, - "type": "Mendix.Modeler.Suppressions.SuppressionRules, Mendix.Modeler.Core, Version=10.12.2.0, Culture=neutral, PublicKeyToken=null" + "type": "Mendix.Modeler.Suppressions.SuppressionRules, Mendix.Modeler.Core, Version=10.23.0.0, Culture=neutral, PublicKeyToken=null" }, { "suppressions": [], @@ -13,7 +13,7 @@ "readRecommendations": [], "suppressedRecommendations": [], "hasShownRecommendationsNotificationForThisApp": true, - "type": "Mendix.Modeler.MxAssist.PerformanceBot.Serialization.Configuration.PerformanceBotConfiguration, Mendix.Modeler.MxAssist.PerformanceBot.Serialization, Version=10.12.2.0, Culture=neutral, PublicKeyToken=null" + "type": "Mendix.Modeler.MxAssist.PerformanceBot.Serialization.Configuration.PerformanceBotConfiguration, Mendix.Modeler.MxAssist.PerformanceBot.Serialization, Version=10.23.0.0, Culture=neutral, PublicKeyToken=null" } ] } \ No newline at end of file diff --git a/resources/App/theme-cache/web/theme.compiled.css b/resources/App/theme-cache/web/theme.compiled.css index 615f383..a529041 100644 --- a/resources/App/theme-cache/web/theme.compiled.css +++ b/resources/App/theme-cache/web/theme.compiled.css @@ -3637,8 +3637,7 @@ --brand-danger: #e33f4e; --brand-logo: false; --brand-logo-height: 26px; - --brand-logo-width: 26px; - /* Only used for CSS brand logo */ + --brand-logo-width: 26px; /* Only used for CSS brand logo */ /*== Step 2: UI Customization */ /* Default Font Size & Color */ --font-size-default: 14px; @@ -3711,8 +3710,7 @@ --navigation-item-padding: 16px; --navigation-font-size: 14px; --navigation-sub-font-size: 12px; - --navigation-glyph-size: 20px; - /* For glyphicons that you can select in the Mendix Modeler */ + --navigation-glyph-size: 20px; /* For glyphicons that you can select in the Mendix Modeler */ --navigation-color: #fff; --navigation-color-hover: #fff; --navigation-color-active: #fff; @@ -3722,8 +3720,7 @@ /* Navigation Sidebar */ --navsidebar-font-size: 14px; --navsidebar-sub-font-size: 12px; - --navsidebar-glyph-size: 20px; - /* For glyphicons that you can select in the Mendix Modeler */ + --navsidebar-glyph-size: 20px; /* For glyphicons that you can select in the Mendix Modeler */ --navsidebar-color: #fff; --navsidebar-color-hover: #fff; --navsidebar-color-active: #fff; @@ -3795,8 +3792,7 @@ /*## Define background-color, border-color and text. Used in components/buttons */ /* Default button style */ --btn-font-size: 14px; - --btn-bordered: false; - /* Default value false, set to true if you want this effect */ + --btn-bordered: false; /* Default value false, set to true if you want this effect */ --btn-border-radius: 5px; /* Button Background Color */ --btn-default-bg: #fff; @@ -4451,92 +4447,75 @@ th { /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, -*:before, -*:after { + *:before, + *:after { color: #000 !important; text-shadow: none !important; background: transparent !important; -webkit-box-shadow: none !important; box-shadow: none !important; } - a, -a:visited { + a:visited { text-decoration: underline; } - a[href]:after { content: " (" attr(href) ")"; } - abbr[title]:after { content: " (" attr(title) ")"; } - a[href^="#"]:after, -a[href^="javascript:"]:after { + a[href^="javascript:"]:after { content: ""; } - pre, -blockquote { + blockquote { border: 1px solid #999; page-break-inside: avoid; } - thead { display: table-header-group; } - tr, -img { + img { page-break-inside: avoid; } - img { max-width: 100% !important; } - p, -h2, -h3 { + h2, + h3 { orphans: 3; widows: 3; } - h2, -h3 { + h3 { page-break-after: avoid; } - select { background: #fff !important; } - .navbar { display: none; } - .btn > .caret, -.dropup > .btn > .caret { + .dropup > .btn > .caret { border-top-color: #000 !important; } - .label { border: 1px solid #000; } - .table { border-collapse: collapse !important; } - .table td, -.table th { + .table th { background-color: #fff !important; } - .table-bordered th, -.table-bordered td { + .table-bordered td { border: 1px solid #ddd !important; } } @@ -6076,7 +6055,6 @@ dd { text-overflow: ellipsis; white-space: nowrap; } - .dl-horizontal dd { margin-left: 180px; } @@ -6479,46 +6457,40 @@ table th[class*=col-] { -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } - .table-responsive > .table { margin-bottom: 0; } - .table-responsive > .table > thead > tr > th, -.table-responsive > .table > tbody > tr > th, -.table-responsive > .table > tfoot > tr > th, -.table-responsive > .table > thead > tr > td, -.table-responsive > .table > tbody > tr > td, -.table-responsive > .table > tfoot > tr > td { + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } - .table-responsive > .table-bordered { border: 0; } - .table-responsive > .table-bordered > thead > tr > th:first-child, -.table-responsive > .table-bordered > tbody > tr > th:first-child, -.table-responsive > .table-bordered > tfoot > tr > th:first-child, -.table-responsive > .table-bordered > thead > tr > td:first-child, -.table-responsive > .table-bordered > tbody > tr > td:first-child, -.table-responsive > .table-bordered > tfoot > tr > td:first-child { + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } - .table-responsive > .table-bordered > thead > tr > th:last-child, -.table-responsive > .table-bordered > tbody > tr > th:last-child, -.table-responsive > .table-bordered > tfoot > tr > th:last-child, -.table-responsive > .table-bordered > thead > tr > td:last-child, -.table-responsive > .table-bordered > tbody > tr > td:last-child, -.table-responsive > .table-bordered > tfoot > tr > td:last-child { + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } - .table-responsive > .table-bordered > tbody > tr:last-child > th, -.table-responsive > .table-bordered > tfoot > tr:last-child > th, -.table-responsive > .table-bordered > tbody > tr:last-child > td, -.table-responsive > .table-bordered > tfoot > tr:last-child > td { + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } @@ -6937,60 +6909,50 @@ select[multiple].form-group-lg .form-control { margin-bottom: 0; vertical-align: middle; } - .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } - .form-inline .form-control-static, .form-inline .form-group div[class*=textBox] > .control-label, .form-group .form-inline div[class*=textBox] > .control-label, -.form-inline .form-group div[class*=textArea] > .control-label, -.form-group .form-inline div[class*=textArea] > .control-label, -.form-inline .form-group div[class*=datePicker] > .control-label, -.form-group .form-inline div[class*=datePicker] > .control-label { + .form-inline .form-group div[class*=textArea] > .control-label, + .form-group .form-inline div[class*=textArea] > .control-label, + .form-inline .form-group div[class*=datePicker] > .control-label, + .form-group .form-inline div[class*=datePicker] > .control-label { display: inline-block; } - .form-inline .input-group { display: inline-table; vertical-align: middle; } - .form-inline .input-group .input-group-addon, -.form-inline .input-group .input-group-btn, -.form-inline .input-group .form-control { + .form-inline .input-group .input-group-btn, + .form-inline .input-group .form-control { width: auto; } - .form-inline .input-group > .form-control { width: 100%; } - .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } - .form-inline .radio, -.form-inline .checkbox { + .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } - .form-inline .radio label, -.form-inline .checkbox label { + .form-inline .checkbox label { padding-left: 0; } - .form-inline .radio input[type=radio], -.form-inline .checkbox input[type=checkbox] { + .form-inline .checkbox input[type=checkbox] { position: relative; margin-left: 0; } - .form-inline .has-feedback .form-control-feedback { top: 0; } @@ -7664,7 +7626,6 @@ tbody.collapse.in { right: 0; left: auto; } - .navbar-right .dropdown-menu-left { right: auto; left: 0; @@ -8162,7 +8123,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn { display: table-cell; width: 1%; } - .nav-tabs.nav-justified > li > a { margin-bottom: 0; } @@ -8183,10 +8143,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } - .nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #fff; } } @@ -8241,7 +8200,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn { display: table-cell; width: 1%; } - .nav-justified > li > a { margin-bottom: 0; } @@ -8266,10 +8224,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } - .nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { border-bottom-color: #fff; } } @@ -8325,21 +8282,18 @@ select[multiple].input-group-sm > .input-group-btn > .btn { -webkit-box-shadow: none; box-shadow: none; } - .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } - .navbar-collapse.in { overflow-y: visible; } - .navbar-fixed-top .navbar-collapse, -.navbar-static-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { padding-right: 0; padding-left: 0; } @@ -8351,7 +8305,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { + .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } @@ -8365,9 +8319,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn { @media (min-width: 768px) { .container > .navbar-header, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-collapse { + .container-fluid > .navbar-header, + .container > .navbar-collapse, + .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } @@ -8392,7 +8346,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { @media (min-width: 768px) { .navbar-fixed-top, -.navbar-fixed-bottom { + .navbar-fixed-bottom { border-radius: 0; } } @@ -8426,7 +8380,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { @media (min-width: 768px) { .navbar > .container .navbar-brand, -.navbar > .container-fluid .navbar-brand { + .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } @@ -8484,18 +8438,15 @@ select[multiple].input-group-sm > .input-group-btn > .btn { -webkit-box-shadow: none; box-shadow: none; } - .navbar-nav .open .dropdown-menu > li > a, -.navbar-nav .open .dropdown-menu .dropdown-header { + .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } - .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } - .navbar-nav .open .dropdown-menu > li > a:hover, -.navbar-nav .open .dropdown-menu > li > a:focus { + .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @@ -8504,11 +8455,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn { float: left; margin: 0; } - .navbar-nav > li { float: left; } - .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; @@ -8532,60 +8481,50 @@ select[multiple].input-group-sm > .input-group-btn > .btn { margin-bottom: 0; vertical-align: middle; } - .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } - .navbar-form .form-control-static, .navbar-form .form-group div[class*=textBox] > .control-label, .form-group .navbar-form div[class*=textBox] > .control-label, -.navbar-form .form-group div[class*=textArea] > .control-label, -.form-group .navbar-form div[class*=textArea] > .control-label, -.navbar-form .form-group div[class*=datePicker] > .control-label, -.form-group .navbar-form div[class*=datePicker] > .control-label { + .navbar-form .form-group div[class*=textArea] > .control-label, + .form-group .navbar-form div[class*=textArea] > .control-label, + .navbar-form .form-group div[class*=datePicker] > .control-label, + .form-group .navbar-form div[class*=datePicker] > .control-label { display: inline-block; } - .navbar-form .input-group { display: inline-table; vertical-align: middle; } - .navbar-form .input-group .input-group-addon, -.navbar-form .input-group .input-group-btn, -.navbar-form .input-group .form-control { + .navbar-form .input-group .input-group-btn, + .navbar-form .input-group .form-control { width: auto; } - .navbar-form .input-group > .form-control { width: 100%; } - .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } - .navbar-form .radio, -.navbar-form .checkbox { + .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } - .navbar-form .radio label, -.navbar-form .checkbox label { + .navbar-form .checkbox label { padding-left: 0; } - .navbar-form .radio input[type=radio], -.navbar-form .checkbox input[type=checkbox] { + .navbar-form .checkbox input[type=checkbox] { position: relative; margin-left: 0; } - .navbar-form .has-feedback .form-control-feedback { top: 0; } @@ -8594,7 +8533,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn { .navbar-form .form-group { margin-bottom: 5px; } - .navbar-form .form-group:last-child { margin-bottom: 0; } @@ -8656,12 +8594,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn { .navbar-left { float: left !important; } - .navbar-right { float: right !important; margin-right: -15px; } - .navbar-right ~ .navbar-right { margin-right: 0; } @@ -8738,23 +8674,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777; } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, -.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #333; background-color: transparent; } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, -.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, -.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555; background-color: #e7e7e7; } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, -.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, -.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #ccc; background-color: transparent; } @@ -8855,31 +8788,26 @@ fieldset[disabled] .navbar-default .btn-link:focus { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #080808; } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #080808; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #9d9d9d; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, -.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, -.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, -.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #fff; background-color: #080808; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, -.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, -.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444; background-color: transparent; } @@ -9255,15 +9183,13 @@ a.badge:focus { .jumbotron { padding: 48px 0; } - .container .jumbotron, -.container-fluid .jumbotron { + .container-fluid .jumbotron { padding-right: 60px; padding-left: 60px; } - .jumbotron h1, -.jumbotron .h1 { + .jumbotron .h1 { font-size: 63px; } } @@ -10269,12 +10195,10 @@ button.close { width: 600px; margin: 30px auto; } - .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } - .modal-sm { width: 300px; } @@ -10576,24 +10500,21 @@ button.close { -webkit-perspective: 1000; perspective: 1000; } - .carousel-inner > .item.next, -.carousel-inner > .item.active.right { + .carousel-inner > .item.active.right { left: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } - .carousel-inner > .item.prev, -.carousel-inner > .item.active.left { + .carousel-inner > .item.active.left { left: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } - .carousel-inner > .item.next.left, -.carousel-inner > .item.prev.right, -.carousel-inner > .item.active { + .carousel-inner > .item.prev.right, + .carousel-inner > .item.active { left: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); @@ -10770,31 +10691,27 @@ button.close { @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right, -.carousel-control .icon-prev, -.carousel-control .icon-next { + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; font-size: 30px; } - .carousel-control .glyphicon-chevron-left, -.carousel-control .icon-prev { + .carousel-control .icon-prev { margin-left: -15px; } - .carousel-control .glyphicon-chevron-right, -.carousel-control .icon-next { + .carousel-control .icon-next { margin-right: -15px; } - .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } - .carousel-indicators { bottom: 20px; } @@ -10922,17 +10839,14 @@ button.close { .visible-xs { display: block !important; } - table.visible-xs { display: table; } - tr.visible-xs { display: table-row !important; } - th.visible-xs, -td.visible-xs { + td.visible-xs { display: table-cell !important; } } @@ -10955,17 +10869,14 @@ td.visible-xs { .visible-sm { display: block !important; } - table.visible-sm { display: table; } - tr.visible-sm { display: table-row !important; } - th.visible-sm, -td.visible-sm { + td.visible-sm { display: table-cell !important; } } @@ -10988,17 +10899,14 @@ td.visible-sm { .visible-md { display: block !important; } - table.visible-md { display: table; } - tr.visible-md { display: table-row !important; } - th.visible-md, -td.visible-md { + td.visible-md { display: table-cell !important; } } @@ -11021,17 +10929,14 @@ td.visible-md { .visible-lg { display: block !important; } - table.visible-lg { display: table; } - tr.visible-lg { display: table-row !important; } - th.visible-lg, -td.visible-lg { + td.visible-lg { display: table-cell !important; } } @@ -11078,17 +10983,14 @@ td.visible-lg { .visible-print { display: block !important; } - table.visible-print { display: table; } - tr.visible-print { display: table-row !important; } - th.visible-print, -td.visible-print { + td.visible-print { display: table-cell !important; } } @@ -11428,17 +11330,17 @@ td.visible-print { } @media (min-width: 768px) { [dir=rtl] .col-sm-1, -[dir=rtl] .col-sm-2, -[dir=rtl] .col-sm-3, -[dir=rtl] .col-sm-4, -[dir=rtl] .col-sm-5, -[dir=rtl] .col-sm-6, -[dir=rtl] .col-sm-7, -[dir=rtl] .col-sm-8, -[dir=rtl] .col-sm-9, -[dir=rtl] .col-sm-10, -[dir=rtl] .col-sm-11, -[dir=rtl] .col-sm-12 { + [dir=rtl] .col-sm-2, + [dir=rtl] .col-sm-3, + [dir=rtl] .col-sm-4, + [dir=rtl] .col-sm-5, + [dir=rtl] .col-sm-6, + [dir=rtl] .col-sm-7, + [dir=rtl] .col-sm-8, + [dir=rtl] .col-sm-9, + [dir=rtl] .col-sm-10, + [dir=rtl] .col-sm-11, + [dir=rtl] .col-sm-12 { float: right; } [dir=rtl] .col-sm-12 { @@ -11636,17 +11538,17 @@ td.visible-print { } @media (min-width: 992px) { [dir=rtl] .col-md-1, -[dir=rtl] .col-md-2, -[dir=rtl] .col-md-3, -[dir=rtl] .col-md-4, -[dir=rtl] .col-md-5, -[dir=rtl] .col-md-6, -[dir=rtl] .col-md-7, -[dir=rtl] .col-md-8, -[dir=rtl] .col-md-9, -[dir=rtl] .col-md-10, -[dir=rtl] .col-md-11, -[dir=rtl] .col-md-12 { + [dir=rtl] .col-md-2, + [dir=rtl] .col-md-3, + [dir=rtl] .col-md-4, + [dir=rtl] .col-md-5, + [dir=rtl] .col-md-6, + [dir=rtl] .col-md-7, + [dir=rtl] .col-md-8, + [dir=rtl] .col-md-9, + [dir=rtl] .col-md-10, + [dir=rtl] .col-md-11, + [dir=rtl] .col-md-12 { float: right; } [dir=rtl] .col-md-12 { @@ -11844,17 +11746,17 @@ td.visible-print { } @media (min-width: 1200px) { [dir=rtl] .col-lg-1, -[dir=rtl] .col-lg-2, -[dir=rtl] .col-lg-3, -[dir=rtl] .col-lg-4, -[dir=rtl] .col-lg-5, -[dir=rtl] .col-lg-6, -[dir=rtl] .col-lg-7, -[dir=rtl] .col-lg-8, -[dir=rtl] .col-lg-9, -[dir=rtl] .col-lg-10, -[dir=rtl] .col-lg-11, -[dir=rtl] .col-lg-12 { + [dir=rtl] .col-lg-2, + [dir=rtl] .col-lg-3, + [dir=rtl] .col-lg-4, + [dir=rtl] .col-lg-5, + [dir=rtl] .col-lg-6, + [dir=rtl] .col-lg-7, + [dir=rtl] .col-lg-8, + [dir=rtl] .col-lg-9, + [dir=rtl] .col-lg-10, + [dir=rtl] .col-lg-11, + [dir=rtl] .col-lg-12 { float: right; } [dir=rtl] .col-lg-12 { @@ -12061,20 +11963,20 @@ td.visible-print { border: 0; } [dir=rtl] .table-responsive > .table-bordered > thead > tr > th:first-child, -[dir=rtl] .table-responsive > .table-bordered > tbody > tr > th:first-child, -[dir=rtl] .table-responsive > .table-bordered > tfoot > tr > th:first-child, -[dir=rtl] .table-responsive > .table-bordered > thead > tr > td:first-child, -[dir=rtl] .table-responsive > .table-bordered > tbody > tr > td:first-child, -[dir=rtl] .table-responsive > .table-bordered > tfoot > tr > td:first-child { + [dir=rtl] .table-responsive > .table-bordered > tbody > tr > th:first-child, + [dir=rtl] .table-responsive > .table-bordered > tfoot > tr > th:first-child, + [dir=rtl] .table-responsive > .table-bordered > thead > tr > td:first-child, + [dir=rtl] .table-responsive > .table-bordered > tbody > tr > td:first-child, + [dir=rtl] .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-right: 0; border-left: initial; } [dir=rtl] .table-responsive > .table-bordered > thead > tr > th:last-child, -[dir=rtl] .table-responsive > .table-bordered > tbody > tr > th:last-child, -[dir=rtl] .table-responsive > .table-bordered > tfoot > tr > th:last-child, -[dir=rtl] .table-responsive > .table-bordered > thead > tr > td:last-child, -[dir=rtl] .table-responsive > .table-bordered > tbody > tr > td:last-child, -[dir=rtl] .table-responsive > .table-bordered > tfoot > tr > td:last-child { + [dir=rtl] .table-responsive > .table-bordered > tbody > tr > th:last-child, + [dir=rtl] .table-responsive > .table-bordered > tfoot > tr > th:last-child, + [dir=rtl] .table-responsive > .table-bordered > thead > tr > td:last-child, + [dir=rtl] .table-responsive > .table-bordered > tbody > tr > td:last-child, + [dir=rtl] .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-left: 0; border-right: initial; } @@ -12115,7 +12017,7 @@ td.visible-print { padding-left: initial; } [dir=rtl] .form-inline .radio input[type=radio], -[dir=rtl] .form-inline .checkbox input[type=checkbox] { + [dir=rtl] .form-inline .checkbox input[type=checkbox] { margin-right: 0; margin-left: auto; } @@ -12341,7 +12243,7 @@ td.visible-print { } @media (min-width: 768px) { [dir=rtl] .navbar > .container .navbar-brand, -[dir=rtl] .navbar > .container-fluid .navbar-brand { + [dir=rtl] .navbar > .container-fluid .navbar-brand { margin-right: -15px; margin-left: auto; } @@ -12353,7 +12255,7 @@ td.visible-print { } @media (max-width: 767px) { [dir=rtl] .navbar-nav .open .dropdown-menu > li > a, -[dir=rtl] .navbar-nav .open .dropdown-menu .dropdown-header { + [dir=rtl] .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 25px 5px 15px; } } @@ -12655,12 +12557,12 @@ td.visible-print { } @media screen and (min-width: 768px) { [dir=rtl] .carousel-control .glyphicon-chevron-left, -[dir=rtl] .carousel-control .icon-prev { + [dir=rtl] .carousel-control .icon-prev { margin-left: 0; margin-right: -15px; } [dir=rtl] .carousel-control .glyphicon-chevron-right, -[dir=rtl] .carousel-control .icon-next { + [dir=rtl] .carousel-control .icon-next { margin-left: 0; margin-right: -15px; } @@ -12690,7 +12592,7 @@ td.visible-print { /* mendix base */ /* widgets */ /* reporting */ -/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9kb2pvL2Rpaml0L3RoZW1lcy9kaWppdC5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS9iYXNlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL2Zvcm1zLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9Ub29sdGlwLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9UYWJDb250YWluZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L19HcmlkLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9DYWxlbmRhci5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvRGF0YUdyaWQuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RlbXBsYXRlR3JpZC5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvU2Nyb2xsQ29udGFpbmVyLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9OYXZiYXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L05hdmlnYXRpb25UcmVlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9CdXR0b24uY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0dyb3VwQm94LmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9EYXRhVmlldy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvRGlhbG9nLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9XaW5kb3cuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0Ryb3BEb3duLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9IZWFkZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RpdGxlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9MaXN0Vmlldy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvTG9naW5EaWFsb2cuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L01lbnVCYXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L05hdmlnYXRpb25MaXN0LmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9Qcm9ncmVzcy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvUmVsb2FkTm90aWZpY2F0aW9uLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9SZXNpemFibGUuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RleHQuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RleHRBcmVhLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9VbmRlcmxheS5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvSW1hZ2Vab29tLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9TZWxlY3RCb3guY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0RlbW9Vc2VyU3dpdGNoZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L01hc3RlckRldGFpbC5jc3MiLCJ3ZWJwYWNrOi8vLy4vcmVwb3J0aW5nL3VpL3dpZGdldC9SZXBvcnQuY3NzIiwid2VicGFjazovLy8uL3JlcG9ydGluZy91aS93aWRnZXQvUmVwb3J0UGFyYW1ldGVyLmNzcyIsIndlYnBhY2s6Ly8vLi9yZXBvcnRpbmcvdWkvd2lkZ2V0L0RhdGVSYW5nZS5jc3MiLCJ3ZWJwYWNrOi8vLy4vcmVwb3J0aW5nL3VpL3dpZGdldC9SZXBvcnRNYXRyaXguY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvbXh1aS5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQUE7QUFDQTtBQUNBO0FBQ0E7Ozs7QUFJQTtBQUNBO0FBQ0E7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QUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsOEJBQThCO0FBQzlCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsMkJBQTJCO0FBQzNCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLDRCQUE0QjtBQUM1QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsY0FBYztBQUNkO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFdBQVc7QUFDWDtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFlBQVk7QUFDWjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBLGVBQWU7QUFDZjtBQUNBO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkIsd0JBQXdCO0FBQ3hCLFdBQVc7QUFDWDs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsYUFBYTtBQUNiO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQSxlQUFlLHlDQUF5QztBQUN4RDs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBLHdCQUF3QixvQkFBb0I7O0FBRTVDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLGVBQWU7QUFDZjs7QUFFQTtBQUNBO0FBQ0EsK0JBQStCO0FBQy9CLFlBQVk7QUFDWjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBLGdCQUFnQjtBQUNoQjs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0EsYUFBYTtBQUNiO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFlBQVk7QUFDWjs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0EsZ0JBQWdCO0FBQ2hCO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLHdCQUF3QjtBQUN4QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxpREFBaUQ7QUFDakQsMEJBQTBCO0FBQzFCOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxjQUFjO0FBQ2Q7QUFDQTtBQUNBO0FBQ0EsZ0JBQWdCO0FBQ2hCO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0EsZUFBZTtBQUNmOzs7QUFHQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0EsYUFBYTtBQUNiLGFBQWEsd0RBQXdEO0FBQ3JFO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0Esd0JBQXdCO0FBQ3hCOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtB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QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esa0JBQWtCO0FBQ2xCO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLG9CQUFvQjtBQUNwQjs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0EsVUFBVTtBQUNWO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQSxrQkFBa0I7QUFDbEI7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLHdCQUF3QjtBQUN4QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxrQkFBa0I7QUFDbEI7QUFDQTtBQUNBLFlBQVk7QUFDWjtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7O0FBR0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxVQUFVO0FBQ1Y7QUFDQTs7QUFFQTtBQUNBLGdCQUFnQjtBQUNoQjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUdBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLGlDQUFpQztBQUNqQztBQUNBO0FBQ0EsNEJBQTRCO0FBQzVCO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esd0JBQXdCO0FBQ3hCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBLHFCQUFxQjtBQUNyQjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSxpQkFBaUI7O0FBRWpCO0FBQ0E7QUFDQSwyQkFBMkI7QUFDM0I7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdnNFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsOEJBQThCO0FBQzlCO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQzs7O0FDOUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUN6REE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSwrQ0FBK0M7QUFDL0M7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNmQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsbUNBQW1DO0FBQ25DO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsZUFBZTtBQUNmOztBQzdCQTtBQUNBO0FBQ0E7QUFDQSxxQkFBcUI7QUFDckI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3JGQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQzFCQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLHVCQUF1QjtBQUN2QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxRQUFRLDhCQUE4QjtBQUN0QyxVQUFVLCtCQUErQjtBQUN6Qzs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUN0R0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUN6QkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNyREE7QUFDQTtBQUNBO0FBQ0E7OztBQ0hBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdkRBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDUEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ25DQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUMvQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNoQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDeEJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNyQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esc0JBQXNCO0FBQ3RCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3RCQTtBQUNBO0FBQ0E7QUFDQTs7QUNIQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDN0VBO0FBQ0E7QUFDQTs7QUNGQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQztBQUNBO0FBQ0E7O0FDYkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDZkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsbUNBQW1DO0FBQ25DOztBQy9CQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUNmQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3JFQTtBQUNBO0FBQ0E7O0FDRkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ2RBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNSQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDZEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDeEJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxtQ0FBbUM7QUFDbkM7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQzs7QUMvREE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSxDO0FDaEVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ05BO0FBQ0E7QUFDQTs7QUNGQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDWEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOzs7O0FDekJBOztBQUVBOztBQUVBOztBQUVBOztBQUVBIiwiZmlsZSI6Im14dWkvdWkvbXh1aS5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuXHRFc3NlbnRpYWwgc3R5bGVzIHRoYXQgdGhlbWVzIGNhbiBpbmhlcml0LlxuXHRJbiBvdGhlciB3b3Jkcywgd29ya3MgYnV0IGRvZXNuJ3QgbG9vayBncmVhdC5cbiovXG5cblxuXG4vKioqKlxuXHRcdEdFTkVSSUMgUElFQ0VTXG4gKioqKi9cblxuLmRpaml0UmVzZXQge1xuXHQvKiBVc2UgdGhpcyBzdHlsZSB0byBudWxsIG91dCBwYWRkaW5nLCBtYXJnaW4sIGJvcmRlciBpbiB5b3VyIHRlbXBsYXRlIGVsZW1lbnRzXG5cdFx0c28gdGhhdCBwYWdlIHNwZWNpZmljIHN0eWxlcyBkb24ndCBicmVhayB0aGVtLlxuXHRcdC0gVXNlIGluIGFsbCBUQUJMRSwgVFIgYW5kIFREIHRhZ3MuXG5cdCovXG5cdG1hcmdpbjowO1xuXHRib3JkZXI6MDtcblx0cGFkZGluZzowO1xuXHRmb250OiBpbmhlcml0O1xuXHRsaW5lLWhlaWdodDpub3JtYWw7XG5cdGNvbG9yOiBpbmhlcml0O1xufVxuLmRqX2ExMXkgLmRpaml0UmVzZXQge1xuXHQtbW96LWFwcGVhcmFuY2U6IG5vbmU7IC8qIHJlbW92ZSBwcmVkZWZpbmVkIGhpZ2gtY29udHJhc3Qgc3R5bGluZyBpbiBGaXJlZm94ICovXG59XG5cbi5kaWppdElubGluZSB7XG5cdC8qICBUbyBpbmxpbmUgYmxvY2sgZWxlbWVudHMuXG5cdFx0U2ltaWxhciB0byBJbmxpbmVCb3ggYmVsb3csIGJ1dCB0aGlzIGhhcyBmZXdlciBzaWRlLWVmZmVjdHMgaW4gTW96LlxuXHRcdEFsc28sIGFwcGFyZW50bHkgd29ya3Mgb24gYSBESVYgYXMgd2VsbCBhcyBhIEZJRUxEU0VULlxuXHQqL1xuXHRkaXNwbGF5OmlubGluZS1ibG9jaztcdFx0XHQvKiB3ZWJraXQgYW5kIEZGMyAqL1xuXHQjem9vbTogMTsgLyogc2V0IGhhc0xheW91dDp0cnVlIHRvIG1pbWljIGlubGluZS1ibG9jayAqL1xuXHQjZGlzcGxheTppbmxpbmU7IC8qIGRvbid0IHVzZSAuZGpfaWUgc2luY2UgdGhhdCBpbmNyZWFzZXMgdGhlIHByaW9yaXR5ICovXG5cdGJvcmRlcjowO1xuXHRwYWRkaW5nOjA7XG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0I3ZlcnRpY2FsLWFsaWduOiBhdXRvO1x0LyogbWFrZXMgVGV4dEJveCxCdXR0b24gbGluZSB1cCB3L25hdGl2ZSBjb3VudGVycGFydHMgb24gSUU2ICovXG59XG5cbnRhYmxlLmRpaml0SW5saW5lIHtcblx0LyogVG8gaW5saW5lIHRhYmxlcyB3aXRoIGEgZ2l2ZW4gd2lkdGggc2V0ICovXG5cdGRpc3BsYXk6aW5saW5lLXRhYmxlO1xuXHRib3gtc2l6aW5nOiBjb250ZW50LWJveDsgLW1vei1ib3gtc2l6aW5nOiBjb250ZW50LWJveDtcbn1cblxuLmRpaml0SGlkZGVuIHtcblx0LyogVG8gaGlkZSB1bnNlbGVjdGVkIHBhbmVzIGluIFN0YWNrQ29udGFpbmVyIGV0Yy4gKi9cblx0cG9zaXRpb246IGFic29sdXRlOyAvKiByZW1vdmUgZnJvbSBub3JtYWwgZG9jdW1lbnQgZmxvdyB0byBzaW11bGF0ZSBkaXNwbGF5OiBub25lICovXG5cdHZpc2liaWxpdHk6IGhpZGRlbjsgLyogaGlkZSBlbGVtZW50IGZyb20gdmlldywgYnV0IGRvbid0IGJyZWFrIHNjcm9sbGluZywgc2VlICMxODYxMiAqL1xufVxuLmRpaml0SGlkZGVuICoge1xuXHR2aXNpYmlsaXR5OiBoaWRkZW4gIWltcG9ydGFudDsgLyogaGlkZSB2aXNpYmlsaXR5OnZpc2libGUgZGVzY2VuZGFudHMgb2YgY2xhc3M9ZGlqaXRIaWRkZW4gbm9kZXMsIHNlZSAjMTg3OTkgKi9cbn1cblxuLmRpaml0VmlzaWJsZSB7XG5cdC8qIFRvIHNob3cgc2VsZWN0ZWQgcGFuZSBpbiBTdGFja0NvbnRhaW5lciBldGMuICovXG5cdGRpc3BsYXk6IGJsb2NrICFpbXBvcnRhbnQ7XHQvKiBvdmVycmlkZSB1c2VyJ3MgZGlzcGxheTpub25lIHNldHRpbmcgdmlhIHN0eWxlIHNldHRpbmcgb3IgaW5kaXJlY3RseSB2aWEgY2xhc3MgKi9cblx0cG9zaXRpb246IHJlbGF0aXZlO1x0XHRcdC8qIHRvIHN1cHBvcnQgc2V0dGluZyB3aWR0aC9oZWlnaHQsIHNlZSAjMjAzMyAqL1xuXHR2aXNpYmlsaXR5OiB2aXNpYmxlO1xufVxuXG4uZGpfaWU2IC5kaWppdENvbWJvQm94IC5kaWppdElucHV0Q29udGFpbmVyLFxuLmRpaml0SW5wdXRDb250YWluZXIge1xuXHQvKiBmb3IgcG9zaXRpb25pbmcgb2YgcGxhY2VIb2xkZXIgKi9cblx0I3pvb206IDE7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdGZsb2F0OiBub25lICFpbXBvcnRhbnQ7IC8qIG5lZWRlZCB0byBzcXVlZXplIHRoZSBJTlBVVCBpbiAqL1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG59XG4uZGpfaWU3IC5kaWppdElucHV0Q29udGFpbmVyIHtcblx0ZmxvYXQ6IGxlZnQgIWltcG9ydGFudDsgLyogbmVlZGVkIGJ5IElFIHRvIHNxdWVlemUgdGhlIElOUFVUIGluICovXG5cdGNsZWFyOiBsZWZ0O1xuXHRkaXNwbGF5OiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDsgLyogdG8gZml4IHdyb25nIHRleHQgYWxpZ25tZW50IGluIHRleHRkaXI9cnRsIHRleHQgYm94ICovXG59XG5cbi5kal9pZSAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWUgaW5wdXQuZGlqaXRUZXh0Qm94LFxuLmRqX2llIC5kaWppdFRleHRCb3ggaW5wdXQge1xuXHRmb250LXNpemU6IDEwMCU7XG59XG4uZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uVGV4dCB7XG5cdGZsb2F0OiBsZWZ0O1xuXHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuVEFCTEUuZGlqaXRTZWxlY3Qge1xuXHRwYWRkaW5nOiAwICFpbXBvcnRhbnQ7IC8qIG1lc3NlcyB1cCBib3JkZXIgYWxpZ25tZW50ICovXG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7IC8qIHNvIGpzZmlkZGxlIHdvcmtzIHdpdGggTm9ybWFsaXplZCBDU1MgY2hlY2tlZCAqL1xufVxuLmRpaml0VGV4dEJveCAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyLFxuLmRpaml0VGV4dEJveCAuZGlqaXRBcnJvd0J1dHRvbkNvbnRhaW5lcixcbi5kaWppdFZhbGlkYXRpb25UZXh0Qm94IC5kaWppdFZhbGlkYXRpb25Db250YWluZXIge1xuXHRmbG9hdDogcmlnaHQ7XG5cdHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5kaWppdFNlbGVjdCBpbnB1dC5kaWppdElucHV0RmllbGQsXG4uZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRGaWVsZCB7XG5cdC8qIG92ZXJyaWRlIHVucmVhc29uYWJsZSB1c2VyIHN0eWxpbmcgb2YgYnV0dG9ucyBhbmQgaWNvbnMgKi9cblx0cGFkZGluZy1sZWZ0OiAwICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmctcmlnaHQ6IDAgIWltcG9ydGFudDtcbn1cbi5kaWppdFZhbGlkYXRpb25UZXh0Qm94IC5kaWppdFZhbGlkYXRpb25Db250YWluZXIge1xuXHRkaXNwbGF5OiBub25lO1xufVxuXG4uZGlqaXRUZWVueSB7XG5cdGZvbnQtc2l6ZToxcHg7XG5cdGxpbmUtaGVpZ2h0OjFweDtcbn1cblxuLmRpaml0T2ZmU2NyZWVuIHsgLyogdGhlc2UgY2xhc3MgYXR0cmlidXRlcyBzaG91bGQgc3VwZXJzZWRlIGFueSBpbmxpbmUgcG9zaXRpb25pbmcgc3R5bGUgKi9cblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdGxlZnQ6IC0xMDAwMHB4ICFpbXBvcnRhbnQ7XG5cdHRvcDogLTEwMDAwcHggIWltcG9ydGFudDtcbn1cblxuLypcbiAqIFBvcHVwIGl0ZW1zIGhhdmUgYSB3cmFwcGVyIGRpdiAoZGlqaXRQb3B1cClcbiAqIHdpdGggdGhlIHJlYWwgcG9wdXAgaW5zaWRlLCBhbmQgbWF5YmUgYW4gaWZyYW1lIHRvb1xuICovXG4uZGlqaXRQb3B1cCB7XG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0YmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQ7XG5cdG1hcmdpbjogMDtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xuXHQtd2Via2l0LW92ZXJmbG93LXNjcm9sbGluZzogdG91Y2g7XG59XG5cbi5kaWppdFBvc2l0aW9uT25seSB7XG5cdC8qIE51bGwgb3V0IGFsbCBwb3NpdGlvbi1yZWxhdGVkIHByb3BlcnRpZXMgKi9cblx0cGFkZGluZzogMCAhaW1wb3J0YW50O1xuXHRib3JkZXI6IDAgIWltcG9ydGFudDtcblx0YmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblx0YmFja2dyb3VuZC1pbWFnZTogbm9uZSAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcblx0d2lkdGg6IGF1dG8gIWltcG9ydGFudDtcbn1cblxuLmRpaml0Tm9uUG9zaXRpb25Pbmx5IHtcblx0LyogTnVsbCBwb3NpdGlvbi1yZWxhdGVkIHByb3BlcnRpZXMgKi9cblx0ZmxvYXQ6IG5vbmUgIWltcG9ydGFudDtcblx0cG9zaXRpb246IHN0YXRpYyAhaW1wb3J0YW50O1xuXHRtYXJnaW46IDAgMCAwIDAgIWltcG9ydGFudDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZSAhaW1wb3J0YW50O1xufVxuXG4uZGlqaXRCYWNrZ3JvdW5kSWZyYW1lIHtcblx0LyogaWZyYW1lIHVzZWQgdG8gcHJldmVudCBwcm9ibGVtcyB3aXRoIFBERiBvciBvdGhlciBhcHBsZXRzIG92ZXJsYXlpbmcgbWVudXMgZXRjICovXG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0bGVmdDogMDtcblx0dG9wOiAwO1xuXHR3aWR0aDogMTAwJTtcblx0aGVpZ2h0OiAxMDAlO1xuXHR6LWluZGV4OiAtMTtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdERpc3BsYXlOb25lIHtcblx0LyogaGlkZSBzb21ldGhpbmcuICBVc2UgdGhpcyBhcyBhIGNsYXNzIHJhdGhlciB0aGFuIGVsZW1lbnQuc3R5bGUgc28gYW5vdGhlciBjbGFzcyBjYW4gb3ZlcnJpZGUgKi9cblx0ZGlzcGxheTpub25lICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdENvbnRhaW5lciB7XG5cdC8qIGZvciBhbGwgbGF5b3V0IGNvbnRhaW5lcnMgKi9cblx0b3ZlcmZsb3c6IGhpZGRlbjtcdC8qIG5lZWQgb24gSUUgc28gc29tZXRoaW5nIGNhbiBiZSByZWR1Y2VkIGluIHNpemUsIGFuZCBzbyBzY3JvbGxiYXJzIGFyZW4ndCB0ZW1wb3JhcmlseSBkaXNwbGF5ZWQgd2hlbiByZXNpemluZyAqL1xufVxuXG4vKioqKlxuXHRcdEExMVlcbiAqKioqL1xuLmRqX2ExMXkgLmRpaml0SWNvbixcbi5kal9hMTF5IGRpdi5kaWppdEFycm93QnV0dG9uSW5uZXIsIC8qIGlzIHRoaXMgb25seSBmb3IgU3Bpbm5lcj8gIGlmIHNvLCBpdCBzaG91bGQgYmUgZGVsZXRlZCAqL1xuLmRqX2ExMXkgc3Bhbi5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGpfYTExeSBpbWcuZGlqaXRBcnJvd0J1dHRvbklubmVyLFxuLmRqX2ExMXkgLmRpaml0Q2FsZW5kYXJJbmNyZW1lbnRDb250cm9sLFxuLmRqX2ExMXkgLmRpaml0VHJlZUV4cGFuZG8ge1xuXHQvKiBoaWRlIGljb24gbm9kZXMgaW4gaGlnaCBjb250cmFzdCBtb2RlOyB3aGVuIG5lY2Vzc2FyeSB0aGV5IHdpbGwgYmUgcmVwbGFjZWQgYnkgY2hhcmFjdGVyIGVxdWl2YWxlbnRzXG5cdCAqIGV4Y2VwdGlvbiBmb3IgaW5wdXQuZGlqaXRBcnJvd0J1dHRvbklubmVyLCBiZWNhdXNlIHRoZSBpY29uIGFuZCBjaGFyYWN0ZXIgYXJlIGNvbnRyb2xsZWQgYnkgdGhlIHNhbWUgbm9kZSAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRpaml0U3Bpbm5lciBkaXYuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0ZGlzcGxheTogYmxvY2s7IC8qIG92ZXJyaWRlIHByZXZpb3VzIHJ1bGUgKi9cbn1cblxuLmRqX2ExMXkgLmRpaml0QTExeVNpZGVBcnJvdyB7XG5cdGRpc3BsYXk6IGlubGluZSAhaW1wb3J0YW50OyAvKiBkaXNwbGF5IHRleHQgaW5zdGVhZCAqL1xuXHRjdXJzb3I6IHBvaW50ZXI7XG59XG5cbi8qXG4gKiBTaW5jZSB3ZSBjYW4ndCB1c2Ugc2hhZGluZyBpbiBhMTF5IG1vZGUsIGFuZCBzaW5jZSB0aGUgdW5kZXJsaW5lIGluZGljYXRlcyB0b2RheSdzIGRhdGUsXG4gKiB1c2UgYSBib3JkZXIgdG8gc2hvdyB0aGUgc2VsZWN0ZWQgZGF0ZS5cbiAqIEF2b2lkIHNjcmVlbiBqaXR0ZXIgd2hlbiBzd2l0Y2hpbmcgc2VsZWN0ZWQgZGF0ZSBieSBjb21wZW5zYXRpbmcgZm9yIHRoZSBzZWxlY3RlZCBub2RlJ3NcbiAqIGJvcmRlciB3L3BhZGRpbmcgb24gb3RoZXIgbm9kZXMuXG4gKi9cbi5kal9hMTF5IC5kaWppdENhbGVuZGFyRGF0ZUxhYmVsIHtcblx0cGFkZGluZzogMXB4O1xuXHRib3JkZXI6IDBweCAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0Q2FsZW5kYXJTZWxlY3RlZERhdGUgLmRpaml0Q2FsZW5kYXJEYXRlTGFiZWwge1xuXHRib3JkZXItc3R5bGU6IHNvbGlkICFpbXBvcnRhbnQ7XG5cdGJvcmRlci13aWR0aDogMXB4ICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmc6IDA7XG59XG4uZGpfYTExeSAuZGlqaXRDYWxlbmRhckRhdGVUZW1wbGF0ZSB7XG5cdHBhZGRpbmctYm90dG9tOiAwLjFlbSAhaW1wb3J0YW50O1x0Lyogb3RoZXJ3aXNlIGJvdHRvbSBib3JkZXIgZG9lc24ndCBhcHBlYXIgb24gSUUgKi9cblx0Ym9yZGVyOiAwcHggIWltcG9ydGFudDtcbn1cbi5kal9hMTF5IC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXI6IGJsYWNrIG91dHNldCBtZWRpdW0gIWltcG9ydGFudDtcblxuXHQvKiBJbiBjbGFybywgaG92ZXJpbmcgYSB0b29sYmFyIGJ1dHRvbiByZWR1Y2VzIHBhZGRpbmcgYW5kIGFkZHMgYSBib3JkZXIuXG5cdCAqIE5vdCBuZWVkZWQgaW4gYTExeSBtb2RlIHNpbmNlIFRvb2xiYXIgYnV0dG9ucyBhbHdheXMgaGF2ZSBhIGJvcmRlci5cblx0ICovXG5cdHBhZGRpbmc6IDAgIWltcG9ydGFudDtcbn1cbi5kal9hMTF5IC5kaWppdEFycm93QnV0dG9uIHtcblx0cGFkZGluZzogMCAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXRCdXR0b25Db250ZW50cyB7XG5cdG1hcmdpbjogMC4xNWVtOyAvKiBNYXJnaW4gbmVlZGVkIHRvIG1ha2UgZm9jdXMgb3V0bGluZSB2aXNpYmxlICovXG59XG5cbi5kal9hMTF5IC5kaWppdFRleHRCb3hSZWFkT25seSAuZGlqaXRJbnB1dEZpZWxkLFxuLmRqX2ExMXkgLmRpaml0VGV4dEJveFJlYWRPbmx5IC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItc3R5bGU6IG91dHNldCFpbXBvcnRhbnQ7XG5cdGJvcmRlci13aWR0aDogbWVkaXVtIWltcG9ydGFudDtcblx0Ym9yZGVyLWNvbG9yOiAjOTk5ICFpbXBvcnRhbnQ7XG5cdGNvbG9yOiM5OTkgIWltcG9ydGFudDtcbn1cblxuLyogYnV0dG9uIGlubmVyIGNvbnRlbnRzIC0gbGFiZWxzLCBpY29ucyBldGMuICovXG4uZGlqaXRCdXR0b25Ob2RlICoge1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLmRpaml0U2VsZWN0IC5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGlqaXRCdXR0b25Ob2RlIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHQvKiB0aGUgYXJyb3cgaWNvbiBub2RlICovXG5cdGJhY2tncm91bmQ6IG5vLXJlcGVhdCBjZW50ZXI7XG5cdHdpZHRoOiAxMnB4O1xuXHRoZWlnaHQ6IDEycHg7XG5cdGRpcmVjdGlvbjogbHRyOyAvKiBuZWVkZWQgYnkgSUUvUlRMICovXG59XG5cbi8qKioqXG5cdDMtZWxlbWVudCBib3JkZXJzOiAgKCBkaWppdExlZnQgKyBkaWppdFN0cmV0Y2ggKyBkaWppdFJpZ2h0IClcblx0VGhlc2Ugd2VyZSBhZGRlZCBmb3Igcm91bmRlZCBjb3JuZXJzIG9uIGRpaml0LmZvcm0uKkJ1dHRvbiBidXQgbmV2ZXIgYWN0dWFsbHkgdXNlZC5cbiAqKioqL1xuXG4uZGlqaXRMZWZ0IHtcblx0LyogTGVmdCBwYXJ0IG9mIGEgMy1lbGVtZW50IGJvcmRlciAqL1xuXHRiYWNrZ3JvdW5kLXBvc2l0aW9uOmxlZnQgdG9wO1xuXHRiYWNrZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7XG59XG5cbi5kaWppdFN0cmV0Y2gge1xuXHQvKiBNaWRkbGUgKHN0cmV0Y2h5KSBwYXJ0IG9mIGEgMy1lbGVtZW50IGJvcmRlciAqL1xuXHR3aGl0ZS1zcGFjZTpub3dyYXA7XHRcdFx0LyogTU9XOiBtb3ZlIHNvbWV3aGVyZSBlbHNlICovXG5cdGJhY2tncm91bmQtcmVwZWF0OnJlcGVhdC14O1xufVxuXG4uZGlqaXRSaWdodCB7XG5cdC8qIFJpZ2h0IHBhcnQgb2YgYSAzLWVsZW1lbnQgYm9yZGVyICovXG5cdCNkaXNwbGF5OmlubGluZTtcdFx0XHRcdC8qIElFNyBzaXplcyB0byBvdXRlciBzaXplIHcvbyB0aGlzICovXG5cdGJhY2tncm91bmQtcG9zaXRpb246cmlnaHQgdG9wO1xuXHRiYWNrZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7XG59XG5cbi8qIEJ1dHRvbnMgKi9cbi5kal9nZWNrbyAuZGpfYTExeSAuZGlqaXRCdXR0b25EaXNhYmxlZCAuZGlqaXRCdXR0b25Ob2RlIHtcblx0b3BhY2l0eTogMC41O1xufVxuXG4uZGlqaXRUb2dnbGVCdXR0b24sXG4uZGlqaXRCdXR0b24sXG4uZGlqaXREcm9wRG93bkJ1dHRvbixcbi5kaWppdENvbWJvQnV0dG9uIHtcblx0Lyogb3V0c2lkZSBvZiBidXR0b24gKi9cblx0bWFyZ2luOiAwLjJlbTtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cblxuLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRkaXNwbGF5OiBibG9jaztcdFx0LyogdG8gbWFrZSBmb2N1cyBib3JkZXIgcmVjdGFuZ3VsYXIgKi9cbn1cbnRkLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRkaXNwbGF5OiB0YWJsZS1jZWxsO1x0LyogYnV0IGRvbid0IGFmZmVjdCBTZWxlY3QsIENvbWJvQnV0dG9uICovXG59XG5cbi5kaWppdEJ1dHRvbk5vZGUgaW1nIHtcblx0LyogbWFrZSB0ZXh0IGFuZCBpbWFnZXMgbGluZSB1cCBjbGVhbmx5ICovXG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0LyptYXJnaW4tYm90dG9tOi4yZW07Ki9cbn1cblxuLmRpaml0VG9vbGJhciAuZGlqaXRDb21ib0J1dHRvbiB7XG5cdC8qIGJlY2F1c2UgVG9vbGJhciBvbmx5IGRyYXdzIGEgYm9yZGVyIGFyb3VuZCB0aGUgaG92ZXJlZCB0aGluZyAqL1xuXHRib3JkZXItY29sbGFwc2U6IHNlcGFyYXRlO1xufVxuXG4uZGlqaXRUb29sYmFyIC5kaWppdFRvZ2dsZUJ1dHRvbixcbi5kaWppdFRvb2xiYXIgLmRpaml0QnV0dG9uLFxuLmRpaml0VG9vbGJhciAuZGlqaXREcm9wRG93bkJ1dHRvbixcbi5kaWppdFRvb2xiYXIgLmRpaml0Q29tYm9CdXR0b24ge1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdFRvb2xiYXIgLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHQvKiBqdXN0IGJlY2F1c2UgaXQgdXNlZCB0byBiZSB0aGlzIHdheSAqL1xuXHRwYWRkaW5nOiAxcHggMnB4O1xufVxuXG5cbi5kal93ZWJraXQgLmRpaml0VG9vbGJhciAuZGlqaXREcm9wRG93bkJ1dHRvbiB7XG5cdHBhZGRpbmctbGVmdDogMC4zZW07XG59XG4uZGpfZ2Vja28gLmRpaml0VG9vbGJhciAuZGlqaXRCdXR0b25Ob2RlOjotbW96LWZvY3VzLWlubmVyIHtcblx0cGFkZGluZzowO1xufVxuXG4uZGlqaXRTZWxlY3Qge1xuXHRib3JkZXI6MXB4IHNvbGlkIGdyYXk7XG59XG4uZGlqaXRCdXR0b25Ob2RlIHtcblx0LyogTm9kZSB0aGF0IGlzIGFjdGluZyBhcyBhIGJ1dHRvbiAtLSBtYXkgb3IgbWF5IG5vdCBiZSBhIEJVVFRPTiBlbGVtZW50ICovXG5cdGJvcmRlcjoxcHggc29saWQgZ3JheTtcblx0bWFyZ2luOjA7XG5cdGxpbmUtaGVpZ2h0Om5vcm1hbDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcblx0I3ZlcnRpY2FsLWFsaWduOiBhdXRvO1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcbn1cbi5kal93ZWJraXQgLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIHtcblx0LyogYXBwYXJlbnQgV2ViS2l0IGJ1ZyB3aGVyZSBtZXNzaW5nIHdpdGggdGhlIGZvbnQgY291cGxlZCB3aXRoIGxpbmUtaGVpZ2h0Om5vcm1hbCBYIDIgKGRpaml0UmVzZXQgJiBkaWppdEJ1dHRvbk5vZGUpXG5cdGNhbiBiZSBkaWZmZXJlbnQgdGhhbiBqdXN0IGEgc2luZ2xlIGxpbmUtaGVpZ2h0Om5vcm1hbCwgdmlzaWJsZSBpbiBJbmxpbmVFZGl0Qm94L1NwaW5uZXIgKi9cblx0bGluZS1oZWlnaHQ6aW5oZXJpdDtcbn1cbi5kaWppdFRleHRCb3ggLmRpaml0QnV0dG9uTm9kZSB7XG5cdGJvcmRlci13aWR0aDogMDtcbn1cblxuLmRpaml0U2VsZWN0LFxuLmRpaml0U2VsZWN0ICosXG4uZGlqaXRCdXR0b25Ob2RlLFxuLmRpaml0QnV0dG9uTm9kZSAqIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGpfaWUgLmRpaml0QnV0dG9uTm9kZSB7XG5cdC8qIGVuc3VyZSBoYXNMYXlvdXQgKi9cblx0em9vbTogMTtcbn1cblxuLmRqX2llIC5kaWppdEJ1dHRvbk5vZGUgYnV0dG9uIHtcblx0Lypcblx0XHRkaXNndXN0aW5nIGhhY2sgdG8gZ2V0IHJpZCBvZiBzcHVyaW91cyBwYWRkaW5nIGFyb3VuZCBidXR0b24gZWxlbWVudHNcblx0XHRvbiBJRS4gTVNJRSBpcyB0cnVseSB0aGUgd2ViJ3MgYm9hdCBhbmNob3IuXG5cdCovXG5cdG92ZXJmbG93OiB2aXNpYmxlO1xufVxuXG5kaXYuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdGZsb2F0OiByaWdodDtcbn1cblxuLyoqKioqKlxuXHRUZXh0Qm94IHJlbGF0ZWQuXG5cdEV2ZXJ5dGhpbmcgdGhhdCBoYXMgYW4gPGlucHV0PlxuKioqKioqKi9cblxuLmRpaml0VGV4dEJveCB7XG5cdGJvcmRlcjogc29saWQgYmxhY2sgMXB4O1xuXHQjb3ZlcmZsb3c6IGhpZGRlbjsgLyogIzYwMjcsICM2MDY3ICovXG5cdHdpZHRoOiAxNWVtO1x0LyogbmVlZCB0byBzZXQgZGVmYXVsdCBzaXplIG9uIG91dGVyIG5vZGUgc2luY2UgaW5uZXIgbm9kZXMgc2F5IDxpbnB1dCBzdHlsZT1cIndpZHRoOjEwMCVcIj4gYW5kIDx0ZCB3aWR0aD0xMDAlPi4gIHVzZXIgY2FuIG92ZXJyaWRlICovXG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kaWppdFRleHRCb3hSZWFkT25seSxcbi5kaWppdFRleHRCb3hEaXNhYmxlZCB7XG5cdGNvbG9yOiBncmF5O1xufVxuLmRqX3NhZmFyaSAuZGlqaXRUZXh0Qm94RGlzYWJsZWQgaW5wdXQge1xuXHRjb2xvcjogI0IwQjBCMDsgLyogYmVjYXVzZSBTYWZhcmkgbGlnaHRlbnMgZGlzYWJsZWQgaW5wdXQvdGV4dGFyZWEgbm8gbWF0dGVyIHdoYXQgY29sb3IgeW91IHNwZWNpZnkgKi9cbn1cbi5kal9zYWZhcmkgdGV4dGFyZWEuZGlqaXRUZXh0QXJlYURpc2FibGVkIHtcblx0Y29sb3I6ICMzMzM7IC8qIGJlY2F1c2UgU2FmYXJpIGxpZ2h0ZW5zIGRpc2FibGVkIGlucHV0L3RleHRhcmVhIG5vIG1hdHRlciB3aGF0IGNvbG9yIHlvdSBzcGVjaWZ5ICovXG59XG4uZGpfZ2Vja28gLmRpaml0VGV4dEJveFJlYWRPbmx5IGlucHV0LmRpaml0SW5wdXRGaWVsZCwgLyogZGlzYWJsZSBhcnJvdyBhbmQgdmFsaWRhdGlvbiBwcmVzZW50YXRpb24gaW5wdXRzIGJ1dCBhbGxvdyByZWFsIGlucHV0IGZvciB0ZXh0IHNlbGVjdGlvbiAqL1xuLmRqX2dlY2tvIC5kaWppdFRleHRCb3hEaXNhYmxlZCBpbnB1dCB7XG5cdC1tb3otdXNlci1pbnB1dDogbm9uZTsgLyogcHJldmVudCBmb2N1cyBvZiBkaXNhYmxlZCB0ZXh0Ym94IGJ1dHRvbnMgKi9cbn1cblxuLmRpaml0UGxhY2VIb2xkZXIge1xuXHQvKiBoaW50IHRleHQgdGhhdCBhcHBlYXJzIGluIGEgdGV4dGJveCB1bnRpbCB1c2VyIHN0YXJ0cyB0eXBpbmcgKi9cblx0Y29sb3I6ICNBQUFBQUE7XG5cdGZvbnQtc3R5bGU6IGl0YWxpYztcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR0b3A6IDA7XG5cdGxlZnQ6IDA7XG5cdCNmaWx0ZXI6IFwiXCI7IC8qIG1ha2UgdGhpcyBzaG93IHVwIGluIElFNiBhZnRlciB0aGUgcmVuZGVyaW5nIG9mIHRoZSB3aWRnZXQgKi9cblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcblx0cG9pbnRlci1ldmVudHM6IG5vbmU7ICAgLyogc28gY3V0L3Bhc3RlIGNvbnRleHQgbWVudSBzaG93cyB1cCB3aGVuIHJpZ2h0IGNsaWNraW5nICovXG59XG5cbi5kaWppdFRpbWVUZXh0Qm94IHtcblx0d2lkdGg6IDhlbTtcbn1cblxuLyogcnVsZXMgZm9yIHdlYmtpdCB0byBkZWFsIHdpdGggZnV6enkgYmx1ZSBmb2N1cyBib3JkZXIgKi9cbi5kaWppdFRleHRCb3ggaW5wdXQ6Zm9jdXMge1xuXHRvdXRsaW5lOiBub25lO1x0LyogYmx1ZSBmdXp6eSBsaW5lIGxvb2tzIHdyb25nIG9uIGNvbWJvYm94IG9yIHNvbWV0aGluZyB3L3ZhbGlkYXRpb24gaWNvbiBzaG93aW5nICovXG59XG4uZGlqaXRUZXh0Qm94Rm9jdXNlZCB7XG5cdG91dGxpbmU6IDVweCAtd2Via2l0LWZvY3VzLXJpbmctY29sb3I7XG59XG5cbi5kaWppdFNlbGVjdCBpbnB1dCxcbi5kaWppdFRleHRCb3ggaW5wdXQge1xuXHRmbG9hdDogbGVmdDsgLyogbmVlZGVkIGJ5IElFIHRvIHJlbW92ZSBzZWNyZXQgbWFyZ2luICovXG59XG4uZGpfaWU2IGlucHV0LmRpaml0VGV4dEJveCxcbi5kal9pZTYgLmRpaml0VGV4dEJveCBpbnB1dCB7XG5cdGZsb2F0OiBub25lO1xufVxuLmRpaml0SW5wdXRJbm5lciB7XG5cdC8qIGZvciB3aGVuIGFuIDxpbnB1dD4gaXMgZW1iZWRkZWQgaW5zaWRlIGFuIGlubGluZS1ibG9jayA8ZGl2PiB3aXRoIGEgc2l6ZSBhbmQgYm9yZGVyICovXG5cdGJvcmRlcjowICFpbXBvcnRhbnQ7XG5cdGJhY2tncm91bmQtY29sb3I6dHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblx0d2lkdGg6MTAwJSAhaW1wb3J0YW50O1xuXHQvKiBJRSBkaXNsaWtlcyBob3Jpem9udGFsIHR3ZWFraW5nIGNvbWJpbmVkIHdpdGggd2lkdGg6MTAwJSBzbyBwdW5pc2ggZXZlcnlvbmUgZm9yIGNvbnNpc3RlbmN5ICovXG5cdHBhZGRpbmctbGVmdDogMCAhaW1wb3J0YW50O1xuXHRwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1sZWZ0OiAwICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1yaWdodDogMCAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0VGV4dEJveCBpbnB1dCB7XG5cdG1hcmdpbjogMCAhaW1wb3J0YW50O1xufVxuLmRpaml0VmFsaWRhdGlvblRleHRCb3hFcnJvciBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kaWppdFNlbGVjdCBpbnB1dCxcbi5kaWppdFRleHRCb3ggaW5wdXQuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0LyogPGlucHV0PiB1c2VkIHRvIGRpc3BsYXkgYXJyb3cgaWNvbi92YWxpZGF0aW9uIGljb24sIG9yIGluIGFycm93IGNoYXJhY3RlciBpbiBoaWdoIGNvbnRyYXN0IG1vZGUuXG5cdCAqIFRoZSBjc3MgYmVsb3cgaXMgYSB0cmljayB0byBoaWRlIHRoZSBjaGFyYWN0ZXIgaW4gbm9uLWhpZ2gtY29udHJhc3QgbW9kZVxuXHQgKi9cblx0dGV4dC1pbmRlbnQ6IC0yZW0gIWltcG9ydGFudDtcblx0ZGlyZWN0aW9uOiBsdHIgIWltcG9ydGFudDtcblx0dGV4dC1hbGlnbjogbGVmdCAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcblx0I3RleHQtaW5kZW50OiAwICFpbXBvcnRhbnQ7XG5cdCNsZXR0ZXItc3BhY2luZzogLTVlbSAhaW1wb3J0YW50O1xuXHQjdGV4dC1hbGlnbjogcmlnaHQgIWltcG9ydGFudDtcbn1cbi5kal9pZSAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWUgLmRpaml0VGV4dEJveCBpbnB1dCxcbi5kal9pZSBpbnB1dC5kaWppdFRleHRCb3gge1xuXHRvdmVyZmxvdy15OiB2aXNpYmxlOyAvKiBpbnB1dHMgbmVlZCBoZWxwIGV4cGFuZGluZyB3aGVuIHBhZGRpbmcgaXMgYWRkZWQgb3IgbGluZS1oZWlnaHQgaXMgYWRqdXN0ZWQgKi9cblx0bGluZS1oZWlnaHQ6IG5vcm1hbDsgLyogc3RyaWN0IG1vZGUgKi9cbn1cbi5kaWppdFNlbGVjdCAuZGlqaXRTZWxlY3RMYWJlbCBzcGFuIHtcblx0bGluZS1oZWlnaHQ6IDEwMCU7XG59XG4uZGpfaWUgLmRpaml0U2VsZWN0IC5kaWppdFNlbGVjdExhYmVsIHtcblx0bGluZS1oZWlnaHQ6IG5vcm1hbDtcbn1cbi5kal9pZTYgLmRpaml0U2VsZWN0IC5kaWppdFNlbGVjdExhYmVsLFxuLmRqX2llNyAuZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwsXG4uZGpfaWU4IC5kaWppdFNlbGVjdCAuZGlqaXRTZWxlY3RMYWJlbCxcbi5kal9pZXF1aXJrcyAuZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwsXG4uZGlqaXRTZWxlY3QgdGQsXG4uZGpfaWU2IC5kaWppdFNlbGVjdCBpbnB1dCxcbi5kal9pZXF1aXJrcyAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWU2IC5kaWppdFNlbGVjdCAuZGlqaXRWYWxpZGF0aW9uQ29udGFpbmVyLFxuLmRqX2llNiAuZGlqaXRUZXh0Qm94IGlucHV0LFxuLmRqX2llNiBpbnB1dC5kaWppdFRleHRCb3gsXG4uZGpfaWVxdWlya3MgLmRpaml0VGV4dEJveCBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kal9pZXF1aXJrcyAuZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0QXJyb3dCdXR0b25Jbm5lcixcbi5kal9pZXF1aXJrcyAuZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0U3Bpbm5lckJ1dHRvbklubmVyLFxuLmRqX2llcXVpcmtzIC5kaWppdFRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRqX2llcXVpcmtzIGlucHV0LmRpaml0VGV4dEJveCB7XG5cdGxpbmUtaGVpZ2h0OiAxMDAlOyAvKiBJRTcgcHJvYmxlbSB3aGVyZSB0aGUgaWNvbiBpcyB2ZXJ0aWNhbGx5IHdheSB0b28gbG93IHcvbyB0aGlzICovXG59XG4uZGpfYTExeSBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kal9hMTF5IGlucHV0LmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdC8qIChpbiBoaWdoIGNvbnRyYXN0IG1vZGUpIHJldmVydCBydWxlcyBmcm9tIGFib3ZlIHNvIGNoYXJhY3RlciBkaXNwbGF5cyAqL1xuXHR0ZXh0LWluZGVudDogMCAhaW1wb3J0YW50O1xuXHR3aWR0aDogMWVtICFpbXBvcnRhbnQ7XG5cdCN0ZXh0LWFsaWduOiBsZWZ0ICFpbXBvcnRhbnQ7XG5cdGNvbG9yOiBibGFjayAhaW1wb3J0YW50O1xufVxuLmRpaml0VmFsaWRhdGlvblRleHRCb3hFcnJvciAuZGlqaXRWYWxpZGF0aW9uQ29udGFpbmVyIHtcblx0ZGlzcGxheTogaW5saW5lO1xuXHRjdXJzb3I6IGRlZmF1bHQ7XG59XG5cbi8qIENvbWJvQm94ICYgU3Bpbm5lciAqL1xuXG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGlqaXRDb21ib0JveCAuZGlqaXRBcnJvd0J1dHRvbkNvbnRhaW5lciB7XG5cdC8qIGRpdmlkaW5nIGxpbmUgYmV0d2VlbiBpbnB1dCBhcmVhIGFuZCB1cC9kb3duIGJ1dHRvbihzKSBmb3IgQ29tYm9Cb3ggYW5kIFNwaW5uZXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwIDAgMCAxcHggIWltcG9ydGFudDsgLyogIWltcG9ydGFudCBuZWVkZWQgZHVlIHRvIHdheXdhcmQgXCIudGhlbWUgLmRpaml0QnV0dG9uTm9kZVwiIHJ1bGVzICovXG59XG4uZGpfYTExeSAuZGlqaXRTZWxlY3QgLmRpaml0QXJyb3dCdXR0b25Db250YWluZXIsXG4uZGlqaXRUb29sYmFyIC5kaWppdENvbWJvQm94IC5kaWppdEFycm93QnV0dG9uQ29udGFpbmVyIHtcblx0Lyogb3ZlcnJpZGVzIGFib3ZlIHJ1bGUgcGx1cyBtaXJyb3ItaW1hZ2UgcnVsZSBpbiBkaWppdF9ydGwuY3NzIHRvIGhhdmUgbm8gZGl2aWRlciB3aGVuIENvbWJvQm94IGluIFRvb2xiYXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdENvbWJvQm94TWVudSB7XG5cdC8qIERyb3AgZG93biBtZW51IGlzIGltcGxlbWVudGVkIGFzIDx1bD4gPGxpLz4gPGxpLz4gLi4uIGJ1dCB3ZSBkb24ndCB3YW50IGNpcmNsZXMgYmVmb3JlIGVhY2ggaXRlbSAqL1xuXHRsaXN0LXN0eWxlLXR5cGU6IG5vbmU7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QnV0dG9uTm9kZSB7XG5cdC8qIGRpdmlkaW5nIGxpbmUgYmV0d2VlbiBpbnB1dCBhcmVhIGFuZCB1cC9kb3duIGJ1dHRvbihzKSBmb3IgQ29tYm9Cb3ggYW5kIFNwaW5uZXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwO1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdFNwaW5uZXIgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRCdXR0b25Ob2RlIHtcblx0Y2xlYXI6IGJvdGg7IC8qIElFIHdvcmthcm91bmQgKi9cbn1cblxuLmRqX2llIC5kaWppdFRvb2xiYXIgLmRpaml0Q29tYm9Cb3gge1xuXHQvKiBtYWtlIGNvbWJvYm94IGJ1dHRvbnMgYWxpZ24gcHJvcGVybHkgd2l0aCBvdGhlciBidXR0b25zIGluIGEgdG9vbGJhciAqL1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuXG4vKiBTcGlubmVyICovXG5cbi5kaWppdFRleHRCb3ggLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciB7XG5cdHdpZHRoOiAxZW07XG5cdHBvc2l0aW9uOiByZWxhdGl2ZSAhaW1wb3J0YW50O1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uSW5uZXIge1xuXHR3aWR0aDoxZW07XG5cdHZpc2liaWxpdHk6aGlkZGVuICFpbXBvcnRhbnQ7IC8qIGp1c3QgYSBzaXppbmcgZWxlbWVudCAqL1xuXHRvdmVyZmxvdy14OmhpZGRlbjtcbn1cbi5kaWppdENvbWJvQm94IC5kaWppdEJ1dHRvbk5vZGUsXG4uZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItd2lkdGg6IDA7XG59XG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItd2lkdGg6IDBweCAhaW1wb3J0YW50O1xuXHRib3JkZXItc3R5bGU6IHNvbGlkICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRUZXh0Qm94IC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIGlucHV0IHtcblx0d2lkdGg6IDFlbSAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0bWFyZ2luOiAwIGF1dG8gIWltcG9ydGFudDsgLyogc2hvdWxkIGF1dG8tY2VudGVyICovXG59XG4uZGpfaWUgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRwYWRkaW5nLWxlZnQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmctcmlnaHQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1sZWZ0OiAwLjNlbSAhaW1wb3J0YW50O1xuXHRtYXJnaW4tcmlnaHQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdHdpZHRoOiAxLjRlbSAhaW1wb3J0YW50O1xufVxuLmRqX2llNyAuZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIgLmRpaml0SW5wdXRGaWVsZCB7XG5cdHBhZGRpbmctbGVmdDogMCAhaW1wb3J0YW50OyAvKiBtYW51YWxseSBjZW50ZXIgSU5QVVQ6IGNoYXJhY3RlciBpcyAuNWVtIGFuZCB0b3RhbCB3aWR0aCA9IDFlbSAqL1xuXHRwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG5cdHdpZHRoOiAxZW0gIWltcG9ydGFudDtcbn1cbi5kal9pZTYgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRtYXJnaW4tbGVmdDogMC4xZW0gIWltcG9ydGFudDtcblx0bWFyZ2luLXJpZ2h0OiAwLjFlbSAhaW1wb3J0YW50O1xuXHR3aWR0aDogMWVtICFpbXBvcnRhbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRtYXJnaW4tbGVmdDogMCAhaW1wb3J0YW50O1xuXHRtYXJnaW4tcmlnaHQ6IDAgIWltcG9ydGFudDtcblx0d2lkdGg6IDJlbSAhaW1wb3J0YW50O1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEFycm93QnV0dG9uIHtcblx0Lyogbm90ZTogLmRpaml0SW5wdXRMYXlvdXRDb250YWluZXIgbWFrZXMgdGhpcyBydWxlIG92ZXJyaWRlIC5kaWppdEFycm93QnV0dG9uIHNldHRpbmdzXG5cdCAqIGZvciBkaWppdC5mb3JtLkJ1dHRvblxuXHQgKi9cblx0cGFkZGluZzogMDtcblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdHJpZ2h0OiAwO1xuXHRmbG9hdDogbm9uZTtcblx0aGVpZ2h0OiA1MCU7XG5cdHdpZHRoOiAxMDAlO1xuXHRib3R0b206IGF1dG87XG5cdGxlZnQ6IDA7XG5cdHJpZ2h0OiBhdXRvO1xufVxuLmRqX2llcXVpcmtzIC5kaWppdFNwaW5uZXIgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdHdpZHRoOiBhdXRvO1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdG92ZXJmbG93OiB2aXNpYmxlICFpbXBvcnRhbnQ7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0RG93bkFycm93QnV0dG9uIHtcblx0dG9wOiA1MCU7XG5cdGJvcmRlci10b3Atd2lkdGg6IDFweCAhaW1wb3J0YW50O1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdFVwQXJyb3dCdXR0b24ge1xuXHQjYm90dG9tOiA1MCU7XHQvKiBvdGhlcndpc2UgKG9uIHNvbWUgbWFjaGluZXMpIHRvcCBhcnJvdyBpY29uIHRvbyBjbG9zZSB0byBzcGxpdHRlciBib3JkZXIgKElFNi83KSAqL1xuXHR0b3A6IDA7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHRtYXJnaW46IGF1dG87XG5cdG92ZXJmbG93LXg6IGhpZGRlbjtcblx0aGVpZ2h0OiAxMDAlICFpbXBvcnRhbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0aGVpZ2h0OiBhdXRvICFpbXBvcnRhbnQ7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIgLmRpaml0SW5wdXRGaWVsZCB7XG5cdC1tb3otdHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHQtbW96LXRyYW5zZm9ybS1vcmlnaW46IGNlbnRlciB0b3A7XG5cdC13ZWJraXQtdHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHQtd2Via2l0LXRyYW5zZm9ybS1vcmlnaW46IGNlbnRlciB0b3A7XG5cdC1vLXRyYW5zZm9ybTogc2NhbGUoMC41KTtcblx0LW8tdHJhbnNmb3JtLW9yaWdpbjogY2VudGVyIHRvcDtcblx0dHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHR0cmFuc2Zvcm0tb3JpZ2luOiBsZWZ0IHRvcDtcblx0cGFkZGluZy10b3A6IDA7XG5cdHBhZGRpbmctYm90dG9tOiAwO1xuXHRwYWRkaW5nLWxlZnQ6IDAgIWltcG9ydGFudDtcblx0cGFkZGluZy1yaWdodDogMCAhaW1wb3J0YW50O1xuXHR3aWR0aDogMTAwJTtcblx0dmlzaWJpbGl0eTogaGlkZGVuO1xufVxuLmRqX2llIC5kaWppdFNwaW5uZXIgLmRpaml0QXJyb3dCdXR0b25Jbm5lciAuZGlqaXRJbnB1dEZpZWxkIHtcblx0em9vbTogNTAlOyAvKiBlbXVsYXRlIHRyYW5zZm9ybTogc2NhbGUoMC41KSAqL1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QXJyb3dCdXR0b24ge1xuXHR3aWR0aDogMTAwJTtcbn1cbi5kal9pZXF1aXJrcyAuZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QXJyb3dCdXR0b24ge1xuXHR3aWR0aDogMWVtOyAvKiBtYXRjaGVzIC5kal9hMTF5IC5kaWppdFRleHRCb3ggLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciBydWxlIC0gMTAwJSBpcyB0aGUgd2hvbGUgc2NyZWVuIHdpZHRoIGluIHF1aXJrcyAqL1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHR2ZXJ0aWNhbC1hbGlnbjp0b3A7XG5cdHZpc2liaWxpdHk6IHZpc2libGU7XG59XG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIHtcblx0d2lkdGg6IDFlbTtcbn1cblxuLyoqKipcblx0XHRkaWppdC5mb3JtLkNoZWNrQm94XG4gXHQgJlxuICBcdFx0ZGlqaXQuZm9ybS5SYWRpb0J1dHRvblxuICoqKiovXG5cbi5kaWppdENoZWNrQm94LFxuLmRpaml0UmFkaW8sXG4uZGlqaXRDaGVja0JveElucHV0IHtcblx0cGFkZGluZzogMDtcblx0Ym9yZGVyOiAwO1xuXHR3aWR0aDogMTZweDtcblx0aGVpZ2h0OiAxNnB4O1xuXHRiYWNrZ3JvdW5kLXBvc2l0aW9uOmNlbnRlciBjZW50ZXI7XG5cdGJhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLmRpaml0Q2hlY2tCb3ggaW5wdXQsXG4uZGlqaXRSYWRpbyBpbnB1dCB7XG5cdG1hcmdpbjogMDtcblx0cGFkZGluZzogMDtcblx0ZGlzcGxheTogYmxvY2s7XG59XG5cbi5kaWppdENoZWNrQm94SW5wdXQge1xuXHQvKiBwbGFjZSB0aGUgYWN0dWFsIGlucHV0IG9uIHRvcCwgYnV0IGludmlzaWJsZSAqL1xuXHRvcGFjaXR5OiAwO1xufVxuXG4uZGpfaWUgLmRpaml0Q2hlY2tCb3hJbnB1dCB7XG5cdGZpbHRlcjogYWxwaGEob3BhY2l0eT0wKTtcbn1cblxuLmRqX2ExMXkgLmRpaml0Q2hlY2tCb3gsXG4uZGpfYTExeSAuZGlqaXRSYWRpbyB7XG5cdC8qIGluIGExMXkgbW9kZSB3ZSBkaXNwbGF5IHRoZSBuYXRpdmUgY2hlY2tib3ggKG5vdCB0aGUgaWNvbiksIHNvIGRvbid0IHJlc3RyaWN0IHRoZSBzaXplICovXG5cdHdpZHRoOiBhdXRvICFpbXBvcnRhbnQ7XG5cdGhlaWdodDogYXV0byAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0Q2hlY2tCb3hJbnB1dCB7XG5cdG9wYWNpdHk6IDE7XG5cdGZpbHRlcjogbm9uZTtcblx0d2lkdGg6IGF1dG87XG5cdGhlaWdodDogYXV0bztcbn1cblxuLmRqX2ExMXkgLmRpaml0Rm9jdXNlZExhYmVsIHtcblx0LyogZm9yIGNoZWNrYm94ZXMgb3IgcmFkaW8gYnV0dG9ucyBpbiBoaWdoIGNvbnRyYXN0IG1vZGUsIHVzZSBib3JkZXIgcmF0aGVyIHRoYW4gb3V0bGluZSB0byBpbmRpY2F0ZSBmb2N1cyAob3V0bGluZSBkb2VzIG5vdCB3b3JrIGluIEZGKSovXG5cdGJvcmRlcjogMXB4IGRvdHRlZDtcblx0b3V0bGluZTogMHB4ICFpbXBvcnRhbnQ7XG59XG5cbi8qKioqXG5cdFx0ZGlqaXQuUHJvZ3Jlc3NCYXJcbiAqKioqL1xuXG4uZGlqaXRQcm9ncmVzc0JhciB7XG4gICAgei1pbmRleDogMDsgLyogc28gei1pbmRleCBzZXR0aW5ncyBiZWxvdyBoYXZlIG5vIGVmZmVjdCBvdXRzaWRlIG9mIHRoZSBQcm9ncmVzc0JhciAqL1xufVxuLmRpaml0UHJvZ3Jlc3NCYXJFbXB0eSB7XG5cdC8qIG91dGVyIGNvbnRhaW5lciBhbmQgYmFja2dyb3VuZCBvZiB0aGUgYmFyIHRoYXQncyBub3QgZmluaXNoZWQgeWV0Ki9cblx0cG9zaXRpb246cmVsYXRpdmU7b3ZlcmZsb3c6aGlkZGVuO1xuXHRib3JkZXI6MXB4IHNvbGlkIGJsYWNrOyBcdC8qIGExMXk6IGJvcmRlciBuZWNlc3NhcnkgZm9yIGhpZ2gtY29udHJhc3QgbW9kZSAqL1xuXHR6LWluZGV4OjA7XHRcdFx0LyogZXN0YWJsaXNoIGEgc3RhY2tpbmcgY29udGV4dCBmb3IgdGhpcyBwcm9ncmVzcyBiYXIgKi9cbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJGdWxsIHtcblx0Lyogb3V0ZXIgY29udGFpbmVyIGZvciBiYWNrZ3JvdW5kIG9mIGJhciB0aGF0IGlzIGZpbmlzaGVkICovXG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHRvdmVyZmxvdzpoaWRkZW47XG5cdHotaW5kZXg6LTE7XG5cdHRvcDowO1xuXHR3aWR0aDoxMDAlO1xufVxuLmRqX2llNiAuZGlqaXRQcm9ncmVzc0JhckZ1bGwge1xuXHRoZWlnaHQ6MS42ZW07XG59XG5cbi5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGlubmVyIGNvbnRhaW5lciBmb3IgZmluaXNoZWQgcG9ydGlvbiAqL1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHR0b3A6MDtcblx0bGVmdDowO1xuXHRib3R0b206MDtcblx0cmlnaHQ6MDtcblx0bWFyZ2luOjA7XG5cdHBhZGRpbmc6MDtcblx0d2lkdGg6IDEwMCU7ICAgIC8qIG5lZWRlZCBmb3IgSUUvcXVpcmtzICovXG5cdGhlaWdodDphdXRvO1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiNhYWE7XG5cdGJhY2tncm91bmQtYXR0YWNobWVudDogZml4ZWQ7XG59XG5cbi5kal9hMTF5IC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGExMXk6ICBUaGUgYm9yZGVyIHByb3ZpZGVzIHZpc2liaWxpdHkgaW4gaGlnaC1jb250cmFzdCBtb2RlICovXG5cdGJvcmRlci13aWR0aDoycHg7XG5cdGJvcmRlci1zdHlsZTpzb2xpZDtcblx0YmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4uZGpfaWU2IC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIHdpZHRoOmF1dG8gd29ya3MgaW4gSUU2IHdpdGggcG9zaXRpb246c3RhdGljIGJ1dCBub3QgcG9zaXRpb246YWJzb2x1dGUgKi9cblx0cG9zaXRpb246c3RhdGljO1xuXHQvKiBoZWlnaHQ6YXV0byBvciAxMDAlIGRvZXMgbm90IHdvcmsgaW4gSUU2ICovXG5cdGhlaWdodDoxLjZlbTtcbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJJbmRldGVybWluYXRlIC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGFuaW1hdGVkIGdpZiBmb3IgJ2luZGV0ZXJtaW5hdGUnIG1vZGUgKi9cbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJJbmRldGVybWluYXRlSGlnaENvbnRyYXN0SW1hZ2Uge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi5kal9hMTF5IC5kaWppdFByb2dyZXNzQmFySW5kZXRlcm1pbmF0ZSAuZGlqaXRQcm9ncmVzc0JhckluZGV0ZXJtaW5hdGVIaWdoQ29udHJhc3RJbWFnZSB7XG5cdGRpc3BsYXk6YmxvY2s7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHR0b3A6MDtcblx0Ym90dG9tOjA7XG5cdG1hcmdpbjowO1xuXHRwYWRkaW5nOjA7XG5cdHdpZHRoOjEwMCU7XG5cdGhlaWdodDphdXRvO1xufVxuXG4uZGlqaXRQcm9ncmVzc0JhckxhYmVsIHtcblx0ZGlzcGxheTpibG9jaztcblx0cG9zaXRpb246c3RhdGljO1xuXHR3aWR0aDoxMDAlO1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0YmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4vKioqKlxuXHRcdGRpaml0LlRvb2x0aXBcbiAqKioqL1xuXG4uZGlqaXRUb29sdGlwIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR6LWluZGV4OiAyMDAwO1xuXHRkaXNwbGF5OiBibG9jaztcblx0LyogbWFrZSB2aXNpYmxlIGJ1dCBvZmYgc2NyZWVuICovXG5cdGxlZnQ6IDA7XG5cdHRvcDogLTEwMDAwcHg7XG5cdG92ZXJmbG93OiB2aXNpYmxlO1xufVxuXG4uZGlqaXRUb29sdGlwQ29udGFpbmVyIHtcblx0Ym9yZGVyOiBzb2xpZCBibGFjayAycHg7XG5cdGJhY2tncm91bmQ6ICNiOGI1YjU7XG5cdGNvbG9yOiBibGFjaztcblx0Zm9udC1zaXplOiBzbWFsbDtcbn1cblxuLmRpaml0VG9vbHRpcEZvY3VzTm9kZSB7XG5cdHBhZGRpbmc6IDJweCAycHggMnB4IDJweDtcbn1cblxuLmRpaml0VG9vbHRpcENvbm5lY3RvciB7XG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcbn1cbi5kal9hMTF5IC5kaWppdFRvb2x0aXBDb25uZWN0b3Ige1xuXHRkaXNwbGF5OiBub25lO1x0Lyogd29uJ3Qgc2hvdyBiL2MgaXQncyBiYWNrZ3JvdW5kLWltYWdlOyBoaWRlIHRvIGF2b2lkIGJvcmRlciBnYXAgKi9cbn1cblxuLmRpaml0VG9vbHRpcERhdGEge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi8qIExheW91dCB3aWRnZXRzLiBUaGlzIGlzIGVzc2VudGlhbCBDU1MgdG8gbWFrZSBsYXlvdXQgd29yayAoaXQgaXNuJ3QgXCJzdHlsaW5nXCIgQ1NTKVxuICAgbWFrZSBzdXJlIHRoYXQgdGhlIHBvc2l0aW9uOmFic29sdXRlIGluIGRpaml0QWxpZ24qIG92ZXJyaWRlcyBvdGhlciBjbGFzc2VzICovXG5cbi5kaWppdExheW91dENvbnRhaW5lciB7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcblx0ZGlzcGxheTogYmxvY2s7XG5cdG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5kaWppdEFsaWduVG9wLFxuLmRpaml0QWxpZ25Cb3R0b20sXG4uZGlqaXRBbGlnbkxlZnQsXG4uZGlqaXRBbGlnblJpZ2h0IHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG5ib2R5IC5kaWppdEFsaWduQ2xpZW50IHsgcG9zaXRpb246IGFic29sdXRlOyB9XG5cbi8qXG4gKiBCb3JkZXJDb250YWluZXJcbiAqXG4gKiAuZGlqaXRCb3JkZXJDb250YWluZXIgaXMgYSBzdHlsaXplZCBsYXlvdXQgd2hlcmUgcGFuZXMgaGF2ZSBib3JkZXIgYW5kIG1hcmdpbi5cbiAqIC5kaWppdEJvcmRlckNvbnRhaW5lck5vR3V0dGVyIGlzIGEgcmF3IGxheW91dC5cbiAqL1xuLmRpaml0Qm9yZGVyQ29udGFpbmVyLCAuZGlqaXRCb3JkZXJDb250YWluZXJOb0d1dHRlciB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xuICAgIHotaW5kZXg6IDA7IC8qIHNvIHotaW5kZXggc2V0dGluZ3MgYmVsb3cgaGF2ZSBubyBlZmZlY3Qgb3V0c2lkZSBvZiB0aGUgQm9yZGVyQ29udGFpbmVyICovXG59XG5cbi5kaWppdEJvcmRlckNvbnRhaW5lclBhbmUsXG4uZGlqaXRCb3JkZXJDb250YWluZXJOb0d1dHRlclBhbmUge1xuXHRwb3NpdGlvbjogYWJzb2x1dGUgIWltcG9ydGFudDtcdC8qICFpbXBvcnRhbnQgdG8gb3ZlcnJpZGUgcG9zaXRpb246cmVsYXRpdmUgaW4gZGlqaXRUYWJDb250YWluZXIgZXRjLiAqL1xuXHR6LWluZGV4OiAyO1x0XHQvKiBhYm92ZSB0aGUgc3BsaXR0ZXJzIHNvIHRoYXQgb2ZmLWJ5LW9uZSBicm93c2VyIGVycm9ycyBkb24ndCBjb3ZlciB1cCBib3JkZXIgb2YgcGFuZSAqL1xufVxuXG4uZGlqaXRCb3JkZXJDb250YWluZXIgPiAuZGlqaXRUZXh0QXJlYSB7XG5cdC8qIE9uIFNhZmFyaSwgZm9yIFNpbXBsZVRleHRBcmVhIGluc2lkZSBhIEJvcmRlckNvbnRhaW5lcixcblx0XHRkb24ndCB3YW50IHRvIGRpc3BsYXkgdGhlIGdyaXAgdG8gcmVzaXplICovXG5cdHJlc2l6ZTogbm9uZTtcbn1cblxuLmRpaml0R3V0dGVyIHtcblx0LyogZ3V0dGVyIGlzIGp1c3QgYSBwbGFjZSBob2xkZXIgZm9yIGVtcHR5IHNwYWNlIGJldHdlZW4gcGFuZXMgaW4gQm9yZGVyQ29udGFpbmVyICovXG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0Zm9udC1zaXplOiAxcHg7XHRcdC8qIG5lZWRlZCBieSBJRTYgZXZlbiB0aG91Z2ggZGl2IGlzIGVtcHR5LCBvdGhlcndpc2UgZ29lcyB0byAxNXB4ICovXG59XG5cbi8qIFNwbGl0Q29udGFpbmVyXG5cblx0J1YnID09IGNvbnRhaW5lciB0aGF0IHNwbGl0cyB2ZXJ0aWNhbGx5ICh1cC9kb3duKVxuXHQnSCcgPSBob3Jpem9udGFsIChsZWZ0L3JpZ2h0KVxuKi9cblxuLmRpaml0U3BsaXR0ZXIge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdHotaW5kZXg6IDEwO1x0XHQvKiBhYm92ZSB0aGUgcGFuZXMgc28gdGhhdCBzcGxpdHRlciBmb2N1cyBpcyB2aXNpYmxlIG9uIEZGLCBzZWUgIzc1ODMqL1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXHRib3JkZXItY29sb3I6IGdyYXk7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG5cdGJvcmRlci13aWR0aDogMDtcbn1cbi5kal9pZSAuZGlqaXRTcGxpdHRlciB7XG5cdHotaW5kZXg6IDE7XHQvKiBiZWhpbmQgdGhlIHBhbmVzIHNvIHRoYXQgcGFuZSBib3JkZXJzIGFyZW4ndCBvYnNjdXJlZCBzZWUgdGVzdF9HdWkuaHRtbC9bMTQzOTJdICovXG59XG5cbi5kaWppdFNwbGl0dGVyQWN0aXZlIHtcblx0ei1pbmRleDogMTEgIWltcG9ydGFudDtcbn1cblxuLmRpaml0U3BsaXR0ZXJDb3ZlciB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHR6LWluZGV4Oi0xO1xuXHR0b3A6MDtcblx0bGVmdDowO1xuXHR3aWR0aDoxMDAlO1xuXHRoZWlnaHQ6MTAwJTtcbn1cblxuLmRpaml0U3BsaXR0ZXJDb3ZlckFjdGl2ZSB7XG5cdHotaW5kZXg6MyAhaW1wb3J0YW50O1xufVxuXG4vKiAjNjk0NTogc3RvcCBtb3VzZSBldmVudHMgKi9cbi5kal9pZSAuZGlqaXRTcGxpdHRlckNvdmVyIHtcblx0YmFja2dyb3VuZDogd2hpdGU7XG5cdG9wYWNpdHk6IDA7XG59XG4uZGpfaWU2IC5kaWppdFNwbGl0dGVyQ292ZXIsXG4uZGpfaWU3IC5kaWppdFNwbGl0dGVyQ292ZXIsXG4uZGpfaWU4IC5kaWppdFNwbGl0dGVyQ292ZXIge1xuXHRmaWx0ZXI6IGFscGhhKG9wYWNpdHk9MCk7XG59XG5cbi5kaWppdFNwbGl0dGVySCB7XG5cdGhlaWdodDogN3B4O1xuXHRib3JkZXItdG9wOjFweDtcblx0Ym9yZGVyLWJvdHRvbToxcHg7XG5cdGN1cnNvcjogcm93LXJlc2l6ZTtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cbi5kaWppdFNwbGl0dGVyViB7XG5cdHdpZHRoOiA3cHg7XG5cdGJvcmRlci1sZWZ0OjFweDtcblx0Ym9yZGVyLXJpZ2h0OjFweDtcblx0Y3Vyc29yOiBjb2wtcmVzaXplO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0U3BsaXRDb250YWluZXIge1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uZGlqaXRTcGxpdFBhbmUge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJILFxuLmRpaml0U3BsaXRDb250YWluZXJTaXplclYge1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0Zm9udC1zaXplOiAxcHg7XG5cdGJhY2tncm91bmQtY29sb3I6IFRocmVlREZhY2U7XG5cdGJvcmRlcjogMXB4IHNvbGlkO1xuXHRib3JkZXItY29sb3I6IFRocmVlREhpZ2hsaWdodCBUaHJlZURTaGFkb3cgVGhyZWVEU2hhZG93IFRocmVlREhpZ2hsaWdodDtcblx0bWFyZ2luOiAwO1xufVxuXG4uZGlqaXRTcGxpdENvbnRhaW5lclNpemVySCAudGh1bWIsIC5kaWppdFNwbGl0dGVyViAuZGlqaXRTcGxpdHRlclRodW1iIHtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0dG9wOjQ5JTtcbn1cblxuLmRpaml0U3BsaXRDb250YWluZXJTaXplclYgLnRodW1iLCAuZGlqaXRTcGxpdHRlckggLmRpaml0U3BsaXR0ZXJUaHVtYiB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHRsZWZ0OjQ5JTtcbn1cblxuLmRpaml0U3BsaXR0ZXJTaGFkb3csXG4uZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplckgsXG4uZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplclYge1xuXHRmb250LXNpemU6IDFweDtcblx0YmFja2dyb3VuZC1jb2xvcjogVGhyZWVEU2hhZG93O1xuXHQtbW96LW9wYWNpdHk6IDAuNTtcblx0b3BhY2l0eTogMC41O1xuXHRmaWx0ZXI6IEFscGhhKE9wYWNpdHk9NTApO1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJILCAuZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplckgge1xuXHRjdXJzb3I6IGNvbC1yZXNpemU7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJWLCAuZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplclYge1xuXHRjdXJzb3I6IHJvdy1yZXNpemU7XG59XG5cbi5kal9hMTF5IC5kaWppdFNwbGl0dGVySCB7XG5cdGJvcmRlci10b3A6MXB4IHNvbGlkICNkM2QzZDMgIWltcG9ydGFudDtcblx0Ym9yZGVyLWJvdHRvbToxcHggc29saWQgI2QzZDNkMyAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0U3BsaXR0ZXJWIHtcblx0Ym9yZGVyLWxlZnQ6MXB4IHNvbGlkICNkM2QzZDMgIWltcG9ydGFudDtcblx0Ym9yZGVyLXJpZ2h0OjFweCBzb2xpZCAjZDNkM2QzICFpbXBvcnRhbnQ7XG59XG5cbi8qIENvbnRlbnRQYW5lICovXG5cbi5kaWppdENvbnRlbnRQYW5lIHtcblx0ZGlzcGxheTogYmxvY2s7XG5cdG92ZXJmbG93OiBhdXRvO1x0LyogaWYgd2UgZG9uJ3QgaGF2ZSB0aGlzIChvciBvdmVyZmxvdzpoaWRkZW4pLCB0aGVuIFdpZGdldC5yZXNpemVUbygpIGRvZXNuJ3QgbWFrZSBzZW5zZSBmb3IgQ29udGVudFBhbmUgKi9cblx0LXdlYmtpdC1vdmVyZmxvdy1zY3JvbGxpbmc6IHRvdWNoO1xufVxuXG4uZGlqaXRDb250ZW50UGFuZVNpbmdsZUNoaWxkIHtcblx0Lypcblx0ICogaWYgdGhlIENvbnRlbnRQYW5lIGhvbGRzIGEgc2luZ2xlIGxheW91dCB3aWRnZXQgY2hpbGQgd2hpY2ggaXMgYmVpbmcgc2l6ZWQgdG8gbWF0Y2ggdGhlIGNvbnRlbnQgcGFuZSxcblx0ICogdGhlbiB0aGUgQ29udGVudFBhbmUgc2hvdWxkIG5ldmVyIGdldCBhIHNjcm9sbGJhciAoYnV0IGl0IGRvZXMgZHVlIHRvIGJyb3dzZXIgYnVncywgc2VlICM5NDQ5XG5cdCAqL1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG4uZGlqaXRDb250ZW50UGFuZUxvYWRpbmcgLmRpaml0SWNvbkxvYWRpbmcsXG4uZGlqaXRDb250ZW50UGFuZUVycm9yIC5kaWppdEljb25FcnJvciB7XG5cdG1hcmdpbi1yaWdodDogOXB4O1xufVxuXG4vKiBUaXRsZVBhbmUgYW5kIEZpZWxkc2V0ICovXG5cbi5kaWppdFRpdGxlUGFuZSB7XG5cdGRpc3BsYXk6IGJsb2NrO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuLmRpaml0RmllbGRzZXQge1xuXHRib3JkZXI6IDFweCBzb2xpZCBncmF5O1xufVxuLmRpaml0VGl0bGVQYW5lVGl0bGUsIC5kaWppdEZpZWxkc2V0VGl0bGUge1xuXHRjdXJzb3I6IHBvaW50ZXI7XG5cdC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG4uZGlqaXRUaXRsZVBhbmVUaXRsZUZpeGVkT3BlbiwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZENsb3NlZCxcbi5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZE9wZW4sIC5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZENsb3NlZCB7XG5cdC8qIFRpdGxlUGFuZSBvciBGaWVsZHNldCB0aGF0IGNhbm5vdCBiZSB0b2dnbGVkICovXG5cdGN1cnNvcjogZGVmYXVsdDtcbn1cbi5kaWppdFRpdGxlUGFuZVRpdGxlICoge1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZUlubmVyLCAuZGlqaXRGaWVsZHNldCAuZGlqaXRBcnJvd05vZGVJbm5lciB7XG5cdC8qIG5vcm1hbGx5LCBoaWRlIGFycm93IHRleHQgaW4gZmF2b3Igb2YgaWNvbiAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRqX2ExMXkgLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZUlubmVyLCAuZGpfYTExeSAuZGlqaXRGaWVsZHNldCAuZGlqaXRBcnJvd05vZGVJbm5lciB7XG5cdC8qIC4uLiBleGNlcHQgaW4gYTExeSBtb2RlLCB0aGVuIHNob3cgdGV4dCBhcnJvdyAqL1xuXHRkaXNwbGF5OiBpbmxpbmU7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7XHRcdC8qIGJlY2F1c2UgLSBhbmQgKyBhcmUgZGlmZmVyZW50IHdpZHRocyAqL1xufVxuLmRqX2ExMXkgLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZSwgLmRqX2ExMXkgLmRpaml0RmllbGRzZXQgLmRpaml0QXJyb3dOb2RlIHtcblx0LyogLi4uIGFuZCBoaWRlIGljb24gKFRPRE86IGp1c3QgcG9pbnQgZGlqaXRJY29uIGNsYXNzIG9uIHRoZSBpY29uLCBhbmQgaXQgaGlkZXMgYXV0b21hdGljYWxseSkgKi9cblx0ZGlzcGxheTogbm9uZTtcbn1cbi5kaWppdFRpdGxlUGFuZVRpdGxlRml4ZWRPcGVuIC5kaWppdEFycm93Tm9kZSwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZE9wZW4gLmRpaml0QXJyb3dOb2RlSW5uZXIsXG4uZGlqaXRUaXRsZVBhbmVUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZSwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZENsb3NlZCAuZGlqaXRBcnJvd05vZGVJbm5lcixcbi5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZE9wZW4gLmRpaml0QXJyb3dOb2RlLCAuZGlqaXRGaWVsZHNldFRpdGxlRml4ZWRPcGVuIC5kaWppdEFycm93Tm9kZUlubmVyLFxuLmRpaml0RmllbGRzZXRUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZSwgLmRpaml0RmllbGRzZXRUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZUlubmVyIHtcblx0LyogZG9uJ3Qgc2hvdyB0aGUgb3BlbiBjbG9zZSBpY29uIG9yIHRleHQgYXJyb3c7IGl0IG1ha2VzIHRoZSB1c2VyIHRoaW5rIHRoZSBwYW5lIGlzIGNsb3NhYmxlICovXG5cdGRpc3BsYXk6IG5vbmUgIWltcG9ydGFudDtcdC8qICFpbXBvcnRhbnQgdG8gb3ZlcnJpZGUgYWJvdmUgYTExeSBydWxlcyB0byBzaG93IHRleHQgYXJyb3cgKi9cbn1cblxuLmRqX2llNiAuZGlqaXRUaXRsZVBhbmVDb250ZW50T3V0ZXIsXG4uZGpfaWU2IC5kaWppdFRpdGxlUGFuZSAuZGlqaXRUaXRsZVBhbmVUaXRsZSB7XG5cdC8qIGZvcmNlIGhhc0xheW91dCB0byBlbnN1cmUgYm9yZGVycyBldGMsIHNob3cgdXAgKi9cblx0em9vbTogMTtcbn1cblxuLyogQ29sb3IgUGFsZXR0ZVxuICogU2l6ZXMgZGVzaWduZWQgc28gdGhhdCB0YWJsZSBjZWxsIHBvc2l0aW9ucyBtYXRjaCBpY29ucyBpbiB1bmRlcmx5aW5nIGltYWdlLFxuICogd2hpY2ggYXBwZWFyIGF0IDIweDIwIGludGVydmFscy5cbiAqL1xuXG4uZGlqaXRDb2xvclBhbGV0dGUge1xuXHRib3JkZXI6IDFweCBzb2xpZCAjOTk5O1xuXHRiYWNrZ3JvdW5kOiAjZmZmO1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG59XG5cbi5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUge1xuXHQvKiBUYWJsZSB0aGF0IGhvbGRzIHRoZSBwYWxldHRlIGNlbGxzLCBhbmQgb3ZlcmxheXMgaW1hZ2UgZmlsZSB3aXRoIGNvbG9yIHN3YXRjaGVzLlxuXHQgKiBwYWRkaW5nL21hcmdpbiB0byBhbGlnbiB0YWJsZSB3aXRoIGltYWdlLlxuXHQgKi9cblx0cGFkZGluZzogMnB4IDNweCAzcHggM3B4O1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdG91dGxpbmU6IDA7XG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG59XG4uZGpfaWU2IC5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUsXG4uZGpfaWU3IC5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUsXG4uZGpfaWVxdWlya3MgLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVUYWJsZSB7XG5cdC8qIHVzaW5nIHBhZGRpbmcgYWJvdmUgc28gdGhhdCBmb2N1cyBib3JkZXIgaXNuJ3QgY3V0b2ZmIG9uIG1vei93ZWJraXQsXG5cdCAqIGJ1dCB1c2luZyBtYXJnaW4gb24gSUUgYmVjYXVzZSBwYWRkaW5nIGRvZXNuJ3Qgc2VlbSB0byB3b3JrXG5cdCAqL1xuXHRwYWRkaW5nOiAwO1xuXHRtYXJnaW46IDJweCAzcHggM3B4IDNweDtcbn1cblxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVDZWxsIHtcblx0LyogPHRkPiBpbiB0aGUgPHRhYmxlPiAqL1xuXHRmb250LXNpemU6IDFweDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcblx0dGV4dC1hbGlnbjogY2VudGVyO1xuXHRiYWNrZ3JvdW5kOiBub25lO1xufVxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVJbWcge1xuXHQvKiBDYWxsZWQgZGlqaXRQYWxldHRlSW1nIGZvciBiYWNrLWNvbXBhdCwgdGhpcyBhY3R1YWxseSB3cmFwcyB0aGUgY29sb3Igc3dhdGNoIHdpdGggYSBib3JkZXIgYW5kIHBhZGRpbmcgKi9cblx0cGFkZGluZzogMXB4O1x0XHQvKiB3aGl0ZSBhcmVhIGJldHdlZW4gZ3JheSBib3JkZXIgYW5kIGNvbG9yIHN3YXRjaCAqL1xuXHRib3JkZXI6IDFweCBzb2xpZCAjOTk5O1xuXHRtYXJnaW46IDJweCAxcHg7XG5cdGN1cnNvcjogZGVmYXVsdDtcblx0Zm9udC1zaXplOiAxcHg7XHRcdC8qIHByZXZlbnQgPHNwYW4+IGZyb20gZ2V0dGluZyBiaWdnZXIganVzdCB0byBob2xkIGEgY2hhcmFjdGVyICovXG59XG4uZGpfZ2Vja28gLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVJbWcge1xuXHRwYWRkaW5nLWJvdHRvbTogMDtcdC8qIHdvcmthcm91bmQgcmVuZGVyaW5nIGdsaXRjaCBvbiBGRiwgaXQgYWRkcyBhbiBleHRyYSBwaXhlbCBhdCB0aGUgYm90dG9tICovXG59XG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0Q29sb3JQYWxldHRlU3dhdGNoIHtcblx0LyogdGhlIGFjdHVhbCBwYXJ0IHdoZXJlIHRoZSBjb2xvciBpcyAqL1xuXHR3aWR0aDogMTRweDtcblx0aGVpZ2h0OiAxMnB4O1xufVxuLmRpaml0UGFsZXR0ZVRhYmxlIHRkIHtcblx0XHRwYWRkaW5nOiAwO1xufVxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVDZWxsOmhvdmVyIC5kaWppdFBhbGV0dGVJbWcge1xuXHQvKiBob3ZlcmVkIGNvbG9yIHN3YXRjaCAqL1xuXHRib3JkZXI6IDFweCBzb2xpZCAjMDAwO1xufVxuXG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZUNlbGw6YWN0aXZlIC5kaWppdFBhbGV0dGVJbWcsXG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZVRhYmxlIC5kaWppdFBhbGV0dGVDZWxsU2VsZWN0ZWQgLmRpaml0UGFsZXR0ZUltZyB7XG5cdGJvcmRlcjogMnB4IHNvbGlkICMwMDA7XG5cdG1hcmdpbjogMXB4IDA7XHQvKiByZWR1Y2UgbWFyZ2luIHRvIGNvbXBlbnNhdGUgZm9yIGluY3JlYXNlZCBib3JkZXIgKi9cbn1cblxuXG4uZGpfYTExeSAuZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZVRhYmxlLFxuLmRqX2ExMXkgLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVUYWJsZSAqIHtcblx0LyogdGFibGUgY2VsbHMgYXJlIHRvIGNhdGNoIGV2ZW50cywgYnV0IHRoZSBzd2F0Y2hlcyBhcmUgaW4gdGhlIFBhbGV0dGVJbWcgYmVoaW5kIHRoZSB0YWJsZSAqL1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4vKiBBY2NvcmRpb25Db250YWluZXIgKi9cblxuLmRpaml0QWNjb3JkaW9uQ29udGFpbmVyIHtcblx0Ym9yZGVyOjFweCBzb2xpZCAjYjdiN2I3O1xuXHRib3JkZXItdG9wOjAgIWltcG9ydGFudDtcbn1cbi5kaWppdEFjY29yZGlvblRpdGxlIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0QWNjb3JkaW9uVGl0bGVTZWxlY3RlZCB7XG5cdGN1cnNvcjogZGVmYXVsdDtcbn1cblxuLyogaW1hZ2VzIG9mZiwgaGlnaC1jb250cmFzdCBtb2RlIHN0eWxlcyAqL1xuLmRpaml0QWNjb3JkaW9uVGl0bGUgLmFycm93VGV4dFVwLFxuLmRpaml0QWNjb3JkaW9uVGl0bGUgLmFycm93VGV4dERvd24ge1xuXHRkaXNwbGF5OiBub25lO1xuXHRmb250LXNpemU6IDAuNjVlbTtcblx0Zm9udC13ZWlnaHQ6IG5vcm1hbCAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZSAuYXJyb3dUZXh0VXAsXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZVNlbGVjdGVkIC5hcnJvd1RleHREb3duIHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZVNlbGVjdGVkIC5hcnJvd1RleHRVcCB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cbi5kaWppdEFjY29yZGlvbkNoaWxkV3JhcHBlciB7XG5cdC8qIHRoaXMgaXMgdGhlIG5vZGUgd2hvc2UgaGVpZ2h0IGlzIGFkanVzdGVkICovXG5cdG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi8qIENhbGVuZGFyICovXG5cbi5kaWppdENhbGVuZGFyQ29udGFpbmVyIHRhYmxlIHtcblx0d2lkdGg6IGF1dG87XHQvKiBpbiBjYXNlIHVzZXIgaGFzIHNwZWNpZmllZCBhIHdpZHRoIGZvciB0aGUgVEFCTEUgbm9kZXMsIHNlZSAjMTA1NTMgKi9cblx0Y2xlYXI6IGJvdGg7ICAgIC8qIGNsZWFyIG1hcmdpbiBjcmVhdGVkIGZvciBsZWZ0L3JpZ2h0IG1vbnRoIGFycm93czsgbmVlZGVkIG9uIElFMTAgZm9yIENhbGVuZGFyTGl0ZSAqL1xufVxuLmRpaml0Q2FsZW5kYXJDb250YWluZXIgdGgsIC5kaWppdENhbGVuZGFyQ29udGFpbmVyIHRkIHtcblx0cGFkZGluZzogMDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cblxuLmRpaml0Q2FsZW5kYXJNb250aENvbnRhaW5lciB7XG5cdHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5kaWppdENhbGVuZGFyRGVjcmVtZW50QXJyb3cge1xuXHRmbG9hdDogbGVmdDtcbn1cbi5kaWppdENhbGVuZGFySW5jcmVtZW50QXJyb3cge1xuXHRmbG9hdDogcmlnaHQ7XG59XG5cbi5kaWppdENhbGVuZGFyWWVhckxhYmVsIHtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwOyAgICAvKiBtYWtlIHN1cmUgcHJldmlvdXMsIGN1cnJlbnQsIGFuZCBuZXh0IHllYXIgYXBwZWFyIG9uIHNhbWUgcm93ICovXG59XG5cbi5kaWppdENhbGVuZGFyTmV4dFllYXIge1xuXHRtYXJnaW46MCAwIDAgMC41NWVtO1xufVxuXG4uZGlqaXRDYWxlbmRhclByZXZpb3VzWWVhciB7XG5cdG1hcmdpbjowIDAuNTVlbSAwIDA7XG59XG5cbi5kaWppdENhbGVuZGFySW5jcmVtZW50Q29udHJvbCB7XG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kaWppdENhbGVuZGFySW5jcmVtZW50Q29udHJvbCxcbi5kaWppdENhbGVuZGFyRGF0ZVRlbXBsYXRlLFxuLmRpaml0Q2FsZW5kYXJNb250aExhYmVsLFxuLmRpaml0Q2FsZW5kYXJQcmV2aW91c1llYXIsXG4uZGlqaXRDYWxlbmRhck5leHRZZWFyIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGlqaXRDYWxlbmRhckRpc2FibGVkRGF0ZSB7XG5cdGNvbG9yOiBncmF5O1xuXHR0ZXh0LWRlY29yYXRpb246IGxpbmUtdGhyb3VnaDtcblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4uZGlqaXRTcGFjZXIge1xuXHQvKiBkb24ndCBkaXNwbGF5IGl0LCBidXQgbWFrZSBpdCBhZmZlY3QgdGhlIHdpZHRoICovXG4gIFx0cG9zaXRpb246IHJlbGF0aXZlO1xuICBcdGhlaWdodDogMXB4O1xuICBcdG92ZXJmbG93OiBoaWRkZW47XG4gIFx0dmlzaWJpbGl0eTogaGlkZGVuO1xufVxuXG4vKiBTdHlsaW5nIGZvciBtb250aCBkcm9wIGRvd24gbGlzdCAqL1xuXG4uZGlqaXRDYWxlbmRhck1vbnRoTWVudSAuZGlqaXRDYWxlbmRhck1vbnRoTGFiZWwge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcbn1cblxuLyogTWVudSAqL1xuXG4uZGlqaXRNZW51IHtcblx0Ym9yZGVyOjFweCBzb2xpZCBibGFjaztcblx0YmFja2dyb3VuZC1jb2xvcjp3aGl0ZTtcbn1cbi5kaWppdE1lbnVUYWJsZSB7XG5cdGJvcmRlci1jb2xsYXBzZTpjb2xsYXBzZTtcblx0Ym9yZGVyLXdpZHRoOjA7XG5cdGJhY2tncm91bmQtY29sb3I6d2hpdGU7XG59XG5cbi8qIHdvcmthcm91bmQgZm9yIHdlYmtpdCBidWcgIzg0MjcsIHJlbW92ZSB0aGlzIHdoZW4gaXQgaXMgZml4ZWQgdXBzdHJlYW0gKi9cbi5kal93ZWJraXQgLmRpaml0TWVudVRhYmxlIHRkW2NvbHNwYW49XCIyXCJde1xuXHRib3JkZXItcmlnaHQ6aGlkZGVuO1xufVxuXG4uZGlqaXRNZW51SXRlbSB7XG5cdHRleHQtYWxpZ246IGxlZnQ7XG5cdHdoaXRlLXNwYWNlOiBub3dyYXA7XG5cdHBhZGRpbmc6LjFlbSAuMmVtO1xuXHRjdXJzb3I6cG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLypcbk5vIG5lZWQgdG8gc2hvdyBhIGZvY3VzIGJvcmRlciBzaW5jZSBpdCdzIG9idmlvdXMgZnJvbSB0aGUgc2hhZGluZywgYW5kIHRoZXJlJ3MgYSAuZGpfYTExeSAuZGlqaXRNZW51SXRlbVNlbGVjdGVkXG5ydWxlIGJlbG93IHRoYXQgaGFuZGxlcyB0aGUgaGlnaCBjb250cmFzdCBjYXNlIHdoZW4gdGhlcmUncyBubyBzaGFkaW5nLlxuSGlkaW5nIHRoZSBmb2N1cyBib3JkZXIgYWxzbyB3b3JrcyBhcm91bmQgd2Via2l0IGJ1ZyBodHRwczovL2NvZGUuZ29vZ2xlLmNvbS9wL2Nocm9taXVtL2lzc3Vlcy9kZXRhaWw/aWQ9MTI1Nzc5LlxuKi9cbi5kaWppdE1lbnVJdGVtOmZvY3VzIHtcblx0b3V0bGluZTogbm9uZVxufVxuXG4uZGlqaXRNZW51UGFzc2l2ZSAuZGlqaXRNZW51SXRlbUhvdmVyLFxuLmRpaml0TWVudUl0ZW1TZWxlY3RlZCB7XG5cdC8qXG5cdCAqIGRpaml0TWVudUl0ZW1Ib3ZlciByZWZlcnMgdG8gYWN0dWFsIG1vdXNlIG92ZXJcblx0ICogZGlqaXRNZW51SXRlbVNlbGVjdGVkIGlzIHVzZWQgYWZ0ZXIgYSBtZW51IGhhcyBiZWVuIFwiYWN0aXZhdGVkXCIgYnlcblx0ICogY2xpY2tpbmcgaXQsIHRhYmJpbmcgaW50byBpdCwgb3IgYmVpbmcgb3BlbmVkIGZyb20gYSBwYXJlbnQgbWVudSxcblx0ICogYW5kIGRlbm90ZXMgdGhhdCB0aGUgbWVudSBpdGVtIGhhcyBmb2N1cyBvciB0aGF0IGZvY3VzIGlzIG9uIGEgY2hpbGRcblx0ICogbWVudVxuXHQgKi9cblx0YmFja2dyb3VuZC1jb2xvcjpibGFjaztcblx0Y29sb3I6d2hpdGU7XG59XG5cbi5kaWppdE1lbnVJdGVtSWNvbiwgLmRpaml0TWVudUV4cGFuZCB7XG5cdGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG59XG5cbi5kaWppdE1lbnVJdGVtRGlzYWJsZWQgKiB7XG5cdC8qIGZvciBhIGRpc2FibGVkIG1lbnUgaXRlbSwganVzdCBzZXQgaXQgdG8gbW9zdGx5IHRyYW5zcGFyZW50ICovXG5cdG9wYWNpdHk6MC41O1xuXHRjdXJzb3I6ZGVmYXVsdDtcbn1cbi5kal9pZSAuZGpfYTExeSAuZGlqaXRNZW51SXRlbURpc2FibGVkLFxuLmRqX2llIC5kal9hMTF5IC5kaWppdE1lbnVJdGVtRGlzYWJsZWQgKixcbi5kal9pZSAuZGlqaXRNZW51SXRlbURpc2FibGVkICoge1xuXHRjb2xvcjogZ3JheTtcblx0ZmlsdGVyOiBhbHBoYShvcGFjaXR5PTM1KTtcbn1cblxuLmRpaml0TWVudUl0ZW1MYWJlbCB7XG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kal9hMTF5IC5kaWppdE1lbnVJdGVtU2VsZWN0ZWQge1xuXHRib3JkZXI6IDFweCBkb3R0ZWQgYmxhY2sgIWltcG9ydGFudDtcdC8qIGZvciAyLjAgdXNlIG91dGxpbmUgaW5zdGVhZCwgdG8gcHJldmVudCBqaXR0ZXIgKi9cbn1cblxuLmRqX2ExMXkgLmRpaml0TWVudUl0ZW1TZWxlY3RlZCAuZGlqaXRNZW51SXRlbUxhYmVsIHtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG59XG4uZGpfaWU4IC5kal9hMTF5IC5kaWppdE1lbnVJdGVtTGFiZWwge1xuXHRwb3NpdGlvbjpzdGF0aWM7XG59XG5cbi5kaWppdE1lbnVFeHBhbmRBMTF5IHtcblx0ZGlzcGxheTogbm9uZTtcbn1cbi5kal9hMTF5IC5kaWppdE1lbnVFeHBhbmRBMTF5IHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGlqaXRNZW51U2VwYXJhdG9yIHRkIHtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xufVxuXG4vKiBzZXBhcmF0b3IgY2FuIGJlIHR3byBwaXhlbHMgLS0gc2V0IGJvcmRlciBvZiBlaXRoZXIgb25lIHRvIDAgdG8gaGF2ZSBvbmx5IG9uZSAqL1xuLmRpaml0TWVudVNlcGFyYXRvclRvcCB7XG5cdGhlaWdodDogNTAlO1xuXHRtYXJnaW46IDA7XG5cdG1hcmdpbi10b3A6M3B4O1xuXHRmb250LXNpemU6IDFweDtcbn1cblxuLmRpaml0TWVudVNlcGFyYXRvckJvdHRvbSB7XG5cdGhlaWdodDogNTAlO1xuXHRtYXJnaW46IDA7XG5cdG1hcmdpbi1ib3R0b206M3B4O1xuXHRmb250LXNpemU6IDFweDtcbn1cblxuLyogQ2hlY2tlZE1lbnVJdGVtIGFuZCBSYWRpb01lbnVJdGVtICovXG4uZGlqaXRNZW51SXRlbUljb25DaGFyIHtcblx0ZGlzcGxheTogbm9uZTtcdFx0LyogZG9uJ3QgZGlzcGxheSBleGNlcHQgaW4gaGlnaCBjb250cmFzdCBtb2RlICovXG5cdHZpc2liaWxpdHk6IGhpZGRlbjtcdC8qIGZvciBoaWdoIGNvbnRyYXN0IG1vZGUgd2hlbiBtZW51aXRlbSBpcyB1bmNoZWNrZWQ6IGxlYXZlIHNwYWNlIGZvciB3aGVuIGl0IGlzIGNoZWNrZWQgKi9cbn1cbi5kal9hMTF5IC5kaWppdE1lbnVJdGVtSWNvbkNoYXIge1xuXHRkaXNwbGF5OiBpbmxpbmU7XHQvKiBkaXNwbGF5IGNoYXJhY3RlciBpbiBoaWdoIGNvbnRyYXN0IG1vZGUsIHNpbmNlIGljb24gZG9lc24ndCBzaG93ICovXG59XG4uZGlqaXRDaGVja2VkTWVudUl0ZW1DaGVja2VkIC5kaWppdE1lbnVJdGVtSWNvbkNoYXIsXG4uZGlqaXRSYWRpb01lbnVJdGVtQ2hlY2tlZCAuZGlqaXRNZW51SXRlbUljb25DaGFyIHtcblx0dmlzaWJpbGl0eTogdmlzaWJsZTsgLyogbWVudWl0ZW0gaXMgY2hlY2tlZCAqL1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdE1lbnVCYXIgLmRpaml0TWVudUl0ZW0ge1xuXHQvKiBzbyBib3R0b20gYm9yZGVyIG9mIE1lbnVCYXIgYXBwZWFycyBvbiBJRTcgaW4gaGlnaC1jb250cmFzdCBtb2RlICovXG5cdG1hcmdpbjogMDtcbn1cblxuLyogU3RhY2tDb250YWluZXIgKi9cblxuLmRpaml0U3RhY2tDb250cm9sbGVyIC5kaWppdFRvZ2dsZUJ1dHRvbkNoZWNrZWQgKiB7XG5cdGN1cnNvcjogZGVmYXVsdDtcdC8qIGJlY2F1c2UgcHJlc3NpbmcgaXQgaGFzIG5vIGVmZmVjdCAqL1xufVxuXG4vKioqXG5UYWJDb250YWluZXJcblxuTWFpbiBjbGFzcyBoaWVyYXJjaHk6XG5cbi5kaWppdFRhYkNvbnRhaW5lciAtIHRoZSB3aG9sZSBUYWJDb250YWluZXJcbiAgIC5kaWppdFRhYkNvbnRyb2xsZXIgLyAuZGlqaXRUYWJMaXN0Q29udGFpbmVyLXRvcCAtIHdyYXBwZXIgZm9yIHRhYiBidXR0b25zLCBzY3JvbGwgYnV0dG9uc1xuXHQgLmRpaml0VGFiTGlzdFdyYXBwZXIgLyAuZGlqaXRUYWJDb250YWluZXJUb3BTdHJpcCAtIG91dGVyIHdyYXBwZXIgZm9yIHRhYiBidXR0b25zIChub3JtYWwgd2lkdGgpXG5cdFx0Lm5vd3JhcFRhYlN0cmlwIC8gLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgLSBpbm5lciB3cmFwcGVyIGZvciB0YWIgYnV0dG9ucyAoNTBLIHdpZHRoKVxuICAgLmRpaml0VGFiUGFuZVdyYXBwZXIgLSB3cmFwcGVyIGZvciBjb250ZW50IHBhbmVzLCBoYXMgYWxsIGJvcmRlcnMgZXhjZXB0IHRoZSBvbmUgYmV0d2VlbiBjb250ZW50IGFuZCB0YWJzXG4qKiovXG5cbi5kaWppdFRhYkNvbnRhaW5lciB7XG4gICAgei1pbmRleDogMDsgLyogc28gei1pbmRleCBzZXR0aW5ncyBiZWxvdyBoYXZlIG5vIGVmZmVjdCBvdXRzaWRlIG9mIHRoZSBUYWJDb250YWluZXIgKi9cbiAgICBvdmVyZmxvdzogdmlzaWJsZTsgLyogcHJldmVudCBvZmYtYnktb25lLXBpeGVsIGVycm9ycyBmcm9tIGhpZGluZyBib3R0b20gYm9yZGVyIChvcHBvc2l0ZSB0YWIgbGFiZWxzKSAqL1xufVxuLmRqX2llNiAuZGlqaXRUYWJDb250YWluZXIge1xuICAgIC8qIHdvcmthcm91bmQgSUU2IHByb2JsZW0gd2hlbiB0YWxsIGNvbnRlbnQgb3ZlcmZsb3dzIFRhYkNvbnRhaW5lciwgc2VlIGVkaXRvci90ZXN0X0Z1bGxTY3JlZW4uaHRtbCAqL1xuICAgb3ZlcmZsb3c6IGhpZGRlbjtcblxufVxuLmRpaml0VGFiQ29udGFpbmVyTm9MYXlvdXQge1xuXHR3aWR0aDogMTAwJTtcdC8qIG90aGVyd2lzZSBTY3JvbGxpbmdUYWJDb250cm9sbGVyIGdvZXMgdG8gNTBLIHBpeGVscyB3aWRlICovXG59XG5cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzLFxuLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMsXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMsXG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIHtcbiAgICB6LWluZGV4OiAxO1xuXHRvdmVyZmxvdzogdmlzaWJsZSAhaW1wb3J0YW50OyAgLyogc28gdGFicyBjYW4gY292ZXIgdXAgYm9yZGVyIGFkamFjZW50IHRvIGNvbnRhaW5lciAqL1xufVxuXG4uZGlqaXRUYWJDb250cm9sbGVyIHtcbiAgICB6LWluZGV4OiAxO1xufVxuLmRpaml0VGFiQ29udGFpbmVyQm90dG9tLWNvbnRhaW5lcixcbi5kaWppdFRhYkNvbnRhaW5lclRvcC1jb250YWluZXIsXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LWNvbnRhaW5lcixcbi5kaWppdFRhYkNvbnRhaW5lclJpZ2h0LWNvbnRhaW5lciB7XG5cdHotaW5kZXg6MDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcblx0Ym9yZGVyOiAxcHggc29saWQgYmxhY2s7XG59XG4ubm93cmFwVGFiU3RyaXAge1xuXHR3aWR0aDogNTAwMDBweDtcblx0ZGlzcGxheTogYmxvY2s7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0OyAgLyoganVzdCBpbiBjYXNlIGFuY2VzdG9yIGhhcyBub24tc3RhbmRhcmQgc2V0dGluZyAqL1xuICAgIHotaW5kZXg6IDE7XG59XG4uZGlqaXRUYWJMaXN0V3JhcHBlciB7XG5cdG92ZXJmbG93OiBoaWRkZW47XG4gICAgei1pbmRleDogMTtcbn1cblxuLmRqX2ExMXkgLnRhYlN0cmlwQnV0dG9uIGltZyB7XG5cdC8qIGhpZGUgdGhlIGljb25zIChvciByYXRoZXIgdGhlIGVtcHR5IHNwYWNlIHdoZXJlIHRoZXkgbm9ybWFsbHkgYXBwZWFyKSBiZWNhdXNlIHRleHQgd2lsbCBhcHBlYXIgaW5zdGVhZCAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJUb3AtdGFicyB7XG5cdGJvcmRlci1ib3R0b206IDFweCBzb2xpZCBibGFjaztcbn1cbi5kaWppdFRhYkNvbnRhaW5lclRvcC1jb250YWluZXIge1xuXHRib3JkZXItdG9wOiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMge1xuXHRib3JkZXItcmlnaHQ6IDFweCBzb2xpZCBibGFjaztcblx0ZmxvYXQ6IGxlZnQ7ICAgIC8qIG5lZWRlZCBmb3IgSUU3IFJUTCBtb2RlICovXG59XG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LWNvbnRhaW5lciB7XG5cdGJvcmRlci1sZWZ0OiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJCb3R0b20tdGFicyB7XG5cdGJvcmRlci10b3A6IDFweCBzb2xpZCBibGFjaztcbn1cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS1jb250YWluZXIge1xuXHRib3JkZXItYm90dG9tOiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIHtcblx0Ym9yZGVyLWxlZnQ6IDFweCBzb2xpZCBibGFjaztcblx0ZmxvYXQ6IGxlZnQ7ICAgIC8qIG5lZWRlZCBmb3IgSUU3IFJUTCBtb2RlICovXG59XG4uZGlqaXRUYWJDb250YWluZXJSaWdodC1jb250YWluZXIge1xuXHRib3JkZXItcmlnaHQ6IDA7XG59XG5cbmRpdi5kaWppdFRhYkRpc2FibGVkLCAuZGpfaWUgZGl2LmRpaml0VGFiRGlzYWJsZWQge1xuXHRjdXJzb3I6IGF1dG87XG59XG5cbi5kaWppdFRhYiB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRjdXJzb3I6cG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcblx0d2hpdGUtc3BhY2U6bm93cmFwO1xuXHR6LWluZGV4OjM7XG59XG4uZGlqaXRUYWIgKiB7XG5cdC8qIG1ha2UgdGFiIGljb25zIGFuZCBjbG9zZSBpY29uIGxpbmUgdXAgdy90ZXh0ICovXG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG4uZGlqaXRUYWJDaGVja2VkIHtcblx0Y3Vyc29yOiBkZWZhdWx0O1x0LyogYmVjYXVzZSBjbGlja2luZyB3aWxsIGhhdmUgbm8gZWZmZWN0ICovXG59XG5cbi5kaWppdFRhYkNvbnRhaW5lclRvcC10YWJzIC5kaWppdFRhYiB7XG5cdHRvcDogMXB4O1x0LyogdG8gb3ZlcmxhcCBib3JkZXIgb24gLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgKi9cbn1cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzIC5kaWppdFRhYiB7XG5cdHRvcDogLTFweDtcdC8qIHRvIG92ZXJsYXAgYm9yZGVyIG9uIC5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzICovXG59XG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMgLmRpaml0VGFiIHtcblx0bGVmdDogMXB4O1x0LyogdG8gb3ZlcmxhcCBib3JkZXIgb24gLmRpaml0VGFiQ29udGFpbmVyTGVmdC10YWJzICovXG59XG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIC5kaWppdFRhYiB7XG5cdGxlZnQ6IC0xcHg7XHQvKiB0byBvdmVybGFwIGJvcmRlciBvbiAuZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzICovXG59XG5cblxuLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgLmRpaml0VGFiLFxuLmRpaml0VGFiQ29udGFpbmVyQm90dG9tLXRhYnMgLmRpaml0VGFiIHtcblx0LyogSW5saW5lLWJsb2NrICovXG5cdGRpc3BsYXk6aW5saW5lLWJsb2NrO1x0XHRcdC8qIHdlYmtpdCBhbmQgRkYzICovXG5cdCN6b29tOiAxOyAvKiBzZXQgaGFzTGF5b3V0OnRydWUgdG8gbWltaWMgaW5saW5lLWJsb2NrICovXG5cdCNkaXNwbGF5OmlubGluZTsgLyogZG9uJ3QgdXNlIC5kal9pZSBzaW5jZSB0aGF0IGluY3JlYXNlcyB0aGUgcHJpb3JpdHkgKi9cbn1cblxuLnRhYlN0cmlwQnV0dG9uIHtcblx0ei1pbmRleDogMTI7XG59XG5cbi5kaWppdFRhYkJ1dHRvbkRpc2FibGVkIC50YWJTdHJpcEJ1dHRvbiB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cblxuLmRpaml0VGFiQ2xvc2VCdXR0b24ge1xuXHRtYXJnaW4tbGVmdDogMWVtO1xufVxuXG4uZGlqaXRUYWJDbG9zZVRleHQge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi5kaWppdFRhYiAudGFiTGFiZWwge1xuXHQvKiBtYWtlIHN1cmUgdGFicyB3L2Nsb3NlIGJ1dHRvbiBhbmQgdy9vdXQgY2xvc2UgYnV0dG9uIGFyZSBzYW1lIGhlaWdodCwgZXZlbiB3L3NtYWxsICg8MTVweCkgZm9udC5cblx0ICogYXNzdW1lcyA8PTE1cHggaGVpZ2h0IGZvciBjbG9zZSBidXR0b24gaWNvbi5cblx0ICovXG5cdG1pbi1oZWlnaHQ6IDE1cHg7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cbi5kaWppdE5vSWNvbiB7XG5cdC8qIGFwcGxpZWQgdG8gPGltZz4vPHNwYW4+IG5vZGUgd2hlbiB0aGVyZSBpcyBubyBpY29uIHNwZWNpZmllZCAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRqX2llNiAuZGlqaXRUYWIgLmRpaml0Tm9JY29uIHtcblx0LyogYmVjYXVzZSBtaW4taGVpZ2h0IChvbiAudGFiTGFiZWwsIGFib3ZlKSBkb2Vzbid0IHdvcmsgb24gSUU2ICovXG5cdGRpc3BsYXk6IGlubGluZTtcblx0aGVpZ2h0OiAxNXB4O1xuXHR3aWR0aDogMXB4O1xufVxuXG4vKiBpbWFnZXMgb2ZmLCBoaWdoLWNvbnRyYXN0IG1vZGUgc3R5bGVzICovXG5cbi5kal9hMTF5IC5kaWppdFRhYkNsb3NlQnV0dG9uIHtcblx0YmFja2dyb3VuZC1pbWFnZTogbm9uZSAhaW1wb3J0YW50O1xuXHR3aWR0aDogYXV0byAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcbn1cblxuLmRqX2ExMXkgLmRpaml0VGFiQ2xvc2VUZXh0IHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGlqaXRUYWJQYW5lLFxuLmRpaml0U3RhY2tDb250YWluZXItY2hpbGQsXG4uZGlqaXRBY2NvcmRpb25Db250YWluZXItY2hpbGQge1xuXHQvKiBjaGlsZHJlbiBvZiBUYWJDb250YWluZXIsIFN0YWNrQ29udGFpbmVyLCBhbmQgQWNjb3JkaW9uQ29udGFpbmVyIHNob3VsZG4ndCBoYXZlIGJvcmRlcnNcblx0ICogYi9jIGEgYm9yZGVyIGlzIGFscmVhZHkgdGhlcmUgZnJvbSB0aGUgVGFiQ29udGFpbmVyL1N0YWNrQ29udGFpbmVyL0FjY29yZGlvbkNvbnRhaW5lciBpdHNlbGYuXG5cdCAqL1xuICAgIGJvcmRlcjogbm9uZSAhaW1wb3J0YW50O1xufVxuXG4vKiBJbmxpbmVFZGl0Qm94ICovXG4uZGlqaXRJbmxpbmVFZGl0Qm94RGlzcGxheU1vZGUge1xuXHRib3JkZXI6IDFweCBzb2xpZCB0cmFuc3BhcmVudDtcdC8qIHNvIGtleWxpbmUgKGJvcmRlcikgb24gaG92ZXIgY2FuIGFwcGVhciB3aXRob3V0IHNjcmVlbiBqdW1wICovXG5cdGN1cnNvcjogdGV4dDtcbn1cblxuLmRqX2ExMXkgLmRpaml0SW5saW5lRWRpdEJveERpc3BsYXlNb2RlLFxuLmRqX2llNiAuZGlqaXRJbmxpbmVFZGl0Qm94RGlzcGxheU1vZGUge1xuXHQvKiBleGNlcHQgdGhhdCBJRTYgZG9lc24ndCBzdXBwb3J0IHRyYW5zcGFyZW50IGJvcmRlcnMsIG5vciBkb2VzIGhpZ2ggY29udHJhc3QgbW9kZSAqL1xuXHRib3JkZXI6IG5vbmU7XG59XG5cbi5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZUhvdmVyLFxuLmRqX2ExMXkgLmRpaml0SW5saW5lRWRpdEJveERpc3BsYXlNb2RlSG92ZXIsXG4uZGpfaWU2IC5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZUhvdmVyIHtcblx0LyogQW4gSW5saW5lRWRpdEJveCBpbiB2aWV3IG1vZGUgKGNsaWNrIHRoaXMgdG8gZWRpdCB0aGUgdGV4dCkgKi9cblx0YmFja2dyb3VuZC1jb2xvcjogI2UyZWJmMjtcblx0Ym9yZGVyOiBzb2xpZCAxcHggYmxhY2s7XG59XG5cbi5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZURpc2FibGVkIHtcblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4vKiBUcmVlICovXG4uZGlqaXRUcmVlIHtcblx0b3ZlcmZsb3c6IGF1dG87XHQvKiBmb3Igc2Nyb2xsYmFycyB3aGVuIFRyZWUgaGFzIGEgaGVpZ2h0IHNldHRpbmcsIGFuZCB0byBwcmV2ZW50IHdyYXBwaW5nIGFyb3VuZCBmbG9hdCBlbGVtZW50cywgc2VlICMxMTQ5MSAqL1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGlqaXRUcmVlQ29udGFpbmVyIHtcblx0ZmxvYXQ6IGxlZnQ7XHQvKiBmb3IgY29ycmVjdCBoaWdobGlnaHRpbmcgZHVyaW5nIGhvcml6b250YWwgc2Nyb2xsLCBzZWUgIzE2MTMyICovXG59XG5cbi5kaWppdFRyZWVJbmRlbnQge1xuXHQvKiBhbW91bnQgdG8gaW5kZW50IGVhY2ggdHJlZSBub2RlIChyZWxhdGl2ZSB0byBwYXJlbnQgbm9kZSkgKi9cblx0d2lkdGg6IDE5cHg7XG59XG5cbi5kaWppdFRyZWVSb3csIC5kaWppdFRyZWVDb250ZW50IHtcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcbn1cblxuLmRqX2llIC5kaWppdFRyZWVMYWJlbDpmb2N1cyB7XG5cdC8qIHdvcmthcm91bmQgSUU5IGJlaGF2aW9yIHdoZXJlIGRvd24gYXJyb3dpbmcgdGhyb3VnaCBUcmVlTm9kZXMgZG9lc24ndCBzaG93IGZvY3VzIG91dGxpbmUgKi9cblx0b3V0bGluZTogMXB4IGRvdHRlZCBibGFjaztcbn1cblxuLmRpaml0VHJlZVJvdyBpbWcge1xuXHQvKiBtYWtlIHRoZSBleHBhbmRvIGFuZCBmb2xkZXIgaWNvbnMgbGluZSB1cCB3aXRoIHRoZSBsYWJlbCAqL1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuXG4uZGlqaXRUcmVlQ29udGVudCB7XG4gICAgY3Vyc29yOiBkZWZhdWx0O1xufVxuXG4uZGlqaXRFeHBhbmRvVGV4dCB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cbi5kal9hMTF5IC5kaWppdEV4cGFuZG9UZXh0IHtcblx0ZGlzcGxheTogaW5saW5lO1xuXHRwYWRkaW5nLWxlZnQ6IDEwcHg7XG5cdHBhZGRpbmctcmlnaHQ6IDEwcHg7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG5cdGJvcmRlci13aWR0aDogdGhpbjtcblx0Y3Vyc29yOiBwb2ludGVyO1xufVxuXG4uZGlqaXRUcmVlTGFiZWwge1xuXHRtYXJnaW46IDAgNHB4O1xufVxuXG4vKiBEaWFsb2cgKi9cblxuLmRpaml0RGlhbG9nIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR6LWluZGV4OiA5OTk7XG5cdG92ZXJmbG93OiBoaWRkZW47XHQvKiBvdmVycmlkZSBvdmVyZmxvdzogYXV0bzsgZnJvbSBDb250ZW50UGFuZSB0byBtYWtlIGRyYWdnaW5nIHNtb290aGVyICovXG59XG5cbi5kaWppdERpYWxvZ1RpdGxlQmFyIHtcblx0Y3Vyc29yOiBtb3ZlO1xufVxuLmRpaml0RGlhbG9nRml4ZWQgLmRpaml0RGlhbG9nVGl0bGVCYXIge1xuXHRjdXJzb3I6ZGVmYXVsdDtcbn1cbi5kaWppdERpYWxvZ0Nsb3NlSWNvbiB7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cbi5kaWppdERpYWxvZ1BhbmVDb250ZW50IHtcblx0LXdlYmtpdC1vdmVyZmxvdy1zY3JvbGxpbmc6IHRvdWNoO1xufVxuLmRpaml0RGlhbG9nVW5kZXJsYXlXcmFwcGVyIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHRsZWZ0OiAwO1xuXHR0b3A6IDA7XG5cdHotaW5kZXg6IDk5ODtcblx0ZGlzcGxheTogbm9uZTtcblx0YmFja2dyb3VuZDogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbn1cblxuLmRpaml0RGlhbG9nVW5kZXJsYXkge1xuXHRiYWNrZ3JvdW5kOiAjZWVlO1xuXHRvcGFjaXR5OiAwLjU7XG59XG5cbi5kal9pZSAuZGlqaXREaWFsb2dVbmRlcmxheSB7XG5cdGZpbHRlcjogYWxwaGEob3BhY2l0eT01MCk7XG59XG5cbi8qIGltYWdlcyBvZmYsIGhpZ2gtY29udHJhc3QgbW9kZSBzdHlsZXMgKi9cbi5kal9hMTF5IC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGpfYTExeSAuZGlqaXREaWFsb2cge1xuXHRvcGFjaXR5OiAxICFpbXBvcnRhbnQ7XG5cdGJhY2tncm91bmQtY29sb3I6IHdoaXRlICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdERpYWxvZyAuY2xvc2VUZXh0IHtcblx0ZGlzcGxheTpub25lO1xuXHQvKiBmb3IgdGhlIG9uaG92ZXIgYm9yZGVyIGluIGhpZ2ggY29udHJhc3Qgb24gSUU6ICovXG5cdHBvc2l0aW9uOmFic29sdXRlO1xufVxuXG4uZGpfYTExeSAuZGlqaXREaWFsb2cgLmNsb3NlVGV4dCB7XG5cdGRpc3BsYXk6aW5saW5lO1xufVxuXG4vKiBTbGlkZXIgKi9cblxuLmRpaml0U2xpZGVyTW92ZWFibGUge1xuXHR6LWluZGV4Ojk5O1xuXHRwb3NpdGlvbjphYnNvbHV0ZSAhaW1wb3J0YW50O1xuXHRkaXNwbGF5OmJsb2NrO1xuXHR2ZXJ0aWNhbC1hbGlnbjptaWRkbGU7XG59XG5cbi5kaWppdFNsaWRlck1vdmVhYmxlSCB7XG5cdHJpZ2h0OjA7XG59XG4uZGlqaXRTbGlkZXJNb3ZlYWJsZVYge1xuXHRyaWdodDo1MCU7XG59XG5cbi5kal9hMTF5IGRpdi5kaWppdFNsaWRlckltYWdlSGFuZGxlLFxuLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRtYXJnaW46MDtcblx0cGFkZGluZzowO1xuXHRwb3NpdGlvbjpyZWxhdGl2ZSAhaW1wb3J0YW50O1xuXHRib3JkZXI6OHB4IHNvbGlkIGdyYXk7XG5cdHdpZHRoOjA7XG5cdGhlaWdodDowO1xuXHRjdXJzb3I6IHBvaW50ZXI7XG5cdC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRqX2ExMXkgLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRmb250LXNpemU6IDA7XG59XG4uZGpfaWU3IC5kaWppdFNsaWRlckltYWdlSGFuZGxlIHtcblx0b3ZlcmZsb3c6IGhpZGRlbjsgLyogSUU3IHdvcmthcm91bmQgdG8gbWFrZSBzbGlkZXIgaGFuZGxlIFZJU0lCTEUgaW4gbm9uLWExMXkgbW9kZSAqL1xufVxuLmRqX2llNyAuZGpfYTExeSAuZGlqaXRTbGlkZXJJbWFnZUhhbmRsZSB7XG5cdG92ZXJmbG93OiB2aXNpYmxlOyAvKiBJRTcgd29ya2Fyb3VuZCB0byBtYWtlIHNsaWRlciBoYW5kbGUgVklTSUJMRSBpbiBhMTF5IG1vZGUgKi9cbn1cbi5kal9hMTF5IC5kaWppdFNsaWRlckZvY3VzZWQgLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRib3JkZXI6NHB4IHNvbGlkICMwMDA7XG5cdGhlaWdodDo4cHg7XG5cdHdpZHRoOjhweDtcbn1cblxuLmRpaml0U2xpZGVySW1hZ2VIYW5kbGVWIHtcblx0dG9wOi04cHg7XG5cdHJpZ2h0OiAtNTAlO1xufVxuXG4uZGlqaXRTbGlkZXJJbWFnZUhhbmRsZUgge1xuXHRsZWZ0OjUwJTtcblx0dG9wOi01cHg7XG5cdHZlcnRpY2FsLWFsaWduOnRvcDtcbn1cblxuLmRpaml0U2xpZGVyQmFyIHtcblx0Ym9yZGVyLXN0eWxlOnNvbGlkO1xuXHRib3JkZXItY29sb3I6YmxhY2s7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLmRpaml0U2xpZGVyQmFyQ29udGFpbmVyViB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRoZWlnaHQ6MTAwJTtcblx0ei1pbmRleDoxO1xufVxuXG4uZGlqaXRTbGlkZXJCYXJDb250YWluZXJIIHtcblx0cG9zaXRpb246cmVsYXRpdmU7XG5cdHotaW5kZXg6MTtcbn1cblxuLmRpaml0U2xpZGVyQmFySCB7XG5cdGhlaWdodDo0cHg7XG5cdGJvcmRlci13aWR0aDoxcHggMDtcbn1cblxuLmRpaml0U2xpZGVyQmFyViB7XG5cdHdpZHRoOjRweDtcblx0Ym9yZGVyLXdpZHRoOjAgMXB4O1xufVxuXG4uZGlqaXRTbGlkZXJQcm9ncmVzc0JhciB7XG5cdGJhY2tncm91bmQtY29sb3I6cmVkO1xuXHR6LWluZGV4OjE7XG59XG5cbi5kaWppdFNsaWRlclByb2dyZXNzQmFyViB7XG5cdHBvc2l0aW9uOnN0YXRpYyAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6MDtcblx0dmVydGljYWwtYWxpZ246dG9wO1xuXHR0ZXh0LWFsaWduOmxlZnQ7XG59XG5cbi5kaWppdFNsaWRlclByb2dyZXNzQmFySCB7XG5cdHBvc2l0aW9uOmFic29sdXRlICFpbXBvcnRhbnQ7XG5cdHdpZHRoOjA7XG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0b3ZlcmZsb3c6dmlzaWJsZTtcbn1cblxuLmRpaml0U2xpZGVyUmVtYWluaW5nQmFyIHtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHRiYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFyZW50O1xuXHR6LWluZGV4OjE7XG59XG5cbi5kaWppdFNsaWRlclJlbWFpbmluZ0JhclYge1xuXHRoZWlnaHQ6MTAwJTtcblx0dGV4dC1hbGlnbjpsZWZ0O1xufVxuXG4uZGlqaXRTbGlkZXJSZW1haW5pbmdCYXJIIHtcblx0d2lkdGg6MTAwJSAhaW1wb3J0YW50O1xufVxuXG4vKiB0aGUgc2xpZGVyIGJ1bXBlciBpcyB0aGUgc3BhY2UgY29uc3VtZWQgYnkgdGhlIHNsaWRlciBoYW5kbGUgd2hlbiBpdCBoYW5ncyBvdmVyIGFuIGVkZ2UgKi9cbi5kaWppdFNsaWRlckJ1bXBlciB7XG5cdG92ZXJmbG93OmhpZGRlbjtcblx0ei1pbmRleDoxO1xufVxuXG4uZGlqaXRTbGlkZXJCdW1wZXJWIHtcblx0d2lkdGg6NHB4O1xuXHRoZWlnaHQ6OHB4O1xuXHRib3JkZXItd2lkdGg6MCAxcHg7XG59XG5cbi5kaWppdFNsaWRlckJ1bXBlckgge1xuXHR3aWR0aDo4cHg7XG5cdGhlaWdodDo0cHg7XG5cdGJvcmRlci13aWR0aDoxcHggMDtcbn1cblxuLmRpaml0U2xpZGVyQm90dG9tQnVtcGVyLFxuLmRpaml0U2xpZGVyTGVmdEJ1bXBlciB7XG5cdGJhY2tncm91bmQtY29sb3I6cmVkO1xufVxuXG4uZGlqaXRTbGlkZXJUb3BCdW1wZXIsXG4uZGlqaXRTbGlkZXJSaWdodEJ1bXBlciB7XG5cdGJhY2tncm91bmQtY29sb3I6dHJhbnNwYXJlbnQ7XG59XG5cbi5kaWppdFNsaWRlckRlY29yYXRpb24ge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvbkMsXG4uZGlqaXRTbGlkZXJEZWNvcmF0aW9uViB7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTsgLyogbmVlZGVkIGZvciBJRStxdWlya3MrUlRMK3ZlcnRpY2FsIChyZW5kZXJpbmcgYnVnKSBidXQgYWRkIGV2ZXJ5d2hlcmUgZm9yIGN1c3RvbSBzdHlsaW5nIGNvbnNpc3RlbmN5IGJ1dCB0aGlzIG1lc3NlcyB1cCBJRSBob3Jpem9udGFsIHNsaWRlcnMgKi9cbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvbkgge1xuXHR3aWR0aDogMTAwJTtcbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvblYge1xuXHRoZWlnaHQ6IDEwMCU7XG5cdHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi5kaWppdFNsaWRlckJ1dHRvbiB7XG5cdGZvbnQtZmFtaWx5Om1vbm9zcGFjZTtcblx0bWFyZ2luOjA7XG5cdHBhZGRpbmc6MDtcblx0ZGlzcGxheTpibG9jaztcbn1cblxuLmRqX2ExMXkgLmRpaml0U2xpZGVyQnV0dG9uSW5uZXIge1xuXHR2aXNpYmlsaXR5OnZpc2libGUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0U2xpZGVyQnV0dG9uQ29udGFpbmVyIHtcblx0dGV4dC1hbGlnbjpjZW50ZXI7XG5cdGhlaWdodDowO1x0LyogPz8/ICovXG59XG4uZGlqaXRTbGlkZXJCdXR0b25Db250YWluZXIgKiB7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLmRpaml0U2xpZGVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRwYWRkaW5nOjA7XG5cdGRpc3BsYXk6YmxvY2s7XG59XG5cbi5kaWppdFJ1bGVDb250YWluZXIge1xuXHRwb3NpdGlvbjpyZWxhdGl2ZTtcblx0b3ZlcmZsb3c6dmlzaWJsZTtcbn1cblxuLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRoZWlnaHQ6MTAwJTtcblx0bGluZS1oZWlnaHQ6MDtcblx0ZmxvYXQ6bGVmdDtcblx0dGV4dC1hbGlnbjpsZWZ0O1xufVxuXG4uZGpfb3BlcmEgLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRsaW5lLWhlaWdodDoyJTtcbn1cblxuLmRqX2llIC5kaWppdFJ1bGVDb250YWluZXJWIHtcblx0bGluZS1oZWlnaHQ6bm9ybWFsO1xufVxuXG4uZGpfZ2Vja28gLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRtYXJnaW46MCAwIDFweCAwOyAvKiBtb3ppbGxhIGJ1ZyB3b3JrYXJvdW5kIGZvciBmbG9hdDpsZWZ0LGhlaWdodDoxMDAlIGJsb2NrIGVsZW1lbnRzICovXG59XG5cbi5kaWppdFJ1bGVNYXJrIHtcblx0cG9zaXRpb246YWJzb2x1dGU7XG5cdGJvcmRlcjoxcHggc29saWQgYmxhY2s7XG5cdGxpbmUtaGVpZ2h0OjA7XG5cdGhlaWdodDoxMDAlO1xufVxuXG4uZGlqaXRSdWxlTWFya0gge1xuXHR3aWR0aDowO1xuXHRib3JkZXItdG9wLXdpZHRoOjAgIWltcG9ydGFudDtcblx0Ym9yZGVyLWJvdHRvbS13aWR0aDowICFpbXBvcnRhbnQ7XG5cdGJvcmRlci1sZWZ0LXdpZHRoOjAgIWltcG9ydGFudDtcbn1cblxuLmRpaml0UnVsZUxhYmVsQ29udGFpbmVyIHtcblx0cG9zaXRpb246YWJzb2x1dGU7XG59XG5cbi5kaWppdFJ1bGVMYWJlbENvbnRhaW5lckgge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0ZGlzcGxheTppbmxpbmUtYmxvY2s7XG59XG5cbi5kaWppdFJ1bGVMYWJlbEgge1xuXHRwb3NpdGlvbjpyZWxhdGl2ZTtcblx0bGVmdDotNTAlO1xufVxuXG4uZGlqaXRSdWxlTGFiZWxWIHtcblx0Lyogc28gdGhhdCBsb25nIGxhYmVscyBkb24ndCBvdmVyZmxvdyB0byBtdWx0aXBsZSByb3dzLCBvciBvdmVyd3JpdGUgc2xpZGVyIGl0c2VsZiAqL1xuXHR0ZXh0LW92ZXJmbG93OiBlbGxpcHNpcztcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLmRpaml0UnVsZU1hcmtWIHtcblx0aGVpZ2h0OjA7XG5cdGJvcmRlci1yaWdodC13aWR0aDowICFpbXBvcnRhbnQ7XG5cdGJvcmRlci1ib3R0b20td2lkdGg6MCAhaW1wb3J0YW50O1xuXHRib3JkZXItbGVmdC13aWR0aDowICFpbXBvcnRhbnQ7XG5cdHdpZHRoOjEwMCU7XG5cdGxlZnQ6MDtcbn1cblxuLmRqX2llIC5kaWppdFJ1bGVMYWJlbENvbnRhaW5lclYge1xuXHRtYXJnaW4tdG9wOi0uNTVlbTtcbn1cblxuLmRqX2ExMXkgLmRpaml0U2xpZGVyUmVhZE9ubHksXG4uZGpfYTExeSAuZGlqaXRTbGlkZXJEaXNhYmxlZCB7XG5cdG9wYWNpdHk6MC42O1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdFNsaWRlclJlYWRPbmx5IC5kaWppdFNsaWRlckJhcixcbi5kal9pZSAuZGpfYTExeSAuZGlqaXRTbGlkZXJEaXNhYmxlZCAuZGlqaXRTbGlkZXJCYXIge1xuXHRmaWx0ZXI6IGFscGhhKG9wYWNpdHk9NDApO1xufVxuXG4vKiArIGFuZCAtIFNsaWRlciBidXR0b25zOiBvdmVycmlkZSB0aGVtZSBzZXR0aW5ncyB0byBkaXNwbGF5IGljb25zICovXG4uZGpfYTExeSAuZGlqaXRTbGlkZXIgLmRpaml0U2xpZGVyQnV0dG9uQ29udGFpbmVyIGRpdiB7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7IC8qIG90aGVyd2lzZSBoeXBoZW4gaXMgbGFyZ2VyIGFuZCBtb3JlIHZlcnRpY2FsbHkgY2VudGVyZWQgKi9cblx0Zm9udC1zaXplOiAxZW07XG5cdGxpbmUtaGVpZ2h0OiAxZW07XG5cdGhlaWdodDogYXV0bztcblx0d2lkdGg6IGF1dG87XG5cdG1hcmdpbjogMCA0cHg7XG59XG5cbi8qIEljb24tb25seSBidXR0b25zIChvZnRlbiBpbiB0b29sYmFycykgc3RpbGwgZGlzcGxheSB0aGUgdGV4dCBpbiBoaWdoLWNvbnRyYXN0IG1vZGUgKi9cbi5kal9hMTF5IC5kaWppdEJ1dHRvbkNvbnRlbnRzIC5kaWppdEJ1dHRvblRleHQsXG4uZGpfYTExeSAuZGlqaXRUYWIgLnRhYkxhYmVsIHtcblx0ZGlzcGxheTogaW5saW5lICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uVGV4dCB7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jayAhaW1wb3J0YW50O1xufVxuXG4vKiBUZXh0QXJlYSwgU2ltcGxlVGV4dEFyZWEgKi9cbi5kaWppdFRleHRBcmVhIHtcblx0d2lkdGg6MTAwJTtcblx0b3ZlcmZsb3cteTogYXV0bztcdC8qIHcvb3V0IHRoaXMgSUUncyBTaW1wbGVUZXh0QXJlYSBnb2VzIHRvIG92ZXJmbG93OiBzY3JvbGwgKi9cbn1cbi5kaWppdFRleHRBcmVhW2NvbHNdIHtcblx0d2lkdGg6YXV0bzsgLyogU2ltcGxlVGV4dEFyZWEgY29scyAqL1xufVxuLmRqX2llIC5kaWppdFRleHRBcmVhQ29scyB7XG5cdHdpZHRoOmF1dG87XG59XG5cbi5kaWppdEV4cGFuZGluZ1RleHRBcmVhIHtcblx0LyogZm9yIGF1dG8gZXhhbmRpbmcgdGV4dGFyZWEgKGNhbGxlZCBUZXh0YXJlYSBjdXJyZW50bHksIHJlbmFtZSBmb3IgMi4wKSBkb24ndCB3YW50IHRvIGRpc3BsYXkgdGhlIGdyaXAgdG8gcmVzaXplICovXG5cdHJlc2l6ZTogbm9uZTtcbn1cblxuXG4vKiBUb29sYmFyXG4gKiBOb3RlIHRoYXQgb3RoZXIgdG9vbGJhciBydWxlcyAoZm9yIG9iamVjdHMgaW4gdG9vbGJhcnMpIGFyZSBzY2F0dGVyZWQgdGhyb3VnaG91dCB0aGlzIGZpbGUuXG4gKi9cblxuLmRpaml0VG9vbGJhclNlcGFyYXRvciB7XG5cdGhlaWdodDogMThweDtcblx0d2lkdGg6IDVweDtcblx0cGFkZGluZzogMCAxcHg7XG5cdG1hcmdpbjogMDtcbn1cblxuLyogRWRpdG9yICovXG4uZGlqaXRJRUZpeGVkVG9vbGJhciB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHQvKiB0b3A6MDsgKi9cblx0dG9wOiBleHByZXNzaW9uKGV2YWwoKGRvY3VtZW50LmRvY3VtZW50RWxlbWVudHx8ZG9jdW1lbnQuYm9keSkuc2Nyb2xsVG9wKSk7XG59XG5cbi5kaWppdEVkaXRvciB7XG5cdGRpc3BsYXk6IGJsb2NrO1x0LyogcHJldmVudHMgZ2xpdGNoIG9uIEZGIHdpdGggSW5saW5lRWRpdEJveCwgc2VlICM4NDA0ICovXG59XG5cbi5kaWppdEVkaXRvckRpc2FibGVkLFxuLmRpaml0RWRpdG9yUmVhZE9ubHkge1xuXHRjb2xvcjogZ3JheTtcbn1cblxuLyogVGltZVBpY2tlciAqL1xuXG4uZGlqaXRUaW1lUGlja2VyIHtcblx0YmFja2dyb3VuZC1jb2xvcjogd2hpdGU7XG59XG4uZGlqaXRUaW1lUGlja2VySXRlbSB7XG5cdGN1cnNvcjpwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0VGltZVBpY2tlckl0ZW1Ib3ZlciB7XG5cdGJhY2tncm91bmQtY29sb3I6Z3JheTtcblx0Y29sb3I6d2hpdGU7XG59XG4uZGlqaXRUaW1lUGlja2VySXRlbVNlbGVjdGVkIHtcblx0Zm9udC13ZWlnaHQ6Ym9sZDtcblx0Y29sb3I6IzMzMztcblx0YmFja2dyb3VuZC1jb2xvcjojYjdjZGVlO1xufVxuLmRpaml0VGltZVBpY2tlckl0ZW1EaXNhYmxlZCB7XG5cdGNvbG9yOmdyYXk7XG5cdHRleHQtZGVjb3JhdGlvbjpsaW5lLXRocm91Z2g7XG59XG5cbi5kaWppdFRpbWVQaWNrZXJJdGVtSW5uZXIge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0Ym9yZGVyOjA7XG5cdHBhZGRpbmc6MnB4IDhweCAycHggOHB4O1xufVxuXG4uZGlqaXRUaW1lUGlja2VyVGljayxcbi5kaWppdFRpbWVQaWNrZXJNYXJrZXIge1xuXHRib3JkZXItYm90dG9tOjFweCBzb2xpZCBncmF5O1xufVxuXG4uZGlqaXRUaW1lUGlja2VyIC5kaWppdERvd25BcnJvd0J1dHRvbiB7XG5cdGJvcmRlci10b3A6IG5vbmUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0VGltZVBpY2tlclRpY2sge1xuXHRjb2xvcjojQ0NDO1xufVxuXG4uZGlqaXRUaW1lUGlja2VyTWFya2VyIHtcblx0Y29sb3I6YmxhY2s7XG5cdGJhY2tncm91bmQtY29sb3I6I0NDQztcbn1cblxuLmRqX2ExMXkgLmRpaml0VGltZVBpY2tlckl0ZW1TZWxlY3RlZCAuZGlqaXRUaW1lUGlja2VySXRlbUlubmVyIHtcblx0Ym9yZGVyOiBzb2xpZCA0cHggYmxhY2s7XG59XG4uZGpfYTExeSAuZGlqaXRUaW1lUGlja2VySXRlbUhvdmVyIC5kaWppdFRpbWVQaWNrZXJJdGVtSW5uZXIge1xuXHRib3JkZXI6IGRhc2hlZCA0cHggYmxhY2s7XG59XG5cblxuLmRpaml0VG9nZ2xlQnV0dG9uSWNvbkNoYXIge1xuXHQvKiBjaGFyYWN0ZXIgKGluc3RlYWQgb2YgaWNvbikgdG8gc2hvdyB0aGF0IFRvZ2dsZUJ1dHRvbiBpcyBjaGVja2VkICovXG5cdGRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0VG9nZ2xlQnV0dG9uIC5kaWppdFRvZ2dsZUJ1dHRvbkljb25DaGFyIHtcblx0ZGlzcGxheTppbmxpbmUgIWltcG9ydGFudDtcblx0dmlzaWJpbGl0eTpoaWRkZW47XG59XG4uZGpfaWU2IC5kaWppdFRvZ2dsZUJ1dHRvbkljb25DaGFyLCAuZGpfaWU2IC50YWJTdHJpcEJ1dHRvbiAuZGlqaXRCdXR0b25UZXh0IHtcblx0Zm9udC1mYW1pbHk6IFwiQXJpYWwgVW5pY29kZSBNU1wiO1x0Lyogb3RoZXJ3aXNlIHRoZSBhMTF5IGNoYXJhY3RlciAoY2hlY2ttYXJrLCBhcnJvdywgZXRjLikgYXBwZWFycyBhcyBhIGJveCAqL1xufVxuLmRqX2ExMXkgLmRpaml0VG9nZ2xlQnV0dG9uQ2hlY2tlZCAuZGlqaXRUb2dnbGVCdXR0b25JY29uQ2hhciB7XG5cdGRpc3BsYXk6IGlubGluZSAhaW1wb3J0YW50OyAvKiBJbiBoaWdoIGNvbnRyYXN0IG1vZGUsIGRpc3BsYXkgdGhlIGNoZWNrIHN5bWJvbCAqL1xuXHR2aXNpYmlsaXR5OnZpc2libGUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0QXJyb3dCdXR0b25DaGFyIHtcblx0ZGlzcGxheTpub25lICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRBcnJvd0J1dHRvbkNoYXIge1xuXHRkaXNwbGF5OmlubGluZSAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXREcm9wRG93bkJ1dHRvbiAuZGlqaXRBcnJvd0J1dHRvbklubmVyLFxuLmRqX2ExMXkgLmRpaml0Q29tYm9CdXR0b24gLmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdGRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O1xufVxuXG4vKiBTZWxlY3QgKi9cbi5kal9hMTF5IC5kaWppdFNlbGVjdCB7XG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGUgIWltcG9ydGFudDtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG59XG4uZGpfaWUgLmRpaml0U2VsZWN0IHtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTsgLyogU2V0IHRoaXMgYmFjayBmb3Igd2hhdCB3ZSBoYWNrIGluIGRpaml0IGlubGluZSAqL1xufVxuLmRqX2llNiAuZGlqaXRTZWxlY3QgLmRpaml0VmFsaWRhdGlvbkNvbnRhaW5lcixcbi5kal9pZTggLmRpaml0U2VsZWN0IC5kaWppdEJ1dHRvblRleHQge1xuXHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuLmRqX2llNiAuZGlqaXRUZXh0Qm94IC5kaWppdElucHV0Q29udGFpbmVyLFxuLmRqX2llcXVpcmtzIC5kaWppdFRleHRCb3ggLmRpaml0SW5wdXRDb250YWluZXIsXG4uZGpfaWU2IC5kaWppdFRleHRCb3ggLmRpaml0QXJyb3dCdXR0b25Jbm5lcixcbi5kal9pZTYgLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uSW5uZXIsXG4uZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwge1xuXHR2ZXJ0aWNhbC1hbGlnbjogYmFzZWxpbmU7XG59XG5cbi5kaWppdE51bWJlclRleHRCb3gge1xuXHR0ZXh0LWFsaWduOiBsZWZ0O1xuXHRkaXJlY3Rpb246IGx0cjtcbn1cblxuLmRpaml0TnVtYmVyVGV4dEJveCAuZGlqaXRJbnB1dElubmVyIHtcblx0dGV4dC1hbGlnbjogaW5oZXJpdDsgLyogaW5wdXQgKi9cbn1cblxuLmRpaml0TnVtYmVyVGV4dEJveCBpbnB1dC5kaWppdElucHV0SW5uZXIsXG4uZGlqaXRDdXJyZW5jeVRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRpaml0U3Bpbm5lciBpbnB1dC5kaWppdElucHV0SW5uZXIge1xuXHR0ZXh0LWFsaWduOiByaWdodDtcbn1cblxuLmRqX2llOCAuZGlqaXROdW1iZXJUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXROdW1iZXJUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lcixcbi5kal9pZTggLmRpaml0Q3VycmVuY3lUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXRDdXJyZW5jeVRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRqX2llOCAuZGlqaXRTcGlubmVyIGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXRTcGlubmVyIGlucHV0LmRpaml0SW5wdXRJbm5lciB7XG5cdC8qIHdvcmthcm91bmQgYnVnIHdoZXJlIGNhcmV0IGludmlzaWJsZSBpbiBlbXB0eSB0ZXh0Ym94ZXMgKi9cblx0cGFkZGluZy1yaWdodDogMXB4ICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdFRvb2xiYXIgLmRpaml0U2VsZWN0IHtcblx0bWFyZ2luOiAwO1xufVxuLmRqX3dlYmtpdCAuZGlqaXRUb29sYmFyIC5kaWppdFNlbGVjdCB7XG5cdHBhZGRpbmctbGVmdDogMC4zZW07XG59XG4uZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRwYWRkaW5nOiAwO1xuXHR3aGl0ZS1zcGFjZTogbm93cmFwO1xuXHR0ZXh0LWFsaWduOiBsZWZ0O1xuXHRib3JkZXItc3R5bGU6IG5vbmUgc29saWQgbm9uZSBub25lO1xuXHRib3JkZXItd2lkdGg6IDFweDtcbn1cbi5kaWppdFNlbGVjdEZpeGVkV2lkdGggLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHR3aWR0aDogMTAwJTtcbn1cblxuLmRpaml0U2VsZWN0TWVudSAuZGlqaXRNZW51SXRlbUljb24ge1xuXHQvKiBhdm9pZCBibGFuayBhcmVhIGluIGxlZnQgc2lkZSBvZiBtZW51IChzaW5jZSB3ZSBoYXZlIG5vIGljb25zKSAqL1xuXHRkaXNwbGF5Om5vbmU7XG59XG4uZGpfaWU2IC5kaWppdFNlbGVjdE1lbnUgLmRpaml0TWVudUl0ZW1MYWJlbCxcbi5kal9pZTcgLmRpaml0U2VsZWN0TWVudSAuZGlqaXRNZW51SXRlbUxhYmVsIHtcblx0LyogU2V0IGJhY2sgdG8gc3RhdGljIGR1ZSB0byBidWcgaW4gaWU2L2llNyAtIFNlZSBCdWcgIzk2NTEgKi9cblx0cG9zaXRpb246IHN0YXRpYztcbn1cblxuLyogRml4IHRoZSBiYXNlbGluZSBvZiBvdXIgbGFiZWwgKGZvciBtdWx0aS1zaXplIGZvbnQgZWxlbWVudHMpICovXG4uZGlqaXRTZWxlY3RMYWJlbCAqXG57XG5cdHZlcnRpY2FsLWFsaWduOiBiYXNlbGluZTtcbn1cblxuLyogU3R5bGluZyBmb3IgdGhlIGN1cnJlbnRseS1zZWxlY3RlZCBvcHRpb24gKHJpY2ggdGV4dCBjYW4gbWVzcyB0aGlzIHVwKSAqL1xuLmRpaml0U2VsZWN0U2VsZWN0ZWRPcHRpb24gKiB7XG5cdGZvbnQtd2VpZ2h0OiBib2xkO1xufVxuXG4vKiBGaXggdGhlIHN0eWxpbmcgb2YgdGhlIGRyb3Bkb3duIG1lbnUgdG8gYmUgbW9yZSBjb21ib2JveC1saWtlICovXG4uZGlqaXRTZWxlY3RNZW51IHtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG59XG5cbi8qIFVzZWQgaW4gY2FzZXMsIHN1Y2ggYXMgRnVsbFNjcmVlbiBwbHVnaW4sIHdoZW4gd2UgbmVlZCB0byBmb3JjZSBzdHVmZiB0byBzdGF0aWMgcG9zaXRpb25pbmcuICovXG4uZGlqaXRGb3JjZVN0YXRpYyB7XG5cdHBvc2l0aW9uOiBzdGF0aWMgIWltcG9ydGFudDtcbn1cblxuLyoqKiogRGlzYWJsZWQgY3Vyc29yICoqKioqL1xuLmRpaml0UmVhZE9ubHkgKixcbi5kaWppdERpc2FibGVkICosXG4uZGlqaXRSZWFkT25seSxcbi5kaWppdERpc2FibGVkIHtcblx0LyogYSByZWdpb24gdGhlIHVzZXIgd291bGQgYmUgYWJsZSB0byBjbGljayBvbiwgYnV0IGl0J3MgZGlzYWJsZWQgKi9cblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4vKiBEcmFnIGFuZCBEcm9wICovXG4uZG9qb0RuZEl0ZW0ge1xuICAgIHBhZGRpbmc6IDJweDsgIC8qIHdpbGwgYmUgcmVwbGFjZWQgYnkgYm9yZGVyIGR1cmluZyBkcmFnIG92ZXIgKGRvam9EbmRJdGVtQmVmb3JlLCBkb2pvRG5kSXRlbUFmdGVyKSAqL1xuXG5cdC8qIFByZXZlbnQgbWFnbmlmeWluZy1nbGFzcyB0ZXh0IHNlbGVjdGlvbiBpY29uIHRvIGFwcGVhciBvbiBtb2JpbGUgd2Via2l0IGFzIGl0IGNhdXNlcyBhIHRvdWNob3V0IGV2ZW50ICovXG5cdC13ZWJraXQtdG91Y2gtY2FsbG91dDogbm9uZTtcblx0LXdlYmtpdC11c2VyLXNlbGVjdDogbm9uZTsgLyogRGlzYWJsZSBzZWxlY3Rpb24vQ29weSBvZiBVSVdlYlZpZXcgKi9cbn1cbi5kb2pvRG5kSG9yaXpvbnRhbCAuZG9qb0RuZEl0ZW0ge1xuICAgIC8qIG1ha2UgY29udGVudHMgb2YgaG9yaXpvbnRhbCBjb250YWluZXIgYmUgc2lkZSBieSBzaWRlLCByYXRoZXIgdGhhbiB2ZXJ0aWNhbCAqL1xuICAgICNkaXNwbGF5OiBpbmxpbmU7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4uZG9qb0RuZEl0ZW1CZWZvcmUsXG4uZG9qb0RuZEl0ZW1BZnRlciB7XG5cdGJvcmRlcjogMHB4IHNvbGlkICMzNjk7XG59XG4uZG9qb0RuZEl0ZW1CZWZvcmUge1xuICAgIGJvcmRlci13aWR0aDogMnB4IDAgMCAwO1xuICAgIHBhZGRpbmc6IDAgMnB4IDJweCAycHg7XG59XG4uZG9qb0RuZEl0ZW1BZnRlciB7XG4gICAgYm9yZGVyLXdpZHRoOiAwIDAgMnB4IDA7XG4gICAgcGFkZGluZzogMnB4IDJweCAwIDJweDtcbn1cbi5kb2pvRG5kSG9yaXpvbnRhbCAuZG9qb0RuZEl0ZW1CZWZvcmUge1xuICAgIGJvcmRlci13aWR0aDogMCAwIDAgMnB4O1xuICAgIHBhZGRpbmc6IDJweCAycHggMnB4IDA7XG59XG4uZG9qb0RuZEhvcml6b250YWwgLmRvam9EbmRJdGVtQWZ0ZXIge1xuICAgIGJvcmRlci13aWR0aDogMCAycHggMCAwO1xuICAgIHBhZGRpbmc6IDJweCAwIDJweCAycHg7XG59XG5cbi5kb2pvRG5kSXRlbU92ZXIge1xuXHRjdXJzb3I6cG9pbnRlcjtcbn1cbi5kal9nZWNrbyAuZGlqaXRBcnJvd0J1dHRvbklubmVyIElOUFVULFxuLmRqX2dlY2tvIElOUFVULmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdC1tb3otdXNlci1mb2N1czppZ25vcmU7XG59XG4uZGlqaXRGb2N1c2VkIC5kaWppdE1lbnVJdGVtU2hvcnRjdXRLZXkge1xuXHR0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTtcbn1cbiIsIi8qIERpaml0IGN1c3RvbSBzdHlsaW5nICovXG4uZGlqaXRCb3JkZXJDb250YWluZXIge1xuICAgIGhlaWdodDogMzUwcHg7XG59XG4uZGlqaXRUb29sdGlwQ29udGFpbmVyIHtcbiAgICBiYWNrZ3JvdW5kOiAjZmZmO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNjY2M7XG4gICAgYm9yZGVyLXJhZGl1czogNnB4O1xufVxuLmRpaml0Q29udGVudFBhbmUge1xuICAgIGJveC1zaXppbmc6IGNvbnRlbnQtYm94O1xuICAgIG92ZXJmbG93OiBhdXRvICFpbXBvcnRhbnQ7IC8qIFdpZGdldHMgbGlrZSB0aGUgZGF0YSBncmlkIHBhc3MgdGhlaXIgc2Nyb2xsXG4gICAgb2Zmc2V0IHRvIHRoZSBwYXJlbnQgaWYgdGhlcmUgaXMgbm90IGVub3VnaCByb29tIHRvIGRpc3BsYXkgYSBzY3JvbGwgYmFyXG4gICAgaW4gdGhlIHdpZGdldCBpdHNlbGYsIHNvIGRvIG5vdCBoaWRlIHRoZSBvdmVyZmxvdy4gKi9cbn1cblxuLyogR2xvYmFsIEJvb3RzdHJhcCBjaGFuZ2VzICovXG5cbi8qIENsaWVudCBkZWZhdWx0cyBhbmQgaGVscGVycyAqL1xuLm14LWRhdGF2aWV3LWNvbnRlbnQsIC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcjpub3QoLm14LXNjcm9sbGNvbnRhaW5lci1uZXN0ZWQpLCAubXgtdGFiY29udGFpbmVyLWNvbnRlbnQsIC5teC1ncmlkLWNvbnRlbnQge1xuICAgIC13ZWJraXQtb3ZlcmZsb3ctc2Nyb2xsaW5nOiB0b3VjaDtcbn1cbmh0bWwsIGJvZHksICNjb250ZW50IHtcbiAgICBoZWlnaHQ6IDEwMCU7XG59XG4jY29udGVudCA+IC5teC1wYWdlIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBtaW4taGVpZ2h0OiAxMDAlO1xufVxuXG4ubXgtbGVmdC1hbGlnbmVkIHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LXJpZ2h0LWFsaWduZWQge1xuICAgIHRleHQtYWxpZ246IHJpZ2h0O1xufVxuLm14LWNlbnRlci1hbGlnbmVkIHtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG5cbi5teC10YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtdGFibGUgdGgsXG4ubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuLm14LXRhYmxlIHRoLm5vcGFkZGluZyxcbi5teC10YWJsZSB0ZC5ub3BhZGRpbmcge1xuXHRwYWRkaW5nOiAwO1xufVxuXG4ubXgtb2Zmc2NyZWVuIHtcbiAgICAvKiBXaGVuIHBvc2l0aW9uIHJlbGF0aXZlIGlzIG5vdCBzZXQgSUUgZG9lc24ndCBwcm9wZXJseSByZW5kZXIgd2hlbiB0aGlzIGNsYXNzIGlzIHJlbW92ZWRcbiAgICAgKiB3aXRoIHRoZSBlZmZlY3QgdGhhdCBlbGVtZW50cyBhcmUgbm90IGRpc3BsYXllZCBvciBhcmUgbm90IGNsaWNrYWJsZS5cbiAgICAqL1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDA7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLm14LWllLWV2ZW50LXNoaWVsZCB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICBsZWZ0OiAwO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICB6LWluZGV4OiAtMTtcbn1cblxuLm14LXN3aXBlLW5hdmlnYXRpb24tcHJvZ3Jlc3Mge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBoZWlnaHQ6IDU0cHg7XG4gICAgd2lkdGg6IDU0cHg7XG4gICAgdG9wOiBjYWxjKDUwJSAtIDI3cHgpO1xuICAgIGxlZnQ6IGNhbGMoNTAlIC0gMjdweCk7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaE5nQTJBUE1BQVAvLy93QUFBSGg0ZUJ3Y0hBNE9EdGpZMkZSVVZOemMzTVRFeEVoSVNJcUtpZ0FBQUFBQUFBQUFBQUFBQUFBQUFDSDVCQWtLQUFBQUlmNGFRM0psWVhSbFpDQjNhWFJvSUdGcVlYaHNiMkZrTG1sdVptOEFJZjhMVGtWVVUwTkJVRVV5TGpBREFRQUFBQ3dBQUFBQU5nQTJBQUFFeXhESVNhdTlPT3ZOdS85Z0tJNWt5U0VKUVNTSTZVcUtLaFBLV3lMejNOcGltcXNKbnVnM0U0YUlNaVBJOXdzcVBUamlUbGt3cUF3RlRDeFhleFlHczBIMmdnSk9MWUxCUURDeTVnd213WXg5SkpyQXNzSFFYc0tyOUNGdU0zQWxjakowSUFkK0JBTUhMbWxySkFkdUJvNVBsNWlabXB1Y25aNmZjV3FJbUpDamFIT1poaXFtRkl1QWw2NFpzWml6RjZvRXJFSzN1Uk9sbTc2Z3djTER4TVhHeDhYQWo2SWt1NCtvSXJVazBoL1UwV0Vqem5IUUlzcWhrY2pCM3NuY3hkYkM1K0xseWN6aDdrOFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRNRU1oSnE3MDQ2ODI3LzJBb2ptUnBubVZoRUlSUm9HY3hzT3p3d3VSS3N3Wk83anZmQ0VnVGluUzduaEYwbU5FR2h3c2l3VW9nbHBTRHpoQzFLSWlLa1dBd0VKZ1FSTllWSk5pWlNkUjBJdVNzbGRKRlVKMHd1T01KSVcwMGJ5TnhSSE9CWklRamFHbHJXQnhmUUdHUUhsTlZqNVdhbTV5ZG5wOUxZMldib29zV2dpeW1RcWdFcWhON2ZaQ3dHYk95TzdFWHJLNDR1aHFscElxZ3dzUEV4Y2JIeU1lL0tNc2l2U2JQZExjbnRkSlAxTlBPYmlmUmlhUE13Y25DemNyYnlOWEc2TVhkeHVUaTd6NFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRPRU1oSnE3MDQ2ODI3LzJBb2ptUnBubWlxQXNJd0NLc3BFRFFCeCtOUUV3T2U3ejFmYUZhN0NVR3QxMUZZTU5BTUJWTFNTQ3JvYW9Qb2NFY1ZPWGNFZytoS0M1TEF0VEhRaEthSmlMUnU2THNUdjEzeTBJSE1PeXc5QjE4R2ZuK0Zob2VJaVlvWkNBazBDUWlMRmdwb0NobFRSd2h0QkpFV2NEWkNqbTBKRjN4bU1adHVGcVpDcVFRWG4za29vbWlrc0hpWm01MlNBSlJnbHJ3VGpZKzd3Y2JIeU1uS0U1Z296VzljSjdFL1dDZXNhdFVtMTF0RjB0RWp6eks0eTRuaHh0UEkyOGJxd2VqSTV1VHhKaEVBSWZrRUNRb0FBQUFzQUFBQUFEWUFOZ0FBQk1zUXlFbXJ2VGpyemJ2L1lDaU9aR21lYUtvQ3dqQUlxeWtRTkFISDQxQVRBNTd2UFY5b1Zyc0pRYTNYY1lsS0dtV3VKM0luRlJGcDFZNnVGaXh0YVYzUWwzY2FoejlYMnltZDdUaFRiNlo4VHEvYjcvaTh2R0NnR1FvYWNVSUZab0FYYkVkOU93UUdHR1pIaXpXT1FKQ1JCQmlJUW9vN2paaFJTd2RtQjNvVUI0b0dvNlNxcTZ5dE1RZ0pOQWtJckFxUkNpT0NJd2lXQkxSVFJTV3hsZ2toanlTOU5NYVV5TWxEVk1LOXhVT2ZKYnlXdjNxMmk3aEx1aFd3c3RsQ21hdkg1c3lyNWVyVnJ1NDRFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWlaY2dVR05BWUZKSk1pQldhZ1E0TWxuVHNFQmlLTElxczFya0Ftc1RSV3FDU3FPNjFXa1JrSUNUUUpDQmNIWmdkSENyRUt4cW9HeVVJSXRnVEZlc0syQ1h2VXQzcmNCSHZZc2RwNjA3Yldlc3VyelpYQncrZ2lFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWdTQ0FrMENRaVdDanMwQ3BRSW9qV2ZKWk1kbktjRUNhcURJSzQxWGtBaHREUzJYQ0d0cDdBa2p4Nm1ycW5Ca1NLaG9xUVhCUVkwQmdWTG01M0dGUVZtMHBUUG9nYVZ0Tit1bGR3NzNwUUhaZ2VXQjl3RzZwa29FUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2dktVU0Nsa0RnTFFvN05BcC9Fd2lDTlg1Q2NSWjdpQVFKaTFRWGp6VkNacFNWQkpkQUY0NklrVDVzRjRlUGlxSlJHWUdDaElXR2puMnVzck8wdFhZRkJqUUdCYlFGWnJ4UVNpSzVnZ1l5a3lHVkpwakpqOHVkSWNRN3hpV2pJUWRtQjJ1cEl3ZkVCdHEySG95ejFyUE01OURseUxUazR1OHBFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3a1JDVm9Db1dtOWhCTEZqcWFBZGhEVEdyUGtOSDZTV1VLQ3UvTjJ3cldTcmhiOG9HbHFZQWljSFpPSU5ETUhHOTdlWFhvZFVsTlZWbGRnUzRhS2k0eU5qbzhGQmpRR0JZOFhCV3MwQTVWUVhSbVNVd2FkWlJob1VKazhwV0duY2hlZ082SkNlRFlZQjZnREIxYWVHUWVnQnJtV3djTER4TVhHeDF5QUtic2lzNEVnemo5c0o3ZlNtdFN0UTZReTI4M0tLTXpJamVIRTBjYlY1OW5sM2NYazR1OG9FUUE3KTtcbn1cblxuIiwiLyogQmFjYXVzZSB3ZSB1c2UgY2hlY2tib3hlcyB3aXRob3V0IGxhYmVscywgYWxpZ24gdGhlbSB3aXRoIG90aGVyIHdpZGdldHMuICovXG5pbnB1dFt0eXBlPVwiY2hlY2tib3hcIl0ge1xuICAgIG1hcmdpbjogOXB4IDA7XG59XG5cbi5teC1jaGVja2JveCBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl0ge1xuICAgIG1hcmdpbi1sZWZ0OiAwO1xuICAgIG1hcmdpbi1yaWdodDogOHB4O1xuICAgIHBvc2l0aW9uOiBzdGF0aWM7XG59XG5cbi5mb3JtLXZlcnRpY2FsIC5mb3JtLWdyb3VwLm14LWNoZWNrYm94IGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB7XG4gICAgZGlzcGxheTogYmxvY2s7XG59XG5cbi5mb3JtLXZlcnRpY2FsIC5mb3JtLWdyb3VwLm14LWNoZWNrYm94LmxhYmVsLWFmdGVyIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4uZm9ybS1ob3Jpem9udGFsIC5mb3JtLWdyb3VwLm5vLWNvbHVtbnMge1xuICAgIHBhZGRpbmctbGVmdDogMTVweDtcbiAgICBwYWRkaW5nLXJpZ2h0OiAxNXB4O1xufVxuXG4ubXgtcmFkaW9idXR0b25zLmlubGluZSAucmFkaW8ge1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICBtYXJnaW4tcmlnaHQ6IDIwcHg7XG59XG5cbi5teC1yYWRpb2J1dHRvbnMgLnJhZGlvIGlucHV0W3R5cGU9XCJyYWRpb1wiXSB7XG4gICAgLyogUmVzZXQgYm9vdHN0cmFwIHJ1bGVzICovXG4gICAgcG9zaXRpb246IHN0YXRpYztcbiAgICBtYXJnaW4tcmlnaHQ6IDhweDtcbiAgICBtYXJnaW4tbGVmdDogMDtcbn1cblxuLm14LXJhZGlvYnV0dG9ucyAucmFkaW8gbGFiZWwge1xuICAgIC8qIFJlc2V0IGJvb3RzdHJhcCBydWxlcyAqL1xuICAgIHBhZGRpbmctbGVmdDogMDtcbn1cblxuLmFsZXJ0IHtcbiAgICBtYXJnaW4tdG9wOiA4cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbiAgICB3aGl0ZS1zcGFjZTogcHJlLWxpbmU7XG59XG5cbi5teC1jb21wb3VuZC1jb250cm9sIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xufVxuXG4ubXgtY29tcG91bmQtY29udHJvbCBidXR0b24ge1xuICAgIG1hcmdpbi1sZWZ0OiA1cHg7XG59XG5cbltkaXI9XCJydGxcIl0gLm14LWNvbXBvdW5kLWNvbnRyb2wgYnV0dG9uIHtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbn1cbiIsIi5teC10b29sdGlwIHtcbiAgICBtYXJnaW46IDEwcHg7XG59XG4ubXgtdG9vbHRpcC1jb250ZW50IHtcbiAgICB3aWR0aDogNDAwcHg7XG4gICAgb3ZlcmZsb3cteTogYXV0bztcbn1cbi5teC10b29sdGlwLXByZXBhcmUge1xuICAgIGhlaWdodDogMjRweDtcbiAgICBwYWRkaW5nOiA4cHg7XG4gICAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQgdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaEdBQVlBTVFkQUtYWjhuZkY2NFRMN1F1WDNGZTQ1emFxNGhPYjNmTDYvZnI5L3JyaTlkWHQrWnJVOEN5bTRVbXk1Y0hsOXVQeisySzg2T2oxL056dytyRGQ5TTNxK0pEUTcyckE2aU9pMyszNC9FQ3U0OGpvOXgyZjNnV1YyLy8vL3dBQUFBQUFBQ0gvQzA1RlZGTkRRVkJGTWk0d0F3RUFBQUFoL3d0WVRWQWdSR0YwWVZoTlVEdy9lSEJoWTJ0bGRDQmlaV2RwYmowaTc3dS9JaUJwWkQwaVZ6Vk5NRTF3UTJWb2FVaDZjbVZUZWs1VVkzcHJZemxrSWo4K0lEeDRPbmh0Y0cxbGRHRWdlRzFzYm5NNmVEMGlZV1J2WW1VNmJuTTZiV1YwWVM4aUlIZzZlRzF3ZEdzOUlrRmtiMkpsSUZoTlVDQkRiM0psSURVdU5pMWpNVFF3SURjNUxqRTJNRFExTVN3Z01qQXhOeTh3TlM4d05pMHdNVG93T0RveU1TQWdJQ0FnSUNBZ0lqNGdQSEprWmpwU1JFWWdlRzFzYm5NNmNtUm1QU0pvZEhSd09pOHZkM2QzTG5jekxtOXlaeTh4T1RrNUx6QXlMekl5TFhKa1ppMXplVzUwWVhndGJuTWpJajRnUEhKa1pqcEVaWE5qY21sd2RHbHZiaUJ5WkdZNllXSnZkWFE5SWlJZ2VHMXNibk02ZUcxd1BTSm9kSFJ3T2k4dmJuTXVZV1J2WW1VdVkyOXRMM2hoY0M4eExqQXZJaUI0Yld4dWN6cDRiWEJOVFQwaWFIUjBjRG92TDI1ekxtRmtiMkpsTG1OdmJTOTRZWEF2TVM0d0wyMXRMeUlnZUcxc2JuTTZjM1JTWldZOUltaDBkSEE2THk5dWN5NWhaRzlpWlM1amIyMHZlR0Z3THpFdU1DOXpWSGx3WlM5U1pYTnZkWEpqWlZKbFppTWlJSGh0Y0RwRGNtVmhkRzl5Vkc5dmJEMGlRV1J2WW1VZ1VHaHZkRzl6YUc5d0lFTkRJREl3TVRnZ0tFMWhZMmx1ZEc5emFDa2lJSGh0Y0UxTk9rbHVjM1JoYm1ObFNVUTlJbmh0Y0M1cGFXUTZSVUpGTmtVNE5FWkNORVZETVRGRk9EazNNREJCTlVVMVJVTTRRamczUVRVaUlIaHRjRTFOT2tSdlkzVnRaVzUwU1VROUluaHRjQzVrYVdRNlJVSkZOa1U0TlRCQ05FVkRNVEZGT0RrM01EQkJOVVUxUlVNNFFqZzNRVFVpUGlBOGVHMXdUVTA2UkdWeWFYWmxaRVp5YjIwZ2MzUlNaV1k2YVc1emRHRnVZMlZKUkQwaWVHMXdMbWxwWkRwRlFrVTJSVGcwUkVJMFJVTXhNVVU0T1Rjd01FRTFSVFZGUXpoQ09EZEJOU0lnYzNSU1pXWTZaRzlqZFcxbGJuUkpSRDBpZUcxd0xtUnBaRHBGUWtVMlJUZzBSVUkwUlVNeE1VVTRPVGN3TUVFMVJUVkZRemhDT0RkQk5TSXZQaUE4TDNKa1pqcEVaWE5qY21sd2RHbHZiajRnUEM5eVpHWTZVa1JHUGlBOEwzZzZlRzF3YldWMFlUNGdQRDk0Y0dGamEyVjBJR1Z1WkQwaWNpSS9QZ0gvL3YzOCsvcjUrUGYyOWZUejh2SHc3Kzd0N092cTZlam41dVhrNCtMaDROL2UzZHpiMnRuWTE5YlYxTlBTMGREUHpzM015OHJKeU1mR3hjVER3c0hBdjc2OXZMdTZ1YmkzdHJXMHM3S3hzSyt1cmF5cnFxbW9wNmFscEtPaW9hQ2ZucDJjbTVxWm1KZVdsWlNUa3BHUWo0Nk5qSXVLaVlpSGhvV0VnNEtCZ0g5K2ZYeDdlbmw0ZDNaMWRITnljWEJ2Ym0xc2EycHBhR2RtWldSalltRmdYMTVkWEZ0YVdWaFhWbFZVVTFKUlVFOU9UVXhMU2tsSVIwWkZSRU5DUVVBL1BqMDhPem81T0RjMk5UUXpNakV3THk0dExDc3FLU2duSmlVa0l5SWhJQjhlSFJ3Ykdoa1lGeFlWRkJNU0VSQVBEZzBNQ3dvSkNBY0dCUVFEQWdFQUFDSDVCQVVFQUIwQUxBQUFBQUFZQUJnQUFBVWNZQ2VPWkdtZWFLcXViT3UrY0N6UGRHM2ZlSzd2Zk8vL3dPQXJCQUFoK1FRRkJBQWRBQ3dBQUFBQUFRQUJBQUFGQTJBWEFnQWgrUVFGQkFBZEFDd1VBQXdBQVFBQ0FBQUZBeURUaEFBaCtRUUZCQUFkQUN3VEFBc0FBZ0FHQUFBRkMyQVhkRnhuZE1UUU1WMElBQ0g1QkFVRUFCMEFMQkVBQ3dBRUFBZ0FBQVVSWUNjMllpbHlvcldkVm1jTnA4aTBYUWdBSWZrRUJRUUFIUUFzRHdBT0FBWUFCZ0FBQlE5Z0ozYUJNWjRqaDQ0V0I0bkZjSVlBSWZrRUNRUUFIUUFzRFFBUEFBZ0FCZ0FBQlJGZ0o0NGRSSGJCcVlvcEdRd2NPUmhxQ0FBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRkxXQW5qbVJwbm1pcXJtenJ2bkFzejNSdDMzaXVrOEpnRHdRYlIyaWhCVGlOV1c4WTR6aDlHaGxnUnkyRkFBQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZNMkFuam1ScG5taXFybXpydm5Bc3ozUnQzMmh6YzN0U0M3emFZT2VvY1NBMFlNWlZJUWtHd1JhUVE2VjJpaklBYnFzS0FRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZObUFuam1ScG5taXFybXpydm5Bc3ozUnQzMmh6Yy90VVY3eWFJV01MMGppRVZRVUZMS3dDSEVPcFlqQ3lNcHlzbGloYjRMNnJFQUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGT21BbmptUnBubWlxcm16cnZuQXN6M1J0MzJoemN6dFFWN3phcG1BTG1vQXNqZzdGTUI0NWpGV0RzeWxWTnM1VmdjUHRFbU8rQ202c0NnRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCVDlnSjQ1a2FaNW9xcTVzNjc1d0xNOTBiZDhvY1hPQ3plMm14c2ExWVp4K0xRN2cxRUNxT0prVWc3TkljWXlxNXJDMGdicW1uSENZc1lRdGU3aDBLZ1FBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQlVSZ0o0NWthWjVvcXE1czY3NXdMTTkwYmQ4b1lRWXdKNVNjbmluNElwSVlGOWNsV1ZvWVY1ekZLZk5FY1RLcFN4WElURkc3SXkyMnhlQ1l6eGNwVFBxajRONm9FQUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGU21BbmptUnBubWlxcm16cnZuQXN6M1ROYm5iQXdZUzV2NXdBcWZKekZVZEhWckt6WWJnWU9OK2t4YW1jQ2dQV29KRGFaRk9EYUtyQWNaWVlIRzVydzJtN04xWllSUmkzMlZjaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVlBZQ2VPWkdtZWFLcXViT3UrY0N6UDVVYlFJb2QzZ3I3N3JodkpBbXh4TEtVaVM5bmhURjVNQThQRk1KaDZMbzdneEJpd0JsUFV4cHNhYkZZTVRwaVVYcXNFQm81OGJ0akN0aGI3YnI4S0FRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZVMkFuam1ScG5taXFybXpydmpETFhERXBjRFZwWlBtSTk1MGJVUFJ6UVVxUVlvdHpKQ2xaejhsenhabVVEQVZYd1hDYW9yeWRDM2Rsb0tFTTQzTWFkZUZrU3dXT2VSVXdjTzU0UXlBbU9BcUdnQzBoQUNINUJBVUVBQjBBTEFBQUFBQVlBQmdBQUFWWFlDZU9aR21lYUtxdWJMdHVsbnNhaG14dXRVMEduRjRPRFIrcEp4VHhpaUpDemhYNzJRYUVIZEUxSFZWWkhNQXY0OG9NVE1jV0ozRENzUXliMUdBNSs2bzJIRzRwdzBtekFnTU9aNURmazIwQlVYOUloQzBoQUNINUJBa0VBQjBBTEFJQUF3QVVBQk1BQUFVL1lDZUsxdENNYUpweWhPcU93L2JPOUd6VmM0dnY5YzJuc2w5QVpQaDFpajZqY3JRUW5YYlBEc1E0SFFWcFYxUld0VTFGUjE5WDlWZ1VqV20rWkNvRUFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVmJZQ2VPWkdtZWFLcU9GckdpeE1CeHpHc2FuR3VidzdhZkJ0K3ZST0FNVGJsanlhaGtNWnVkaG5BWEtFbUhtOFp5K0JRdHVpL09ZcWw3RlUvZ1ZQSTJUVzBNcVo1cU0xamh5cU1pM0R6amJEWjllRFlRRFZwalVJZy9JUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGWUdBbmptUnBubWlxaWxXWFpjUnFFaHczWE5jZ2t3WUg3U2ZPQlhneURJa2xHdExrVzVZNFRoSkJGeFZsamtCQjZZcThaRXBVWUpnRkpYSmFwT1lPVXBhMlY1eVl5U2k3R0ZKQzFlVmRWSlBZZHpJME5qZ0ROWEpFQkYrSVZZMUFJUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGWldBbmptUnBubWlxaWtKWEZNUnFOaHhuTUlWUngvTEFXYWFBck1OaERGRUQ0M0hHV1o1K3pwS2dHUzBacXFTQ2Npa2NhWjA0RXVHNk5QQkcxR01hRFJ4YTFpS2F1bkZLeWhpRFZGSEZnSnQ4YlNSdmVUSTBOZ3dNT2h4MFRnUXZIUzFZa2xFaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVm1ZQ2VPWkdtZWFLcUtRY01VeldwbUhMZDF4VlpuY2pjTUFWUGdwMXB3Q2lyR0RUVkE5azZad1JQRm1aNENWV3Vwc2RTT1h0cmdWMXRna0xqV1RZeVVmYlpISExFTU81UDJCanhUVTFhd240NHFCVzhtQzBSQ2hpczBOZ1U1TzFZdFptdGVrNU1oQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFWbllDZU9aR21lYUtxS1FYWmQyV29XSEhkMURWTVhjc1VOSjRHQnMrTHdVclFLeWlpam5RcEFXY2R3NGdTa3FBQVJlM0p4VDdkdngwS0NmYjBqTk5aTTJtTGRJeXRXTzR2S0JzY1NjK1ZjNXA5d1ZYWWtBUU9CS0RRMkdTNDdYeTB2SFZkaWs1UWlJUUFoK1FRRkJBQWRBQ3dBQUFBQUdBQVlBQUFGYm1BbmptUnBubWlxaWxheGJjVnFNaHpIZEExdHl3Sm5uQUlEUjZEaVpGUVpUc29vUzU0WVAxbkhjQ3NOcFNJbHlhTEZjZ0trUWhWcjJwQkZpOUttY1c2WVIrSXpJMGJxU3UxWm9qZFJnbUtwSjB3clRpaUNLSVFvUFZFbFFYZ29PZ3dOT1RWalVpMW1kR2VhbXlVaEFDSDVCQVVFQUIwQUxBSUFBZ0FVQUJRQUFBVmJZQ2VPa01HZG5BR05MSWx5dy9DdWJjZWNXWjJkVEhzYk5aYXBKNEtrZ2kwVDdZU3NNWTI1Sm10WDRraWRKdXVWaFJwc1dUTFlkeFRXamsrbXNTZ0ZIVk03ekcvY0NMd3FSei9wMElmVDhZSkdYV1VjTkVoVktDbzFJUUFoK1FRRkJBQWRBQ3dCQUFFQUZnQVdBQUFGWjJBbmptUFZCV1NxbmdaSGNnYTZqc2JyMG5OMTEyVEZjNmFVNnpZYnBtckVXY2ZGTzRrRXloSFUyYWsxbzlYc0VydHlCYm1xWUpKN1E0MnhMaG00MlBsaVRUc3QxeXBTYzZkcUpGa3VHazVWQWtZcE9pSlhiVDlLVnh4Smhpb0JMUytOVVNaMktpRUFJZmtFQ1FRQUhRQXNBUUFCQUJZQUZnQUFCV3BnSjQ2aWxWMVgxazFrUzE2Y3kxMHUyY1MxeURVMU0zSUVFZ0hYOGRsR3dWcXl3L3ZsY2tSYVovbE1TbVBFcDY0VHM0aW8ycVJKcXoyUm42aHpMcVd1cWI1dEtyWTk3MGpCU3BHVTI5Nk9tbE01UzRBaVJseFVReU9HTmxreWhDNHdNbnRrSmlncUxDNGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVYrWUNlT1pHbWVwVlZjVjlaTjZMbHhkRTF2OGRqWWZOM0VEQnVFQkxFeFRqdmE4RlNrL1VxMW5DaEttbkdXdVNadVJKVjJ1aGFsbDh1eGlESzBNZG5WdWFUVlg4NUY1T2JBNC9NTzJnNm5zZU5ZVWsxbVUyOWVYUjFXZ1NoYUpBdUlLSkFkU1ZlTVBpZEJrRTAwUnlpVVBaZFNWajFiYWhZWkxCbUVkM0FoQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFXQllDZU9aR21lcFZWY1Y5Rk42TGx4ZEUxdjhkallmTjNFakpyQlpLZ3hUanRhVE9BejFYS2lKMm5HRVVDakhOeUlOcngyaXB5UlJlbnRNRGtXVVlGY3ByazZGN2FYZGhIRncrVU9YUzIvdXJkVlpXY2tYR1ZnVTMweE55UUxVamsxQ3lWSmdTZG5IRDhtUVlVa0FtQWNSeWlUUFUxUVZEMWFaU29zQldsNXJoMGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVdDWUNlT1pHbWVwVlZjVjlGTjZMbHhkRTF2OGRqWWZOM0VqTnJGZEtreFRqdk9JRGVnL1VxMFphN1Q1SlJtMXFub1JxSU50WjFpdG1PaGdVYzBpNmhnUG5kb3JuRDc3QldKM1cvT2x6MEd3OUY5VXdCcEloTjFZSGNqV0hRY09GMUtXbFVtU1FNQU1WVlBKVUdISXdCaUhFY29TVDAybVRGWVBZNW5LaXd1TUhodUlRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZlbUFuam1ScG5xV1ZNVXlHdmhjbnovTDFqZzJ0ejgxYnpLNVNabFk0NVRpR20wSFdLOG1TdDg2U1U0cFJvNklhU1JiRURxOGRpd3k3NVZoRVgvS0lLMktNMVIwWm8vMVd5OUYxTWpzTDF2ZjNYaklUSTFaMkhEWmxVRXA1SWtlS0oxTk5KVCtBSTE4Y1JTaEhPelNTTUp5SGNHRXJMUjJEb25BaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVjlZQ2VPWkdtZVpkQXdUSU8rRnlmUDh2V09CRDFjMTBBVHI4SU1Zb0xNQ3FjY3h3YVRBVXUxbXlqR0tWR2xvMmlXUThSMmpGVlJRT2JkQmtRTnpxQXM4bzBZUzNZbnhoREJtV1Y2ZHMzMnVUcGpZV1ZrVzExWVlDUlhYbHBiZUUyQ09Jd25WRThsUWpLR0kyQWNTQzg2UEQ0elhsUTBrbGhuTEg5eWNpRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCWDFnSjQ1a2FaNWwwQlJGZzc0TUo4OHk4NDRFZlhYWlJST3ZqR3h3RWd4a21WT09rd3pLZ0NYa1RTVGtsR0xFcWVob0c4bTBwSzhvSUFaM1pBRlJnN016ZDN5akF0UE40eFJFY25yOUxtTFQ0V05sWUdoZUhBSnVnbGhtWEZGelUxVW1TMDBvVlZBbFZWa2xSbEl2T2hrOU5HQXhORE5kWmlvZExYcDZJUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGZ0dBbmptUnBucVhRRkZrbm9HakJ6ZlJjd0NORUR4M1JaUU1hQk5hWWJWQ2JXZU9rNCtCNnM5UE05K3hFU2JKanRaTzhqYTViQUZqQTRXMUZ3WmVJMHpyL25LSU1oK3BteCtGdWdoM2FQc3ZwWlc0ZFFTUmdXNFpaWjEwbFUxVjZlRG1OTUk5REprVWNXaVpKa0ZJekF4aytRRUpWTWpVMFhtY3ZHYUNDclIwaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVjZZQ2VPWkdtZXBkQmxHWUcrR1NmUGN2YU8xcnk1UWJmTmxoZEJWa0FWWks2VDdOWUpMRTJ5SHJQekhNV0swODdSTnFwbXF3TE9KanY2cVVTY0pIbG81WkJKSEc1TVNuWnkyZThPSGoxK203dHViMTVYWkZzbFVWK0JKRG1LS0U0Y1FTWkRIRmdtUjJrM09qd0VQMTR3TkRSY1pDb3NIV2Q1YnlFQUlma0VDUVFBSFFBc0FBQUFBQmdBR0FBQUJYcGdKNDVrYVo1bDFXVk5wNkpueHMzMG5NRmpRQmR1RnhTMEFJd3dHeFpSbkFGT05PQUlTOGRsSnlxU0VhUWk0bTFFbFVZckhCNVdCQ1J4eG1hSXFNRjVqY0d0RGh2TmpVK2ZZOTBJTEI2WHVXZG9WRlpqV2xDQlhvaG1Ta3ROZUNSRUhGY25rWk1uT2pNOEtqOUJVakkxTkZ0b0VBMHRiblJqSVFBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRmdHQW5qbVJwbmlaRWRCYnFObHdzeDQwN0NyR3hkbE5IR0RHQkM4SVp1QUlEam90anNJbUF3bExST1VxV1lBR3FLTUNwalpqYUVaREUyWVU3U3BFbGZhNXdXajcydVN3aXlNTjBFYWR5N3JoSEMzZGFIQXRmVFdkakkxaGhYRjVmUmxwV0ptQk9pU2xGV1NkSUhCQXVPRXc3UFQ4eFdqQXpNbzVoRml0d2ZYMGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVYxWUNlT1pHbWVwa1YwQWVvU1hDekhxeXRXOFVWTzNSWGJIWTdCWnVCWVRqZ2QwSGNTQWtmRkV1dzVXbkJxSW82UzJ1T1FPQzF1ZGhUd2lqc1RzR2g2RG1MTlozaTVIUXpYei9PUjlzd2NzYmxYSlU1VVVTVkpUejRWS0VJTEtBdEZSeWc0ZXlNOFBuQTJNRE15V0Z3QkJDc0FkR0loQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFWellDZU9aR21lWmdCMUFlb1NBeWZQQStHU2NWWldHVGZjQWM3bGR1RzBUaHpkclZQZ25BYkRwZWp5SXhHYzBoSEhOaG9vczUxTVZZUUZrMGRCcy9ZSUtaczVxN082QXhlbDUyNU9SVjF4ZTlWaVZtNVNXeVZRWUZSSUJWSk5LRUZSS0VWSEtEazdQV00zTURNMFhHWXFjWE5xSVFBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRmQyQW5qbVJwbm1iUVdkMkVvdERBY1lZeEQ5QkxEZ05oRWp4ZGdKUFJaVGlxRThlbkUzRk9nMkpUbEJtVVl0TmRidFRMam9Da3AzY2s3Z2pLWTQ1Z1pCaXpSNWEydTJOZ09lZWQ4Z1R0NWJoRVhXTmdPMjQ0SlZGZVZTWUxTMU1FZkdGU0tFZE5QRXdrUUZaVE1UTTFOMXRqYXl4L2VGa2hBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVZvWUNlT1pHbWVwdEFGYU50WkJtY3dUR3hZN21nWXA3QzdBZzdFQmVHMGpMa1ZzbVFZSmpzUUhnbjIxT0YwVlpKVXRNd3VmVm1kU3NRSWswZUJzcG5CRW0yejcyNjFheGhYd1NNcTNOU3NSazl5UnloQlRpaEZkaWMvS1lvNU1ESTBObVlkS20yU1dTRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCV3hnSjQ1a2FaNW0xUVZvdXhvYzB6UU1aN0N1YURBb1k3Z1ZUazRnUkJWekhjN0VaQkFnUllJZktjQjdpcW9qcVZWSE9tNlBGZXlXb1JJMXRxT3pDSWZ1cUsvdERubmt0WG9OaTdaMjFXYXdkVTVQVVNkMUxZVWlRWUVvUkRrN1BYc3RBVEF5TkRaL1ZwZHhUeUVBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQldOZ0o0NWthWjVtMVFsbzJ3V2IwWFJRWTJ5Qk8yN3oyV3c2ZzY0alJCa2NRK0xFQkV5S21xTkF6emw5T2tsUTRuVlVGRldwcXRWMkJCa0p5bU8wZDl5cGRxL3ZyRE1yM1g2MThOUGJaVmlhRm50NkN5NDhLRDlKTURJME5qaGpLaXhzV3lFQUlma0VDUVFBSFFBc0FBQUFBQmdBR0FBQUJWaGdKNDVrYVo3bTBnbG91MjdGMmxuRjVwSTJhdVV0M3dNb24wc29JZzVMQXN1dHBNUXRUYjdZa3lRVk5hZldFUXRMMnNxNDN5ejQycWxpemNhYmtMeGtkOUxCRTd5VUJzeUxhcmYxUG9JcFdUVmdJaXdxZ2xnaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVlpZQ2VPWkdtZXA5QUJhTnN4aE5xcGpPeSt0c25jeGQzMUtLQlBTTnI1UnNaUjdyaE1Ia1ZPd3BQVUlDMmZyT21wSXVKcVI5N1pWenlTZnF2SXNaTThiV3JYSXFKTFRxS2I3TVdyU0FCSHdUb0xZbjArWGdwalV5RUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCVkZnSjQ1a2FaNW5oYTVqWm9sSloyVXNTYVBBdlJKMXg2Ty9YdERXSTVZQVJaS3FsVFNLWHMxb2JTSmFTcSttbUlpSzVjcXVVSkd1T2NhYXlqVzBMemtzdFUvdmtwclpxOUNRSFdURzJ1U2JleUVBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQlVsZ0o0NWthWjVuaGE0anBJcE9CN0Vrd2Rwc1FIYzYydSsvMms0NExNcU1MZVF1cHV4TVJJdW05QlNGVGErZGwyaW01R0pMdUdLWUZNeXR5dEt4U2IzeWlpcnU0clA2WllVQUFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVTVZQ2VPWkdtZUo0Q3VZMUNxS2l1Nk1ydlVkNjJiOU43dnRaOFBTQ3dtUkxHaU1yVkVKWnZMMzdNcGxGV2hwWnpOaW0zeGxxcGpseFVDQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFVM1lDZU9aR21lNklTdTRtSzY3RmpGTkoyc2Q2M0g4MTdEUHFCdlNDeUtWRVdrY1lrUzZweE1VUys2azFCWDAxT1dCWVhxbE5kVENBQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZMR0Fuam1ScG5taXFvdFBxdm5Bc3oySkxxL2F0Ny96cDlNRGdLQmNqQ284OHhVdXBNNmFjVHRnUGFRb0JBQ0g1QkFVRUFCMEFMQUFBQUFBWUFCZ0FBQVVqWUNlT1pHbWVhS3F1Yk91K2NMeFNjbTNmZUk3VGV0L3p2cUJ3eUFLV2pDOGtNUVFBT3c9PSkgbm8tcmVwZWF0IHNjcm9sbCBjZW50ZXIgY2VudGVyO1xufVxuLm14LXRvb2x0aXAtY29udGVudCAudGFibGUgdGgsXG4ubXgtdG9vbHRpcC1jb250ZW50IC50YWJsZSB0ZCB7XG4gICAgcGFkZGluZzogMnB4IDhweDtcbn1cbiIsIi5teC10YWJjb250YWluZXItcGFuZSB7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuLm14LXRhYmNvbnRhaW5lci1jb250ZW50LmxvYWRpbmcge1xuICAgIG1pbi1oZWlnaHQ6IDQ4cHg7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaE5nQTJBUE1BQVAvLy93QUFBSGg0ZUJ3Y0hBNE9EdGpZMkZSVVZOemMzTVRFeEVoSVNJcUtpZ0FBQUFBQUFBQUFBQUFBQUFBQUFDSDVCQWtLQUFBQUlmNGFRM0psWVhSbFpDQjNhWFJvSUdGcVlYaHNiMkZrTG1sdVptOEFJZjhMVGtWVVUwTkJVRVV5TGpBREFRQUFBQ3dBQUFBQU5nQTJBQUFFeXhESVNhdTlPT3ZOdS85Z0tJNWt5U0VKUVNTSTZVcUtLaFBLV3lMejNOcGltcXNKbnVnM0U0YUlNaVBJOXdzcVBUamlUbGt3cUF3RlRDeFhleFlHczBIMmdnSk9MWUxCUURDeTVnd213WXg5SkpyQXNzSFFYc0tyOUNGdU0zQWxjakowSUFkK0JBTUhMbWxySkFkdUJvNVBsNWlabXB1Y25aNmZjV3FJbUpDamFIT1poaXFtRkl1QWw2NFpzWml6RjZvRXJFSzN1Uk9sbTc2Z3djTER4TVhHeDhYQWo2SWt1NCtvSXJVazBoL1UwV0Vqem5IUUlzcWhrY2pCM3NuY3hkYkM1K0xseWN6aDdrOFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRNRU1oSnE3MDQ2ODI3LzJBb2ptUnBubVZoRUlSUm9HY3hzT3p3d3VSS3N3Wk83anZmQ0VnVGluUzduaEYwbU5FR2h3c2l3VW9nbHBTRHpoQzFLSWlLa1dBd0VKZ1FSTllWSk5pWlNkUjBJdVNzbGRKRlVKMHd1T01KSVcwMGJ5TnhSSE9CWklRamFHbHJXQnhmUUdHUUhsTlZqNVdhbTV5ZG5wOUxZMldib29zV2dpeW1RcWdFcWhON2ZaQ3dHYk95TzdFWHJLNDR1aHFscElxZ3dzUEV4Y2JIeU1lL0tNc2l2U2JQZExjbnRkSlAxTlBPYmlmUmlhUE13Y25DemNyYnlOWEc2TVhkeHVUaTd6NFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRPRU1oSnE3MDQ2ODI3LzJBb2ptUnBubWlxQXNJd0NLc3BFRFFCeCtOUUV3T2U3ejFmYUZhN0NVR3QxMUZZTU5BTUJWTFNTQ3JvYW9Qb2NFY1ZPWGNFZytoS0M1TEF0VEhRaEthSmlMUnU2THNUdjEzeTBJSE1PeXc5QjE4R2ZuK0Zob2VJaVlvWkNBazBDUWlMRmdwb0NobFRSd2h0QkpFV2NEWkNqbTBKRjN4bU1adHVGcVpDcVFRWG4za29vbWlrc0hpWm01MlNBSlJnbHJ3VGpZKzd3Y2JIeU1uS0U1Z296VzljSjdFL1dDZXNhdFVtMTF0RjB0RWp6eks0eTRuaHh0UEkyOGJxd2VqSTV1VHhKaEVBSWZrRUNRb0FBQUFzQUFBQUFEWUFOZ0FBQk1zUXlFbXJ2VGpyemJ2L1lDaU9aR21lYUtvQ3dqQUlxeWtRTkFISDQxQVRBNTd2UFY5b1Zyc0pRYTNYY1lsS0dtV3VKM0luRlJGcDFZNnVGaXh0YVYzUWwzY2FoejlYMnltZDdUaFRiNlo4VHEvYjcvaTh2R0NnR1FvYWNVSUZab0FYYkVkOU93UUdHR1pIaXpXT1FKQ1JCQmlJUW9vN2paaFJTd2RtQjNvVUI0b0dvNlNxcTZ5dE1RZ0pOQWtJckFxUkNpT0NJd2lXQkxSVFJTV3hsZ2toanlTOU5NYVV5TWxEVk1LOXhVT2ZKYnlXdjNxMmk3aEx1aFd3c3RsQ21hdkg1c3lyNWVyVnJ1NDRFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWlaY2dVR05BWUZKSk1pQldhZ1E0TWxuVHNFQmlLTElxczFya0Ftc1RSV3FDU3FPNjFXa1JrSUNUUUpDQmNIWmdkSENyRUt4cW9HeVVJSXRnVEZlc0syQ1h2VXQzcmNCSHZZc2RwNjA3Yldlc3VyelpYQncrZ2lFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWdTQ0FrMENRaVdDanMwQ3BRSW9qV2ZKWk1kbktjRUNhcURJSzQxWGtBaHREUzJYQ0d0cDdBa2p4Nm1ycW5Ca1NLaG9xUVhCUVkwQmdWTG01M0dGUVZtMHBUUG9nYVZ0Tit1bGR3NzNwUUhaZ2VXQjl3RzZwa29FUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2dktVU0Nsa0RnTFFvN05BcC9Fd2lDTlg1Q2NSWjdpQVFKaTFRWGp6VkNacFNWQkpkQUY0NklrVDVzRjRlUGlxSlJHWUdDaElXR2puMnVzck8wdFhZRkJqUUdCYlFGWnJ4UVNpSzVnZ1l5a3lHVkpwakpqOHVkSWNRN3hpV2pJUWRtQjJ1cEl3ZkVCdHEySG95ejFyUE01OURseUxUazR1OHBFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3a1JDVm9Db1dtOWhCTEZqcWFBZGhEVEdyUGtOSDZTV1VLQ3UvTjJ3cldTcmhiOG9HbHFZQWljSFpPSU5ETUhHOTdlWFhvZFVsTlZWbGRnUzRhS2k0eU5qbzhGQmpRR0JZOFhCV3MwQTVWUVhSbVNVd2FkWlJob1VKazhwV0duY2hlZ082SkNlRFlZQjZnREIxYWVHUWVnQnJtV3djTER4TVhHeDF5QUtic2lzNEVnemo5c0o3ZlNtdFN0UTZReTI4M0tLTXpJamVIRTBjYlY1OW5sM2NYazR1OG9FUUE3KSBuby1yZXBlYXQgY2VudGVyIGNlbnRlcjtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDMycHggMzJweDtcbn1cbi5teC10YWJjb250YWluZXItdGFicyB7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuLm14LXRhYmNvbnRhaW5lci10YWJzIGxpIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG59XG4ubXgtdGFiY29udGFpbmVyLWluZGljYXRvciB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGJhY2tncm91bmQ6ICNmMmRlZGU7XG4gICAgYm9yZGVyLXJhZGl1czogOHB4O1xuICAgIGNvbG9yOiAjYjk0YTQ4O1xuICAgIHRvcDogMHB4O1xuICAgIHJpZ2h0OiAtNXB4O1xuICAgIHdpZHRoOiAxNnB4O1xuICAgIGhlaWdodDogMTZweDtcbiAgICBsaW5lLWhlaWdodDogMTZweDtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBmb250LXNpemU6IDEwcHg7XG4gICAgZm9udC13ZWlnaHQ6IDYwMDtcbiAgICB6LWluZGV4OiAxOyAvKiBpbmRpY2F0b3Igc2hvdWxkIG5vdCBoaWRlIGJlaGluZCBvdGhlciB0YWIgKi9cbn1cbiIsIi8qIGJhc2Ugc3RydWN0dXJlICovXG4ubXgtZ3JpZCB7XG4gICAgcGFkZGluZzogOHB4O1xuICAgIG92ZXJmbG93OiBoaWRkZW47IC8qIHRvIHByZXZlbnQgYW55IG1hcmdpbiBmcm9tIGVzY2FwaW5nIGdyaWQgYW5kIGZvb2JhcmluZyBvdXIgc2l6ZSBjYWxjdWxhdGlvbnMgKi9cbn1cbi5teC1ncmlkLWNvbnRyb2xiYXIsIC5teC1ncmlkLXNlYXJjaGJhciB7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBqdXN0aWZ5LWNvbnRlbnQ6IHNwYWNlLWJldHdlZW47XG4gICAgZmxleC13cmFwOiB3cmFwO1xufVxuLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uLFxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIC5teC1idXR0b24ge1xuICAgIG1hcmdpbi1ib3R0b206IDhweDtcbn1cblxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIC5teC1idXR0b24gKyAubXgtYnV0dG9uLFxuLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uICsgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWxlZnQ6IDAuM2VtO1xufVxuXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXNlYXJjaC1jb250cm9scyAubXgtYnV0dG9uICsgLm14LWJ1dHRvbixcbltkaXI9XCJydGxcIl0gLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uICsgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWxlZnQ6IDA7XG4gICAgbWFyZ2luLXJpZ2h0OiAwLjNlbTtcbn1cblxuLm14LWdyaWQtcGFnaW5nYmFyLFxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gICAgYWxpZ24taXRlbXM6IGJhc2VsaW5lO1xuICAgIG1hcmdpbi1sZWZ0OiBhdXRvO1xufVxuXG4ubXgtZ3JpZC10b29sYmFyLCAubXgtZ3JpZC1zZWFyY2gtaW5wdXRzIHtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbiAgICBmbGV4OiAxO1xufVxuXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXRvb2xiYXIsXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXNlYXJjaC1pbnB1dHMge1xuICAgIG1hcmdpbi1sZWZ0OiA1cHg7XG4gICAgbWFyZ2luLXJpZ2h0OiAwcHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXBhZ2luZ2JhcixcbltkaXI9XCJydGxcIl0gLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIHtcbiAgICBtYXJnaW4tbGVmdDogMHB4O1xuICAgIG1hcmdpbi1yaWdodDogYXV0bztcbn1cblxuLm14LWdyaWQtcGFnaW5nLXN0YXR1cyB7XG4gICAgcGFkZGluZzogMCA4cHggNXB4O1xufVxuXG4vKiBzZWFyY2ggZmllbGRzICovXG4ubXgtZ3JpZC1zZWFyY2gtaXRlbSB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuLm14LWdyaWQtc2VhcmNoLWxhYmVsIHtcbiAgICB3aWR0aDogMTEwcHg7XG4gICAgcGFkZGluZzogMCA1cHg7XG4gICAgdGV4dC1hbGlnbjogcmlnaHQ7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cbltkaXI9XCJydGxcIl0gLm14LWdyaWQtc2VhcmNoLWxhYmVsIHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LWdyaWQtc2VhcmNoLWlucHV0IHtcbiAgICB3aWR0aDogMTUwcHg7XG4gICAgcGFkZGluZzogMCA1cHg7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG59XG4ubXgtZ3JpZC1zZWFyY2gtbWVzc2FnZSB7XG4gICAgZmxleC1iYXNpczogMTAwJTtcbn1cblxuLyogd2lkZ2V0IGNvbWJpbmF0aW9ucyAqL1xuLm14LWRhdGF2aWV3IC5teC1ncmlkIHtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIGJvcmRlci1yYWRpdXM6IDNweDtcbn1cbiIsIi5teC1jYWxlbmRhciB7XG4gICAgei1pbmRleDogMTAwMDtcbn1cblxuLm14LWNhbGVuZGFyLW1vbnRoLWRyb3Bkb3duLW9wdGlvbnMge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbn1cblxuLm14LWNhbGVuZGFyLCAubXgtY2FsZW5kYXItbW9udGgtZHJvcGRvd24ge1xuICAgIHVzZXItc2VsZWN0OiBub25lO1xufVxuXG4ubXgtY2FsZW5kYXItbW9udGgtY3VycmVudCB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4ubXgtY2FsZW5kYXItbW9udGgtc3BhY2VyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgaGVpZ2h0OiAwcHg7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB2aXNpYmlsaXR5OiBoaWRkZW47XG59XG5cbi5teC1jYWxlbmRhciwgLm14LWNhbGVuZGFyLW1vbnRoLWRyb3Bkb3duLW9wdGlvbnMge1xuICAgIGJvcmRlcjogMXB4IHNvbGlkIGxpZ2h0Z3JleTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB3aGl0ZTtcbn1cbiIsIi5teC1kYXRhZ3JpZCB0ciB7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xufVxuXG4ubXgtZGF0YWdyaWQgdHIubXgtZGF0YWdyaWQtcm93LWVtcHR5IHtcbiAgICBjdXJzb3I6IGRlZmF1bHQ7XG59XG5cbi5teC1kYXRhZ3JpZCB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbWF4LXdpZHRoOiAxMDAlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuLm14LWRhdGFncmlkIHRoLCAubXgtZGF0YWdyaWQgdGQge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICBsaW5lLWhlaWdodDogMS40Mjg1NzE0MztcbiAgICB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNkZGQ7XG59XG5cbi8qIGhlYWQgKi9cbi5teC1kYXRhZ3JpZCB0aCB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlOyAvKiBSZXF1aXJlZCBmb3IgdGhlIHBvc2l0aW9uaW5nIG9mIHRoZSBjb2x1bW4gcmVzaXplcnMgKi9cbiAgICBib3JkZXItYm90dG9tLXdpZHRoOiAycHg7XG59XG4ubXgtZGF0YWdyaWQtaGVhZC1jYXB0aW9uIHtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG4ubXgtZGF0YWdyaWQtc29ydC1pY29uIHtcbiAgICBmbG9hdDogcmlnaHQ7XG4gICAgcGFkZGluZy1sZWZ0OiA1cHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kYXRhZ3JpZC1zb3J0LWljb24ge1xuICAgIGZsb2F0OiBsZWZ0O1xuICAgIHBhZGRpbmc6IDAgNXB4IDAgMDtcbn1cbi5teC1kYXRhZ3JpZC1jb2x1bW4tcmVzaXplciB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICBsZWZ0OiAtNnB4O1xuICAgIHdpZHRoOiAxMHB4O1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBjdXJzb3I6IGNvbC1yZXNpemU7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kYXRhZ3JpZC1jb2x1bW4tcmVzaXplciB7XG4gICAgbGVmdDogYXV0bztcbiAgICByaWdodDogLTZweDtcbn1cblxuLyogYm9keSAqL1xuLm14LWRhdGFncmlkIHRib2R5IHRyOmZpcnN0LWNoaWxkIHRkIHtcbiAgICBib3JkZXItdG9wOiBub25lO1xufVxuLm14LWRhdGFncmlkIHRib2R5IHRyOm50aC1jaGlsZCgybisxKSB0ZCB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI2Y5ZjlmOTtcbn1cbi5teC1kYXRhZ3JpZCB0Ym9keSAuc2VsZWN0ZWQgdGQge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNlZWU7XG59XG4ubXgtZGF0YWdyaWQtZGF0YS13cmFwcGVyIHtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG4ubXgtZGF0YWdyaWQgdGJvZHkgaW1nIHtcbiAgICBtYXgtd2lkdGg6IDE2cHg7XG4gICAgbWF4LWhlaWdodDogMTZweDtcbn1cbi5teC1kYXRhZ3JpZCBpbnB1dCxcbi5teC1kYXRhZ3JpZCBzZWxlY3QsXG4ubXgtZGF0YWdyaWQgdGV4dGFyZWEge1xuICAgIGN1cnNvcjogYXV0bztcbn1cblxuLyogZm9vdCAqL1xuLm14LWRhdGFncmlkIHRmb290IHRoLFxuLm14LWRhdGFncmlkIHRmb290IHRkIHtcbiAgICBwYWRkaW5nOiAzcHggOHB4O1xufVxuLm14LWRhdGFncmlkIHRmb290IHRoIHtcbiAgICBib3JkZXItdG9wOiAxcHggc29saWQgI2RkZDtcbn1cbi5teC1kYXRhZ3JpZC5teC1jb250ZW50LWxvYWRpbmcgLm14LWNvbnRlbnQtbG9hZGVyIHtcbiAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgd2lkdGg6IDkwJTtcbiAgICBhbmltYXRpb246IHBsYWNlaG9sZGVyR3JhZGllbnQgMXMgbGluZWFyIGluZmluaXRlO1xuICAgIGJvcmRlci1yYWRpdXM6IDRweDtcbiAgICBiYWNrZ3JvdW5kOiAjRjVGNUY1O1xuICAgIGJhY2tncm91bmQ6IHJlcGVhdGluZy1saW5lYXItZ3JhZGllbnQodG8gcmlnaHQsICNGNUY1RjUgMCUsICNGNUY1RjUgNSUsICNGOUY5RjkgNTAlLCAjRjVGNUY1IDk1JSwgI0Y1RjVGNSAxMDAlKTtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDIwMHB4IDEwMHB4O1xuICAgIGFuaW1hdGlvbi1maWxsLW1vZGU6IGJvdGg7XG59XG5Aa2V5ZnJhbWVzIHBsYWNlaG9sZGVyR3JhZGllbnQge1xuICAgIDAlIHsgYmFja2dyb3VuZC1wb3NpdGlvbjogMTAwcHggMDsgfVxuICAgIDEwMCUgeyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAtMTAwcHggMDsgfVxufVxuXG4ubXgtZGF0YWdyaWQtdGFibGUtcmVzaXppbmcgdGgsXG4ubXgtZGF0YWdyaWQtdGFibGUtcmVzaXppbmcgdGQge1xuICAgIGN1cnNvcjogY29sLXJlc2l6ZSAhaW1wb3J0YW50O1xufVxuIiwiLm14LXRlbXBsYXRlZ3JpZC1jb250ZW50LXdyYXBwZXIge1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbn1cbi5teC10ZW1wbGF0ZWdyaWQtcm93IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1yb3c7XG59XG4ubXgtdGVtcGxhdGVncmlkLWl0ZW0ge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNkZGQ7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG59XG4ubXgtdGVtcGxhdGVncmlkLWVtcHR5IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xufVxuLm14LXRlbXBsYXRlZ3JpZC1pdGVtLnNlbGVjdGVkIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNWY1O1xufVxuLm14LXRlbXBsYXRlZ3JpZC1pdGVtIC5teC10YWJsZSB0aCxcbi5teC10ZW1wbGF0ZWdyaWQtaXRlbSAubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDJweCA4cHg7XG59XG4iLCIubXgtc2Nyb2xsY29udGFpbmVyLWhvcml6b250YWwge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG59XG4ubXgtc2Nyb2xsY29udGFpbmVyLWhvcml6b250YWwgPiBkaXYge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdmVydGljYWwtYWxpZ246IHRvcDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItd3JhcHBlciB7XG4gICAgcGFkZGluZzogMTBweDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItbmVzdGVkIHtcbiAgICBwYWRkaW5nOiAwO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1maXhlZCA+IC5teC1zY3JvbGxjb250YWluZXItbWlkZGxlID4gLm14LXNjcm9sbGNvbnRhaW5lci13cmFwcGVyLFxuLm14LXNjcm9sbGNvbnRhaW5lci1maXhlZCA+IC5teC1zY3JvbGxjb250YWluZXItbGVmdCA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcixcbi5teC1zY3JvbGxjb250YWluZXItZml4ZWQgPiAubXgtc2Nyb2xsY29udGFpbmVyLWNlbnRlciA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcixcbi5teC1zY3JvbGxjb250YWluZXItZml4ZWQgPiAubXgtc2Nyb2xsY29udGFpbmVyLXJpZ2h0ID4gLm14LXNjcm9sbGNvbnRhaW5lci13cmFwcGVyIHtcbiAgICBvdmVyZmxvdzogYXV0bztcbn1cblxuLm14LXNjcm9sbGNvbnRhaW5lci1tb3ZlLWluIHtcbiAgICB0cmFuc2l0aW9uOiBsZWZ0IDI1MG1zIGVhc2Utb3V0O1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1tb3ZlLW91dCB7XG4gICAgdHJhbnNpdGlvbjogbGVmdCAyNTBtcyBlYXNlLWluO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zaHJpbmsgLm14LXNjcm9sbGNvbnRhaW5lci10b2dnbGVhYmxlIHtcbiAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiB3aWR0aDtcbn1cblxuLm14LXNjcm9sbGNvbnRhaW5lci10b2dnbGVhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zbGlkZSA+IC5teC1zY3JvbGxjb250YWluZXItdG9nZ2xlYWJsZSA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlciB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIHotaW5kZXg6IDE7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogaW5oZXJpdDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItcHVzaCB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zaHJpbmsgPiAubXgtc2Nyb2xsY29udGFpbmVyLXRvZ2dsZWFibGUge1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG59XG4ubXgtc2Nyb2xsY29udGFpbmVyLXB1c2gubXgtc2Nyb2xsY29udGFpbmVyLW9wZW4gPiBkaXYsXG4ubXgtc2Nyb2xsY29udGFpbmVyLXNsaWRlLm14LXNjcm9sbGNvbnRhaW5lci1vcGVuID4gZGl2IHtcbiAgICBwb2ludGVyLWV2ZW50czogbm9uZTtcbn1cbi5teC1zY3JvbGxjb250YWluZXItcHVzaC5teC1zY3JvbGxjb250YWluZXItb3BlbiA+IC5teC1zY3JvbGxjb250YWluZXItdG9nZ2xlYWJsZSxcbi5teC1zY3JvbGxjb250YWluZXItc2xpZGUubXgtc2Nyb2xsY29udGFpbmVyLW9wZW4gPiAubXgtc2Nyb2xsY29udGFpbmVyLXRvZ2dsZWFibGUge1xuICAgIHBvaW50ZXItZXZlbnRzOiBhdXRvO1xufVxuIiwiLm14LW5hdmJhci1pdGVtIGltZyxcbi5teC1uYXZiYXItc3ViaXRlbSBpbWcge1xuICAgIGhlaWdodDogMTZweDtcbn1cblxuIiwiLm14LW5hdmlnYXRpb250cmVlIC5uYXZiYXItaW5uZXIge1xuICAgIHBhZGRpbmctbGVmdDogMDtcbiAgICBwYWRkaW5nLXJpZ2h0OiAwO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIHtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHtcbiAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgI2RmZTZlYTtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSBsaTpsYXN0LWNoaWxkIHtcbiAgICBib3JkZXItc3R5bGU6IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgYSB7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgcGFkZGluZzogNXB4IDEwcHg7XG4gICAgY29sb3I6ICM3Nzc7XG4gICAgdGV4dC1zaGFkb3c6IDAgMXB4IDAgI2ZmZjtcbiAgICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgYS5hY3RpdmUge1xuICAgIGNvbG9yOiAjRkZGO1xuICAgIHRleHQtc2hhZG93OiBub25lO1xuICAgIGJhY2tncm91bmQ6ICMzNDk4REI7XG4gICAgYm9yZGVyLXJhZGl1czogM3B4O1xufVxuLm14LW5hdmlnYXRpb250cmVlIC5teC1uYXZpZ2F0aW9udHJlZS1jb2xsYXBzZWQgdWwge1xuICAgIGRpc3BsYXk6IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgdWwge1xuICAgIG1hcmdpbjogMDtcbiAgICBwYWRkaW5nOiAwO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHtcbiAgICBwYWRkaW5nOiA1cHggMDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCB7XG4gICAgcGFkZGluZzogMDtcbiAgICBtYXJnaW4tbGVmdDogMTBweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB7XG4gICAgbWFyZ2luLWxlZnQ6IDhweDtcbiAgICBwYWRkaW5nOiA1cHggMDtcbn1cbltkaXI9XCJydGxcIl0gLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHVsIGxpIHtcbiAgICBtYXJnaW4tbGVmdDogYXV0bztcbiAgICBtYXJnaW4tcmlnaHQ6IDhweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB1bCBsaSB7XG4gICAgZm9udC1zaXplOiAxMHB4O1xuICAgIHBhZGRpbmctdG9wOiAzcHg7XG4gICAgcGFkZGluZy1ib3R0b206IDNweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB1bCBsaSBpbWcge1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG59XG4iLCIubXgtbGluayBpbWcsXG4ubXgtYnV0dG9uIGltZyB7XG4gICAgaGVpZ2h0OiAxNnB4O1xufVxuLm14LWxpbmsge1xuICAgIHBhZGRpbmc6IDZweCAxMnB4O1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cbiIsIi5teC1ncm91cGJveCB7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbn1cbi5teC1ncm91cGJveC1oZWFkZXIge1xuICAgIG1hcmdpbjogMDtcbiAgICBwYWRkaW5nOiAxMHB4IDE1cHg7XG4gICAgY29sb3I6ICNlZWU7XG4gICAgYmFja2dyb3VuZDogIzMzMztcbiAgICBmb250LXNpemU6IGluaGVyaXQ7XG4gICAgbGluZS1oZWlnaHQ6IGluaGVyaXQ7XG4gICAgYm9yZGVyLXJhZGl1czogNHB4IDRweCAwIDA7XG59XG4ubXgtZ3JvdXBib3gtY29sbGFwc2libGUgPiAubXgtZ3JvdXBib3gtaGVhZGVyIHtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZ3JvdXBib3guY29sbGFwc2VkID4gLm14LWdyb3VwYm94LWhlYWRlciB7XG4gICAgYm9yZGVyLXJhZGl1czogNHB4O1xufVxuLm14LWdyb3VwYm94LWJvZHkge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIGJvcmRlci1yYWRpdXM6IDRweDtcbn1cbi5teC1ncm91cGJveC5jb2xsYXBzZWQgPiAubXgtZ3JvdXBib3gtYm9keSB7XG4gICAgZGlzcGxheTogbm9uZTtcbn1cbi5teC1ncm91cGJveC1oZWFkZXIgKyAubXgtZ3JvdXBib3gtYm9keSB7XG4gICAgYm9yZGVyLXRvcDogbm9uZTtcbiAgICBib3JkZXItcmFkaXVzOiAwIDAgNHB4IDRweDtcbn1cbi5teC1ncm91cGJveC1jb2xsYXBzZS1pY29uIHtcbiAgICBmbG9hdDogcmlnaHQ7XG59XG5bZGlyPVwicnRsXCJdIC5teC1ncm91cGJveC1jb2xsYXBzZS1pY29uIHtcbiAgICBmbG9hdDogbGVmdDtcbn1cbiIsIi5teC1kYXRhdmlldyB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLm14LWRhdGF2aWV3LWNvbnRyb2xzIHtcbiAgICBwYWRkaW5nOiAxOXB4IDIwcHggMTJweDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNWY1O1xuICAgIGJvcmRlci10b3A6IDFweCBzb2xpZCAjZWVlO1xufVxuXG4ubXgtZGF0YXZpZXctY29udHJvbHMgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuXG4ubXgtZGF0YXZpZXctY29udHJvbHMgLm14LWJ1dHRvbiArIC5teC1idXR0b24ge1xuICAgIG1hcmdpbi1sZWZ0OiAwLjNlbTtcbn1cblxuLm14LWRhdGF2aWV3LW1lc3NhZ2Uge1xuICAgIGJhY2tncm91bmQ6ICNmZmY7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICByaWdodDogMDtcbiAgICBib3R0b206IDA7XG4gICAgbGVmdDogMDtcbn1cbi5teC1kYXRhdmlldy1tZXNzYWdlID4gZGl2IHtcbiAgICBkaXNwbGF5OiB0YWJsZTtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG59XG4ubXgtZGF0YXZpZXctbWVzc2FnZSA+IGRpdiA+IHAge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi8qIFRvcC1sZXZlbCBkYXRhIHZpZXcgaW4gd2luZG93IGlzIGEgc3BlY2lhbCBjYXNlLCBoYW5kbGUgaXQgYXMgc3VjaC4gKi9cbi5teC13aW5kb3ctdmlldyAubXgtd2luZG93LWJvZHkge1xuICAgIHBhZGRpbmc6IDA7XG59XG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRlbnQsXG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LXBsYWNlaG9sZGVyID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRlbnQge1xuICAgIHBhZGRpbmc6IDE1cHg7XG59XG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRyb2xzLFxuLm14LXdpbmRvdy12aWV3IC5teC13aW5kb3ctYm9keSA+IC5teC1wbGFjZWhvbGRlciA+IC5teC1kYXRhdmlldyA+IC5teC1kYXRhdmlldy1jb250cm9scyB7XG4gICAgYm9yZGVyLXJhZGl1czogMHB4IDBweCA2cHggNnB4O1xufVxuIiwiLm14LWRpYWxvZyB7XG4gICAgcG9zaXRpb246IGZpeGVkO1xuICAgIGxlZnQ6IGF1dG87XG4gICAgcmlnaHQ6IGF1dG87XG4gICAgcGFkZGluZzogMDtcbiAgICB3aWR0aDogNTAwcHg7XG4gICAgLyogSWYgdGhlIG1hcmdpbiBpcyBzZXQgdG8gYXV0bywgSUU5IHJlcG9ydHMgdGhlIGNhbGN1bGF0ZWQgdmFsdWUgb2YgdGhlXG4gICAgICogbWFyZ2luIGFzIHRoZSBhY3R1YWwgdmFsdWUuIE90aGVyIGJyb3dzZXJzIHdpbGwganVzdCByZXBvcnQgMC4gRWxpbWluYXRlXG4gICAgICogdGhpcyBkaWZmZXJlbmNlIGJ5IHNldHRpbmcgbWFyZ2luIHRvIDAgZm9yIGV2ZXJ5IGJyb3dzZXIuICovXG4gICAgbWFyZ2luOiAwO1xufVxuLm14LWRpYWxvZy1oZWFkZXIge1xuICAgIGN1cnNvcjogbW92ZTtcbn1cbi5teC1kaWFsb2ctYm9keSB7XG4gICAgb3ZlcmZsb3c6IGF1dG87XG59XG4iLCIubXgtd2luZG93IHtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgbGVmdDogYXV0bztcbiAgICByaWdodDogYXV0bztcbiAgICBwYWRkaW5nOiAwO1xuICAgIHdpZHRoOiA2MDBweDtcbiAgICAvKiBJZiB0aGUgbWFyZ2luIGlzIHNldCB0byBhdXRvLCBJRTkgcmVwb3J0cyB0aGUgY2FsY3VsYXRlZCB2YWx1ZSBvZiB0aGVcbiAgICAgKiBtYXJnaW4gYXMgdGhlIGFjdHVhbCB2YWx1ZS4gT3RoZXIgYnJvd3NlcnMgd2lsbCBqdXN0IHJlcG9ydCAwLiBFbGltaW5hdGVcbiAgICAgKiB0aGlzIGRpZmZlcmVuY2UgYnkgc2V0dGluZyBtYXJnaW4gdG8gMCBmb3IgZXZlcnkgYnJvd3Nlci4gKi9cbiAgICBtYXJnaW46IDA7XG59XG4ubXgtd2luZG93LWNvbnRlbnQge1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xufVxuLm14LXdpbmRvdy1hY3RpdmUgLm14LXdpbmRvdy1oZWFkZXIge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNmNWY1ZjU7XG4gICAgYm9yZGVyLXJhZGl1czogNnB4IDZweCAwIDA7XG59XG4ubXgtd2luZG93LWhlYWRlciB7XG4gICAgY3Vyc29yOiBtb3ZlO1xufVxuLm14LXdpbmRvdy1ib2R5IHtcbiAgICBvdmVyZmxvdzogYXV0bztcbn1cbiIsIi5teC1kcm9wZG93bi1saXN0ICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1kcm9wZG93bi1saXN0IGltZyB7XG4gICAgd2lkdGg6IDM1cHg7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kcm9wZG93bi1saXN0IGltZyB7XG4gICAgbWFyZ2luLWxlZnQ6IDEwcHg7XG4gICAgbWFyZ2luLXJpZ2h0OiBhdXRvO1xufVxuXG4ubXgtZHJvcGRvd24tbGlzdCB7XG4gICAgcGFkZGluZzogMDtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LWRyb3Bkb3duLWxpc3QgPiBsaSB7XG4gICAgcGFkZGluZzogNXB4IDEwcHggMTBweDtcbiAgICBib3JkZXI6IDFweCAjZGRkO1xuICAgIGJvcmRlci1zdHlsZTogc29saWQgc29saWQgbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xufVxuLm14LWRyb3Bkb3duLWxpc3QgPiBsaTpmaXJzdC1jaGlsZCB7XG4gICAgYm9yZGVyLXRvcC1sZWZ0LXJhZGl1czogNHB4O1xuICAgIGJvcmRlci10b3AtcmlnaHQtcmFkaXVzOiA0cHg7XG59XG4ubXgtZHJvcGRvd24tbGlzdCA+IGxpOmxhc3QtY2hpbGQge1xuICAgIGJvcmRlci1ib3R0b20tc3R5bGU6IHNvbGlkO1xuICAgIGJvcmRlci1ib3R0b20tbGVmdC1yYWRpdXM6IDRweDtcbiAgICBib3JkZXItYm90dG9tLXJpZ2h0LXJhZGl1czogNHB4O1xufVxuLm14LWRyb3Bkb3duLWxpc3Qtc3RyaXBlZCA+IGxpOm50aC1jaGlsZCgybisxKSB7XG4gICAgYmFja2dyb3VuZDogI2Y5ZjlmOTtcbn1cbi5teC1kcm9wZG93bi1saXN0ID4gbGk6aG92ZXIge1xuICAgIGJhY2tncm91bmQ6ICNmNWY1ZjU7XG59XG4iLCIubXgtaGVhZGVyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgcGFkZGluZzogOXB4O1xuICAgIGJhY2tncm91bmQ6ICMzMzM7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuLm14LWhlYWRlci1jZW50ZXIge1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICBjb2xvcjogI2VlZTtcbiAgICBsaW5lLWhlaWdodDogMzBweDsgLyogaGVpZ2h0IG9mIGJ1dHRvbnMgKi9cbn1cbmJvZHlbZGlyPVwibHRyXCJdIC5teC1oZWFkZXItbGVmdCxcbmJvZHlbZGlyPVwicnRsXCJdIC5teC1oZWFkZXItcmlnaHQge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB0b3A6IDlweDtcbiAgICBsZWZ0OiA5cHg7XG59XG5ib2R5W2Rpcj1cImx0clwiXSAubXgtaGVhZGVyLXJpZ2h0LFxuYm9keVtkaXI9XCJydGxcIl0gLm14LWhlYWRlci1sZWZ0IHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgdG9wOiA5cHg7XG4gICAgcmlnaHQ6IDlweDtcbn1cbiIsIi5teC10aXRsZSB7XG4gICAgbWFyZ2luLWJvdHRvbTogMHB4O1xuICAgIG1hcmdpbi10b3A6IDBweDtcbn1cbiIsIi5teC1saXN0dmlldyB7XG4gICAgcGFkZGluZzogOHB4O1xufVxuLm14LWxpc3R2aWV3ID4gdWwge1xuICAgIHBhZGRpbmc6IDBweDtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LWxpc3R2aWV3ID4gdWwgPiBsaSB7XG4gICAgcGFkZGluZzogNXB4IDEwcHggMTBweDtcbiAgICBib3JkZXI6IDFweCAjZGRkO1xuICAgIGJvcmRlci1zdHlsZTogc29saWQgc29saWQgbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuICAgIG91dGxpbmU6IG5vbmU7XG59XG4ubXgtbGlzdHZpZXcgPiB1bCA+IGxpOmZpcnN0LWNoaWxkIHtcbiAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiA0cHg7XG4gICAgYm9yZGVyLXRvcC1yaWdodC1yYWRpdXM6IDRweDtcbn1cbi5teC1saXN0dmlldyA+IHVsID4gbGk6bGFzdC1jaGlsZCB7XG4gICAgYm9yZGVyLWJvdHRvbS1zdHlsZTogc29saWQ7XG4gICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogNHB4O1xuICAgIGJvcmRlci1ib3R0b20tcmlnaHQtcmFkaXVzOiA0cHg7XG59XG4ubXgtbGlzdHZpZXcgbGk6bnRoLWNoaWxkKDJuKzEpIHtcbiAgICBiYWNrZ3JvdW5kOiAjZjlmOWY5O1xufVxuLm14LWxpc3R2aWV3IGxpOm50aC1jaGlsZCgybisxKTpob3ZlciB7XG4gICAgYmFja2dyb3VuZDogI2Y1ZjVmNTtcbn1cbi5teC1saXN0dmlldyA+IHVsID4gbGkuc2VsZWN0ZWQge1xuICAgIGJhY2tncm91bmQ6ICNlZWU7XG59XG4ubXgtbGlzdHZpZXctY2xpY2thYmxlIHVsICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1saXN0dmlldy1lbXB0eSB7XG4gICAgY29sb3I6ICM5OTk7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuLm14LWxpc3R2aWV3IC5teC1saXN0dmlldy1sb2FkaW5nIHtcbiAgICBwYWRkaW5nOiAxMHB4O1xuICAgIGxpbmUtaGVpZ2h0OiAwO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5teC1saXN0dmlldy1zZWFyY2hiYXIge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbn1cbi5teC1saXN0dmlldy1zZWFyY2hiYXIgPiBpbnB1dCB7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtbGlzdHZpZXctc2VhcmNoYmFyID4gYnV0dG9uIHtcbiAgICBtYXJnaW4tbGVmdDogNXB4O1xufVxuW2Rpcj1cInJ0bFwiXSAubXgtbGlzdHZpZXctc2VhcmNoYmFyID4gYnV0dG9uIHtcbiAgICBtYXJnaW4tbGVmdDogMDtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbn1cbi5teC1saXN0dmlldy1zZWxlY3Rpb24ge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBwYWRkaW5nOiAwIDE1cHggMCA1cHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1saXN0dmlldy1zZWxlY3Rpb24ge1xuICAgIHBhZGRpbmc6IDAgNXB4IDAgMTVweDtcbn1cbi5teC1saXN0dmlldy1zZWxlY3RhYmxlIC5teC1saXN0dmlldy1jb250ZW50IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtbGlzdHZpZXcgLnNlbGVjdGVkIHtcbiAgICBiYWNrZ3JvdW5kOiAjZGVmO1xufVxuLm14LWxpc3R2aWV3IC5teC10YWJsZSB0aCxcbi5teC1saXN0dmlldyAubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDJweDtcbn1cbiIsIi5teC1sb2dpbiAuZm9ybS1jb250cm9sIHtcbiAgICBtYXJnaW4tdG9wOiAxMHB4O1xufVxuIiwiLm14LW1lbnViYXIge1xuICAgIHBhZGRpbmc6IDhweDtcbn1cbi5teC1tZW51YmFyLWljb24ge1xuICAgIGhlaWdodDogMTZweDtcbn1cbi5teC1tZW51YmFyLW1vcmUtaWNvbiB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHdpZHRoOiAxNnB4O1xuICAgIGhlaWdodDogMTZweDtcbiAgICBiYWNrZ3JvdW5kOiB1cmwoZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFDTUFBQUFqQ0FZQUFBQWUyYk5aQUFBQUdYUkZXSFJUYjJaMGQyRnlaUUJCWkc5aVpTQkpiV0ZuWlZKbFlXUjVjY2xsUEFBQUFLTkpSRUZVZU5waS9QLy9QOE5nQVV3TWd3aU1PbWJVTWFPT0dYWE1xR05HSFRQWUhNT0NUZkRzMmJNZVFLb09pSTFCWENCdU1qWTIza0ZyZFl6b1RRaWdSbThndFFXTEcwT0JCcXlobFRwYzBkU09JeFRyYUt3T3EyUFVjV2hXcDdFNnJJNjVpVVB6VFJxcncrcVlHaHlhbTJpc0R0TXh3RVMxQ1VnRkFmRnhxQkNJRGtKUGJOUldoelUzalJaNm80NFpkY3lvWTBZZE0rcVlVY2NNVXNjQUJCZ0FVWHBFakUvQnMvSUFBQUFBU1VWT1JLNUNZSUk9KSBuby1yZXBlYXQgY2VudGVyIGNlbnRlcjtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDE2cHggMTZweDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuIiwiLm14LW5hdmlnYXRpb25saXN0IHtcbiAgICBwYWRkaW5nOiA4cHg7XG59XG4ubXgtbmF2aWdhdGlvbmxpc3QgbGk6aG92ZXIsXG4ubXgtbmF2aWdhdGlvbmxpc3QgbGk6Zm9jdXMsXG4ubXgtbmF2aWdhdGlvbmxpc3QgbGkuYWN0aXZlIHtcbiAgICBjb2xvcjogI0ZGRjtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzQ5OERCO1xufVxuLm14LW5hdmlnYXRpb25saXN0ICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1uYXZpZ2F0aW9ubGlzdCAudGFibGUgdGgsXG4ubXgtbmF2aWdhdGlvbmxpc3QgLnRhYmxlIHRkIHtcbiAgICBwYWRkaW5nOiAycHg7XG59XG4iLCIubXgtcHJvZ3Jlc3Mge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICB0b3A6IDMwJTtcbiAgICBsZWZ0OiAwO1xuICAgIHJpZ2h0OiAwO1xuICAgIG1hcmdpbjogYXV0bztcbiAgICB3aWR0aDogMjUwcHg7XG4gICAgbWF4LXdpZHRoOiA5MCU7XG4gICAgYmFja2dyb3VuZDogIzMzMztcbiAgICBvcGFjaXR5OiAwLjg7XG4gICAgei1pbmRleDogNTAwMDtcbiAgICBib3JkZXItcmFkaXVzOiA0cHg7XG4gICAgcGFkZGluZzogMjBweCAxNXB4O1xuICAgIHRyYW5zaXRpb246IG9wYWNpdHkgMC40cyBlYXNlLWluLW91dDtcbn1cbi5teC1wcm9ncmVzcy1oaWRkZW4ge1xuICAgIG9wYWNpdHk6IDA7XG59XG4ubXgtcHJvZ3Jlc3MtbWVzc2FnZSB7XG4gICAgY29sb3I6ICNmZmY7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIG1hcmdpbi1ib3R0b206IDE1cHg7XG59XG4ubXgtcHJvZ3Jlc3MtZW1wdHkgLm14LXByb2dyZXNzLW1lc3NhZ2Uge1xuICAgIGRpc3BsYXk6IG5vbmU7XG59XG4ubXgtcHJvZ3Jlc3MtaW5kaWNhdG9yIHtcbiAgICB3aWR0aDogNzBweDtcbiAgICBoZWlnaHQ6IDEwcHg7XG4gICAgbWFyZ2luOiBhdXRvO1xuICAgIGJhY2tncm91bmQ6IHVybChkYXRhOmltYWdlL2dpZjtiYXNlNjQsUjBsR09EbGhSZ0FLQU1RQUFEbzZPb0dCZ1ZwYVduQndjSTZPanF5c3JGSlNVbVJrWkQ4L1AweE1UTTdPenFlbnAxaFlXRjFkWFVoSVNISnljb2VIaDB0TFMxZFhWNmlvcU0vUHoyVmxaVDA5UFRjM04wQkFRSVdGaGRiVzFseGNYSzJ0clVGQlFUTXpNd0FBQUNIL0MwNUZWRk5EUVZCRk1pNHdBd0VBQUFBaCtRUUVEQUFBQUN3QUFBQUFSZ0FLQUFBRms2RG5YUmFHV1plb3JxU0pybkI3cHJBcXY3VjQweDdRL1VCQXpnZjhDV3ZFNGhHV0RBNkx4aEVVeU5OTmYxWHBOWHU1ZHJoZWt0Y0NzNHpMNTVYNVNsYVBNVjRNREg2VnIraFR1d29QMVl2NFJTWnhjNE4zaFh1SGYzRnJVMjBxakZDT0lwQkZraDZVUUphWVB5aGhNWjRzb0RhaVZsczlVMHNyVFZGSXFFOVFxU3FySFVzN09Ub2xNN2NqdVRnNXRyZkFJUUFoK1FRRURBQUFBQ3dBQUFBQUNnQUtBQUFGSktEbkhZV2lGSWZvUVZyclFxTXJhK1RzbG5acjV0ckpvN3dVYXdZVFZRb1VDa29VQWdBaCtRUUVEQUFBQUN3QUFBQUFHUUFLQUFBRldhRG5NY1N5RUpLb3JrZWhLTVdoUGx4dFA2c0thWHdQZVJLYmtNUElIWHBJellFd3RCRnloV1N2c0dqV0ZqbUZsS2VvV3JFcjdWYkJ0RDVYMFcyQllTVWF0MG9QYllqTGVYYkpuNGcwbVJDS2RpSVZCUlFVTVNJaEFDSDVCQVFNQUFBQUxBQUFBQUFvQUFvQUFBV0tvT2NsUXhBTWthaXVETEVzaExUT1I2RW94YUUyV2U4M005R0RReXcrZ2g2SVpzbUVlQ0srYUNZeGt4U3ZIQWFOeWRVY0JsTGZZRWJBRmdtelFwZFpDSVI3Z2RuQ1RGek1GT3Vsd3YyT3IrWjBkaXQ0ZVFwZ2IyTXJaWFJvSzJwNUJRbHZVek1NZEZsYmVUbzhVa0JCUTFoSFFVcGRUaUlrSmdOVVNCNHRFeE1FV3F3VkJSUVVPU0loQUNINUJBUU1BQUFBTEFBQUFBQTNBQW9BQUFXOG9PY2hoaUFZaUtpdXlSQUVRN1RPRExFc2hEU3ZSNkVvaFlQS3NTa2FIVHRQSThOc05wSVBqblQ2U0VJMDJDeGtaT3h1VXF0SWM1eEp6Q1RUTkljeE8yVGZtb1BCYXpUTUJ1VG1ZRVpRVHdrekJYQlpCUUowUlFJekFYbE1BVE1MZmxJTE13cURXQXFHaDRrcmk0eU9LNUNSa3l1VmxncHpoM1lyZUl4N0szMlJnQ3VDbGdVSWgxOHpDWXhsTkpGcmJaWnhIa1JlU0R0TFpFODdVV3BWTzFkd1d5SVlKU2RnU1MwdkEyWkpIalVURXdSczNoVUZGQlJCSWlFQUlma0VCQXdBQUFBc0FBQUFBRVlBQ2dBQUJmQ2c1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkROSzhNc1N3RXlVNTFLQ2dVaFlNSzBHazZBVVBIWmtwMURCdVpyTFl4ZkhDKzRNY1FvaW1iSVNPbnVwTmlVZDhiMlNxaXJXY1NNd2w0ejJITURtYUJHZ2NXYTA0V013WndWQVl6QTNaYUF6TUVmR0FFTXdXQ1pnVVloazBZTXdLTFV3SXpBWkJaQVRNTGxWOExNd3FhWlFxZG5xQXJvcU9sSzZlb3FpdXNyYThyc2JJS2haNklLNHFqalN1UHFKSXJsSzJYSzVteUJSZWViRE1JbzNFMHFIY3pESzE5ZjdLREhreHJVRHRTY0ZZN1dIWmNPMTU4WWp0a2dtZ2lKRXlnR0NJQ2d3c1ljb2JVdURFQUQ4RWVFeVlROEVPd1FnRUtGSktJQ0FFQUlma0VCQXdBQUFBc0R3QUFBRGNBQ2dBQUJicWc1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkROSzhNc1N3RWlRclFLUm9CTzQ5ancydzZrbzJNZE5wSVBqalk3R05rN0haU3JLWjRJMXRGcHVoTVlpYkp1amtNaTlkb21SbkdUY05za0o0T1pnUnZXUVFZYzBVWU13SjRUQUl6QVgxU0FUTUxnbGdMaFlhSUs0cUxqU3VQa0pJcmxKVUxjb1oxSzNlTGVpdDhrSDhyZ1pVRUY0WmZNd2lMWkRTUWFqTU1sWEFlUkY1SU8wdGpUenRSYVZVN1YyOWJJaVFtS0VraUdDNHdaVWsxTndOcjJEMFRFd1FNSWlFQUlma0VCQXdBQUFBc0hnQUFBQ2dBQ2dBQUJZZWc1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkRwQUpkN3dNemtXTkRMRHFDbmtabXlXeU1mTkJPaWxXc2JtU3JDSE9iU1ZpaVBzdk1ZQzBhWmdNdWM0QUI5ekF6UVprb21BWFV5MERiRFYvSjUzVXJkM2dCWDI1aUsyUnpaeXRwZUFNWGJsSXpDSE5YTkhoZEhqeFJRRUZEVmtkQlNseE9JaVFtS0VnaUdDNHdXRWcxTndNSklpRUFJZmtFQkF3QUFBQXNMUUFBQUJrQUNnQUFCVldnNTEwV2hsbVhxSzZJSVFnR29nSmRiUU9yNm14ODc0eTJZQ2ZGNmhrM0NJdlFac2taamowRFpsbkQ1QVJRbm1CS3RhNndXWUdTMmx3OXM0WUxkWmhEWkpFZW1oQ1g4K3lPUHhISmhLcXJNQzR3TWg0aEFDSDVCQVFNQUFBQUxEd0FBQUFLQUFvQUFBVWlvT2RkRm9aWmwrZ0JYZXNDb3l0MzVPeVdkbXZtM2NtanZCUnJCaE9SVENoUkNBQTcpO1xufVxuIiwiLm14LXJlbG9hZC1ub3RpZmljYXRpb24ge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICB6LWluZGV4OiAxMDAxO1xuICAgIHRvcDogMDtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBwYWRkaW5nOiAxcmVtO1xuXG4gICAgYm9yZGVyOiAxcHggc29saWQgaHNsKDIwMCwgOTYlLCA0MSUpO1xuICAgIGJhY2tncm91bmQtY29sb3I6IGhzbCgyMDAsIDk2JSwgNDQlKTtcblxuICAgIGJveC1zaGFkb3c6IDAgNXB4IDIwcHggcmdiYSgxLCAzNywgNTUsIDAuMTYpO1xuICAgIGNvbG9yOiB3aGl0ZTtcblxuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBmb250LXNpemU6IDE0cHg7XG59XG4iLCIubXgtcmVzaXplci1uLFxuLm14LXJlc2l6ZXItcyB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGxlZnQ6IDA7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgaGVpZ2h0OiAxMHB4O1xufVxuLm14LXJlc2l6ZXItbiB7XG4gICAgdG9wOiAtNXB4O1xuICAgIGN1cnNvcjogbi1yZXNpemU7XG59XG4ubXgtcmVzaXplci1zIHtcbiAgICBib3R0b206IC01cHg7XG4gICAgY3Vyc29yOiBzLXJlc2l6ZTtcbn1cblxuLm14LXJlc2l6ZXItZSxcbi5teC1yZXNpemVyLXcge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB0b3A6IDA7XG4gICAgd2lkdGg6IDEwcHg7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuLm14LXJlc2l6ZXItZSB7XG4gICAgcmlnaHQ6IC01cHg7XG4gICAgY3Vyc29yOiBlLXJlc2l6ZTtcbn1cbi5teC1yZXNpemVyLXcge1xuICAgIGxlZnQ6IC01cHg7XG4gICAgY3Vyc29yOiB3LXJlc2l6ZTtcbn1cblxuLm14LXJlc2l6ZXItbncsXG4ubXgtcmVzaXplci1uZSxcbi5teC1yZXNpemVyLXN3LFxuLm14LXJlc2l6ZXItc2Uge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB3aWR0aDogMjBweDtcbiAgICBoZWlnaHQ6IDIwcHg7XG59XG5cbi5teC1yZXNpemVyLW53LFxuLm14LXJlc2l6ZXItbmUge1xuICAgIHRvcDogLTVweDtcbn1cbi5teC1yZXNpemVyLXN3LFxuLm14LXJlc2l6ZXItc2Uge1xuICAgIGJvdHRvbTogLTVweDtcbn1cbi5teC1yZXNpemVyLW53LFxuLm14LXJlc2l6ZXItc3cge1xuICAgIGxlZnQ6IC01cHg7XG59XG4ubXgtcmVzaXplci1uZSxcbi5teC1yZXNpemVyLXNlIHtcbiAgICByaWdodDogLTVweDtcbn1cblxuLm14LXJlc2l6ZXItbncge1xuICAgIGN1cnNvcjogbnctcmVzaXplO1xufVxuLm14LXJlc2l6ZXItbmUge1xuICAgIGN1cnNvcjogbmUtcmVzaXplO1xufVxuLm14LXJlc2l6ZXItc3cge1xuICAgIGN1cnNvcjogc3ctcmVzaXplO1xufVxuLm14LXJlc2l6ZXItc2Uge1xuICAgIGN1cnNvcjogc2UtcmVzaXplO1xufVxuIiwiLm14LXRleHQge1xuICAgIHdoaXRlLXNwYWNlOiBwcmUtbGluZTtcbn1cbiIsIi5teC10ZXh0YXJlYSB0ZXh0YXJlYSB7XG4gICAgcmVzaXplOiBub25lO1xuICAgIG92ZXJmbG93LXk6IGhpZGRlbjtcbn1cbi5teC10ZXh0YXJlYSAubXgtdGV4dGFyZWEtbm9yZXNpemUge1xuICAgIGhlaWdodDogYXV0bztcbiAgICByZXNpemU6IHZlcnRpY2FsO1xuICAgIG92ZXJmbG93LXk6IGF1dG87XG59XG4ubXgtdGV4dGFyZWEgLm14LXRleHRhcmVhLWNvdW50ZXIge1xuICAgIGZvbnQtc2l6ZTogc21hbGxlcjtcbn1cbi5teC10ZXh0YXJlYSAuZm9ybS1jb250cm9sLXN0YXRpYyB7XG4gICAgd2hpdGUtc3BhY2U6IHByZS1saW5lO1xufVxuIiwiLm14LXVuZGVybGF5IHtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgdG9wOiAwO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICB6LWluZGV4OiAxMDAwO1xuICAgIG9wYWNpdHk6IDAuNTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzMzO1xufVxuIiwiLm14LWltYWdlem9vbSB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjOTk5O1xufVxuLm14LWltYWdlem9vbS13cmFwcGVyIHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLm14LWltYWdlem9vbS1pbWFnZSB7XG4gICAgbWF4LXdpZHRoOiBub25lO1xufVxuIiwiLm14LWRyb3Bkb3duIGxpIHtcbiAgICBwYWRkaW5nOiAzcHggMjBweDtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZHJvcGRvd24gbGFiZWwge1xuICAgIHBhZGRpbmc6IDA7XG4gICAgY29sb3I6ICMzMzM7XG4gICAgd2hpdGUtc3BhY2U6IG5vd3JhcDtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZHJvcGRvd24gaW5wdXQge1xuICAgIG1hcmdpbjogMDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1kcm9wZG93biAuc2VsZWN0ZWQge1xuICAgIGJhY2tncm91bmQ6ICNmOGY4Zjg7XG59XG4ubXgtc2VsZWN0Ym94IHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LXNlbGVjdGJveC1jYXJldC13cmFwcGVyIHtcbiAgICBmbG9hdDogcmlnaHQ7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuIiwiLm14LWRlbW91c2Vyc3dpdGNoZXIge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICByaWdodDogMDtcbiAgICB3aWR0aDogMzYwcHg7XG4gICAgaGVpZ2h0OiAxMDAlO1xuICAgIHotaW5kZXg6IDIwMDAwO1xuICAgIGJveC1zaGFkb3c6IC0xcHggMCA1cHggcmdiYSgyOCw1OSw4NiwuMik7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlci1jb250ZW50IHtcbiAgICBwYWRkaW5nOiA4MHB4IDQwcHggMjBweDtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgY29sb3I6ICMzODdlYTI7XG4gICAgZm9udC1zaXplOiAxNHB4O1xuICAgIG92ZXJmbG93OiBhdXRvO1xuICAgIGJhY2tncm91bmQ6IHVybChkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQU9nQUFBQmdDQVlBQUFBWFNqN05BQUFBR1hSRldIUlRiMlowZDJGeVpRQkJaRzlpWlNCSmJXRm5aVkpsWVdSNWNjbGxQQUFBQXlScFZGaDBXRTFNT21OdmJTNWhaRzlpWlM1NGJYQUFBQUFBQUR3L2VIQmhZMnRsZENCaVpXZHBiajBpNzd1L0lpQnBaRDBpVnpWTk1FMXdRMlZvYVVoNmNtVlRlazVVWTNwcll6bGtJajgrSUR4NE9uaHRjRzFsZEdFZ2VHMXNibk02ZUQwaVlXUnZZbVU2Ym5NNmJXVjBZUzhpSUhnNmVHMXdkR3M5SWtGa2IySmxJRmhOVUNCRGIzSmxJRFV1TXkxak1ERXhJRFkyTGpFME5UWTJNU3dnTWpBeE1pOHdNaTh3TmkweE5EbzFOam95TnlBZ0lDQWdJQ0FnSWo0Z1BISmtaanBTUkVZZ2VHMXNibk02Y21SbVBTSm9kSFJ3T2k4dmQzZDNMbmN6TG05eVp5OHhPVGs1THpBeUx6SXlMWEprWmkxemVXNTBZWGd0Ym5NaklqNGdQSEprWmpwRVpYTmpjbWx3ZEdsdmJpQnlaR1k2WVdKdmRYUTlJaUlnZUcxc2JuTTZlRzF3UFNKb2RIUndPaTh2Ym5NdVlXUnZZbVV1WTI5dEwzaGhjQzh4TGpBdklpQjRiV3h1Y3pwNGJYQk5UVDBpYUhSMGNEb3ZMMjV6TG1Ga2IySmxMbU52YlM5NFlYQXZNUzR3TDIxdEx5SWdlRzFzYm5NNmMzUlNaV1k5SW1oMGRIQTZMeTl1Y3k1aFpHOWlaUzVqYjIwdmVHRndMekV1TUM5elZIbHdaUzlTWlhOdmRYSmpaVkpsWmlNaUlIaHRjRHBEY21WaGRHOXlWRzl2YkQwaVFXUnZZbVVnVUdodmRHOXphRzl3SUVOVE5pQW9UV0ZqYVc1MGIzTm9LU0lnZUcxd1RVMDZTVzV6ZEdGdVkyVkpSRDBpZUcxd0xtbHBaRG8wTXprd09UUkVNRFEyTkVZeE1VVTBRVFE0TVVJNU5UTkdNVVEzUXpFNU55SWdlRzF3VFUwNlJHOWpkVzFsYm5SSlJEMGllRzF3TG1ScFpEbzBNemt3T1RSRU1UUTJORVl4TVVVMFFUUTRNVUk1TlROR01VUTNRekU1TnlJK0lEeDRiWEJOVFRwRVpYSnBkbVZrUm5KdmJTQnpkRkpsWmpwcGJuTjBZVzVqWlVsRVBTSjRiWEF1YVdsa09qYzBSRU15TVVaR05EWTBRekV4UlRSQk5EZ3hRamsxTTBZeFJEZERNVGszSWlCemRGSmxaanBrYjJOMWJXVnVkRWxFUFNKNGJYQXVaR2xrT2pjMFJFTXlNakF3TkRZMFF6RXhSVFJCTkRneFFqazFNMFl4UkRkRE1UazNJaTgrSUR3dmNtUm1Pa1JsYzJOeWFYQjBhVzl1UGlBOEwzSmtaanBTUkVZK0lEd3ZlRHA0YlhCdFpYUmhQaUE4UDNod1lXTnJaWFFnWlc1a1BTSnlJajgrZzF0Umx3QUFFRkZKUkVGVWVOcnNuWWwzVmNVZHgyZHU4ckpESUpDd0NnalZhclZvc1ZYYzZqbldubnBJUWxKV2w2T0NyUFlma2gxY2l1d2xMRm81dFQzbFZKUlZFVVVFUlFRSlM0Q1FRRWpDUzk3MCs1Mlo5M0lUREd1Uzk4ajcvVGp6N3IyL2U5OTlaTzU4N205K003K1owY05YYnNxS2FUTmVLVlZvbEttT0tiWDM5RXNWS2wxRVY2MklLSzN3QjV1SGNZZy8zM3lDNHgybS9FMmpSRVNTTE1HSmw4dXZZcnNIaWR1aFNBK21Vd2FZaWhsUk0zSEdPdXp1Wlg0Zy9SbHBpdDY4TkZ1S2gwalNEWWd4emxBTVc3V3BDQmIwNlJqTmlEWUh6azZ2UEpaMm1iRnArYStKTEN4b0hyYm5vVnB0eW1lZGxXSWlrblJBS1VOWFZRMERvT01BcUlKMlg4MzB5cFBwQitteVFsL2xIWTNES0xaYlRmbnNMNldvaUNRZFVNcmdWVlZqQWVoSWFHTXhaWGFlbi83WGMybVpNWnVYVm1MenFGSTJmL1lCMm85TTJleW9GQm1ScEFKS0tWbTk4UkZvUndCUUZzZ2RnTFErVFNFZEIwQkxzWnNCUUd1d3Y4NlV6VGtqeFVZa3FZQlNpbGR2SEFkQWgyRzNDUloxUisyMFNRM3BDZW1TZ2RpVUFkQlJBTFFGKzl1UWRnTlVhZVVWU1I2Z2xBR3IvL0U0Tm9NQWFBTjgweDExMHlZMXBXMUdiVmxDdi9SMy92QVE5amVac3JsWHBBaUpkS2NFTnpqUDdoZFU3VlErMGhOOTFxeVBwR3RHd2Yrc3dvYmRNWmVRSGtENm05Nnk2SDRwUWlKSnM2RGVpa1pnUVIrSEJTMUNsYmZXYVBQWjVhbFRXdFBYa2k0dXNGVmVaUjV3Q3ZhZm1vOU42YnlyVXB4RWVoeFFTdjgxRzNJQUtDQTFoUUQwSFBaM1hVbGpTQjJvaTU3QjVua0FpbHFJdVlEOWpZRDB1QlFwa1I0SGxGSzRaa01lQUIwUFFQTUI2TmxXWlhZM1Q1MGFTM05JaXdIb2l3QjBqSEw5TWJ1UVBoRnJLdExqZ0ZMZ2crWUQwUEdnTWcrQW5zRjJUelROSWJXWnVIVWhxcnpxOS82dzFqWWdsYzcvVVlxWFNJOENTaWxZdTQ0VzlDa0F5bXJ2S2ZpbmUxdW5URE1DNmNJaDJQd0o2VmNBbFBteEY5YjFYMmJDL0NZcFppSTlCaWdsRDVDMnVyamRiQUJhRGRVK2dUUnNUWTJ6cHRxMitQNFRrSDRqT1NQU1k0QlNzdGV1TFFDZ1R3UFFMQnhXd3ovZFo2Wk1GMGd0cEF0S3NIa0JnTWE3WVk0QTJnL05oTGRxSlhkRWVnUlFTb1NRYXNQV3pBZ0FQVVZMQ2toamtxMCtjejljOEFRMlR5TDFVeTVzY2p2U0RvRGFLcmtqMHUyQVVqTFdyV0cvNEZNQWxPTW56K0NPZTh6a2x3VFNOa2laTHhNQTZDTmV4UzZaandEcEVja2RrVzRIMUVPYUQwQ2Z3bTRPN3NqeGs0UlVyRVE3VU4rK2p5OHlwSHU5Nmp1a2p3SHFCY2tka1c0RjFONW8zV3FHQTQ3SEhmT1VEUTgwdTgza2x3WFNhMEY5RnBzL0lQVlZkcnlwK3N4WGU2VzFWNlQ3QUUxQXFnMzlybndmWGJNTGtNb1l5bXNoemNYbUw4cU9ON1hDb1B2L0lPMEZxT0llaUhRUG9QYUc2MWZsT1F0aGFDSHE4QXM3emFSWG1pV3JmeEhVVWI3YUcyL3Q1Y0NFYmVLZmluUWJvQjdTSE44WDJCKy93SEdrbndOU0daclZPYWkveGVZeHBGRmU5Wk5peU9DRXR5UzJWd0R0bnE1THZmNkRMRnZvdE9HQVovaFhCcEMrZWtteS9JYitLV0V0OGFyRFNQOEdxS2NsZHdUUTdvQTBFNy9BUWM2RGZUL2dia0I2WHJMOXVwQnE1VUlHQ1dxaGNrSDRqRVQ2TDBDdGtSd1NRTHYrUnphczVOdytuRDRscG9MWUY2Ynl0V3JKK2h1Q0NqZEJ2YURhZ3ZBOXFCcWd6aGRRQmRDdWh2VHY3S2dmQVVENWd3Y0I2VkhKL3BzQ2xZMXR6M2tmMVQ0eWIxRzNBMVNaczFjQTdWSkl4d0xRa2Q0Z0hIV2d2aTd4dTdjRXFuNHNaRkhwbzM0S1VLVXhTUUR0b2gvYytONFFWMjJ6djN0S2FmV0ZxWGhkQWhwdUd0UUZCUFdQb2FvdnM1S0EvZy9waUNtZEx5ODhBZlNPSVdYd09BTWFzZ0RvUmV6dk1oVnZTRi9wcllIS1lJZW5rZTREb0lPOG1sWGVuVGo3bFNtZEp3RWlBdWlkUVBwdXZ2V3JORnNxRGNQY2RnTFNlbmtrdDVHWFd4YzhZMEZWeXJzUG1uM09YQXhxRjBDVnJpMEI5TFlocFFYbDhncTBBQzJLWTBvclpzak03YmNQS2h2aXhtSnZqRmZSZFRpbzJMMGxFNW9Kb0xmOW42aDZoMzJsdy8xVUlkOEMwaC9rMGR3SnFBdHBTVG5wK0VNaExhdS91NUVPbU5LNUVwZ3ZnTjR5cEhqekcxZEYwK29rOXZlYmlUT2w4ZWpPUUdXZ0EwZk9qTURSQ0srK0NwLzFBTFpmbXJLNUp5U1hCTkJiZ0hURllNVVJIbHBGQUdpZHJacE5uTmtvajZrcllGM0V5Q1NtKzFYaWtXdXVYTWVsRmZlYnNqbmlxd3FnTndWcEhnQmw1RkYvKzdaWFpvK1orS2FFQjNZZHFNVUE5RkZ2VmUveGFnNXhvMXZ4RlhTSFpKbEZBZlQ2LzZsTkt6SUJKZ3ZSRU8rWEhnU2tFbm5VMWZtOFpUR0h1VDNTd1ZkbEZmZ1FmVldrbzZaOHRyZ1pBbWhub0M1SDRURWp2RjlhYmYzUzhsa3Q4dGk2SEZUT216UlcyVVdoOUppMktqQUhrdXR2bFdzSlBvYThGMWdGMEk2UUxodGlDNDlXV1FDMHdmcWw1YlBFWCtvMldKZjBBNkQwVlVjck8zK1NqcDlxeFA1M09FZGdmMENOUmw2VUFtZ0MwbHlVRTFyVFltWDc5c3dCVkwya0JiSzc4MzN6RXVTMy9vMXlBOGtkcks2NHdFZlZkRGtZQzN6WVRKd3BMOHgwQnJTdHdDeWxYM3FQTHlYSFVWNitObVhpSS9WUTNoZmg4MEZrL1JoblhST1dsUS9qRkk2UFlJOE5UVCtiaWhreXIxSTZBdW9MQ254U3d5cFlnREp5R2Z0N1Rka2NDUkhzNlJxTjBteGdZdklOVEFucjJvejlZOHExQ2g4MUZXK2NreHhMSTBCOTFhdkErNlVEVUNyNHR2NEdrQjZUeDVrTVdKZHJWd1cyalV0czBCc1JzcTY4NGhMMFA5a2Fqd08zeGxTK0ppTnVlak9nb1FZTnh2SEcrL0k0Ync4NzNHVnR6bVErazZvVnVUNFdlTFNIZFdBb01JSWZET1Evb1dMQno2d09RMWN0c3o3MlVrQWRwSXM1bFFvYk1qaEZTQ09BWlFpYlZLdFNCdGgzKzNyTE9zcUhHN29KMFdKQi9BcldnR284cktkd0xWKzBaMlErNVY0Q3FJYzBSN2wrdkVIZUVUcUtsL1VoVXpwWEdwQlM3Vmx0ZkkvRERJY0QwT0hLTnZqcFVhR3pjVDgyNXNNUUFhcytBeDBEL1dzQ3BldlNiWm5MWGdGb0NOUnd3RDJiL3I4QXBIV0NSUW8vc3cwcmFVcUxMYlJLRHdXTWpNY2UxdWJISnFCbHErQlZEMm9OZEJmd3hRc1pTbk1GZ3d0WHBrNXBFa0R2Q2tnWGNRVEhRNjRCaVc5aXc3NjY3MDNwUEdtWXVGdWU0Zm9QTXF6dmFxZHIxU1dBa2RYaVlvRFp6NE5xb1NYWkdSN2tER01IcWRkQ1YwOUxpLzJMZ2RGczNlZHhQYTY2Y25aNjVWMFJYUEhraXUyWitMdnp0VkY5ZWgyZ2lZZThkWkdiUmRDOWZpOHFOaUNWenBQdW1MdFlNdGF0eWZLZ011Qy9DREFXQWRBaXhhM1JPUTVlRHpDM1JzY3RiOXdlTjBGM09YQWhqQTJFRnNlMHZFM2FUcTZ1bTNDdVVSdE4vemVLL1didGZPU3IwTVZDOTJvKzlPcUw3ZnA2SDM1L1c0RC9VN1pPL0xvT3NNMENaTmhxNkRsQ1MwZXd6Y1YxT2REeC81dURxN0d2OHFETGc0N1Yvd0p0MjFPMG5iK3gxd0xxSVVYVnlUeWc3QUs2ZHNRR1Y3cUdOWjB2SGVtOVRQcXNXYy9DM1E5UUZhTFFzeFpWQ1BnNHdWcGZIUGZWZGtFdmxVRm9BMTkxMWlHSTQ1K0JyVmJHd1ZZSnRQVzFzRnRkK0Y2MEJTRkE3ZFpDMW5hWDBIVWQ3aGZTYVJzdGh4ZUlVZlg2K2NXZjI3UEdmeG9kUDhKV3U3MlkxYnR6aVd2dE9XTkxmZnc2NC8vRmRIdy9acjhUaTkveG11KzA3Y2V2aVlYMEhmZGpmcjhWKzYzdDlQRy9NUDZ5TVNyeFZ6TmxYL2JXMU9wb1JiOVVMYmwxMTE3YnlYSGlDWVpmWnAzcE81N3JvTHZ6MTg2MUtuTVQxNFIxNWdiWG1jN3VwYS96M2M3T2RhSnZhOFc5d2JYdGZGQjFuU3F1dWdrTG1nTmRRVUNMcFRRdFZXN2dMRyt1dDFxd2FMQnVSc1BhcVlqZFY1cGZoU1hVR2FGNzBaSUhIUUJsOGJ3YUFyUlZXOHRMQkRRdE5NTWpvOVpTRzFwc1o3bHhkYU5tNzROUnNPaWFzZWFYdlRXM3hUa3pMVjZ2elFYN0FTbG5zMmZrQzZ0RXo2ck14dStSQjBkVU5FZGFldE5IbW55NmF5UkltMGNUemF0QitsVFppQmI3a3VNc2VNK3BTRk94bEZzUkFUUjFRTjJQengzS2RZNjdWY0V6bThhcHpPWnNLUTRpS2RlTzBwc2JpVzc0eDMrNGdGVmVocVRSNTRDUFlEalc4YmlaOEpaMHlZZ0lvQ2tDS1dkbzU0aU1JYjQxb2hicGEwQjZVWXFIaUFDYU9xQnlYbDVhMC9pYW5Cd1EvaTFBbGVCN0VRRTBkVUI5bXpHOUkrTWVLOUozaXZQeFNMVlhSQUJOR1VnNTN2UkJaVVBOckxEdjlLQ3NjQzBpZ0tZV3FFT1ZuWXZIOXAxU3pucFFaUTRlRVFFMGhVQmxueWtqa2ZLOGY4b1pBZzREVkJsb0xDS0FwZ2lrakxwNlNDVkNCcmthbS9vZTZVZUFLbE5RaWdpZ0tRSXFBN0RaZnpyRXEyaEZqOUNxQWxRSndoY1JRRk1FMUJMdm41WjRGY2Nqc3NYM3BMVDRpZ2lncVFNcUc1TFlMVFBRcXk1NVVFOExxQ0lDYU9xQVN0K1U4K3dNOEtwNlgvVTlKYUNLQ0tDcEErcG83NThXdFZsVWZkaUJPbDh5VzBRQVRSRlE2WjhPZGFEcWVOV1hyYjdWQUZVYWswUUUwTlFCVlE4SlZYMjVZdmdQeXFqanBuUytEQllYRVVCVEE5UUZJNzFGZFkxSmhxdUhxeCtaQUtwTTBpd2lnS1lJcUlSMEJBQ056K1JBSzNxQ3kvbVowbmtOa2tNaUFtZ3FaUHpXQlFSMGxFb0U1TnNaenhpTXozVTNhd0NyWkpLSUFKb0NvREl5NlY2L2JrbGNMbmxRVHdKVThWTUZVSkhrZzdxUXNiN3NvcUZsalhmUlJIMzE5eWRUT3ZleTVKSUFLcElhc0RMZ1liaUhWZmx1bXZOSXg3ajZseW1iSzkwMEFxaElDb0JhcU5xVzdYTmliSEErcDJNNUFWREZxZ3FnSXNrSGRaRmZ4Vm9OQnFBRFEyZHFQYXpWcG15T2ROVUlvQ0pKZjJCYkZ0RS92Y2Y1cWJyQXE5bVFkTnI3cStkTTJXeDVxQUtvU1BKaFhVdy9sZjJxZzBKYUxtMVFEVXQ3MHBUUGxxbERCVkNSRkFBMTExdFZWSC8xQU8rclVoajRjQkk2d0RwTC9GVUJWQ1Q1c0M3aFVvdkR1SDZtY3NzdXFsQ3cvaWttd0NycnBBcWdJa2wvdUp1WERGUnVPWG5DV2hBNjAyQmhOWW9ydnRXWmlXOUtaZ21nSXNtRmRTbGg5ZU5VN2NLMjhXb3cxNkxrZEtKbkZFTU1KODZVeUNVQlZDUzVzQzRyc3JBYU93U3VNTFNJTGdNZ3p1SDRETTZkTlJVenJraHVDYUFpeVN3QW01YWg2cXZaQ2x5c3dwRkxiWTFNTlRobUVQOTVVL0dHOUxVS29DTEpnM1U1NDRFQnF5N3gxalUzQWF4RDlxSUg5anlPYWszbDYxSWRGa0JGa2xZNHFsYjBkVmJWZHQyRSsxcUphOHdCcXhramZJSEpWTDRtRTNnTG9DTEpnZlVkcnNaTzMzV0FiUlZPaEJ3bS9GY1VwS0FlMk5aNlM0dXR2bXdtdlNLWko0Q0s5SGpCMmZndWdlM25yU3ZCTFFHZ3JwbXA3YXFvQTlWYTJqb2dYR2Ntdjl3b3VTZUFpdlE0c08vQmxBWjlBV2gvSFBiMzhCWjBxQlpUb2haV1oyWHJzVjhQZllPWk1sMkcwQW1nSWoxYXVEYXNqSVJnN1FjUTZkUG1ocXJGWVgvMkNtR0ZEV1pJNHFWQTZVc0VOenAxYWt3QUZSSHBxUUszL29Nc2ZIS2NLMU5mR3pSaFZKODRySUcvTG5EZ21zQUZValJrdUxWdkdqS01qWUpxZ0w2eGJ0cmtxQUFxSXRMZGhYRGRhbktaajcwK2dRdEp4RmIzSWJpQkJ6ZkRYd3RBUGNCVzN4SzRlWWFiQXFPNWJmUkFOMnUzNmx3ejlNMm5YNnE0SzYzdytCWGJBd0ZVSkdVbHNuYXRCbkE1QUM0L3d3S3M4Z0VvdDNtQnF5cEhFaGEzUGJpSlNqVDFnWnZiQ2RCcXprVWNoWTdIVVczWGVOVlJmNzVGRzgxdUl1T09OZThZWmZVYjMydnRjTytXUTYrKzJBNmNoOS9meHAvTTFDWitsZjNNME81ckVmd21WUkZ0VCtsTWZHVGFZNlBwQm1UaW9peXY1M0dXTWpwYjIvTUNxTWhkS29Wck5tUTZVRlV1QU1peFd3ZHVGZ3AzTm81em9NOEtQRnR4Yk9NdzZ3N1ZhdjFMa0p2UTkwSjYzY2tMb1FPZzdWNFV2NlR2N0Q0QWxQc3hBVlNrMTh2UVZWVzBTckJJT3N0YnM0aTNaaEZ2aGVQV2pEWHB3QjNyd0ZvNW83QzErakJFc0pUV0lvWjF4bG5oZG9DMmF0ZngxSUxmdEZ0M2JQVnhxMjJ0dWJmYVVhKy9Da0NiZDg3NFkvVC9BZ3dBMk1pN0hkQWUraWtBQUFBQVNVVk9SSzVDWUlJPSkgdG9wIHJpZ2h0IG5vLXJlcGVhdCAjMWIzMTQ5O1xuICAgIC8qIGJhY2tncm91bmQtYXR0YWNoZW1lbnQgbG9jYWwgaXMgbm90IHN1cHBvcnRlZCBvbiBJRThcbiAgICAgKiB3aGVuIHRoaXMgaXMgcGFydCBvZiBiYWNrZ3JvdW5kIHRoZSBjb21wbGV0ZSBiYWNrZ3JvdW5kIGlzIGlnbm9yZWQgKi9cbiAgICBiYWNrZ3JvdW5kLWF0dGFjaG1lbnQ6IGxvY2FsO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXIgdWwge1xuICAgIHBhZGRpbmc6IDA7XG4gICAgbWFyZ2luLXRvcDogMjVweDtcbiAgICBsaXN0LXN0eWxlLXR5cGU6IG5vbmU7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkICM0OTYwNzY7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBhIHtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICBwYWRkaW5nOiAxMHB4IDA7XG4gICAgY29sb3I6ICMzODdlYTI7XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICM0OTYwNzY7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBoMiB7XG4gICAgbWFyZ2luOiAyMHB4IDAgNXB4O1xuICAgIGNvbG9yOiAjNWJjNGZlO1xuICAgIGZvbnQtc2l6ZTogMjhweDtcbn1cbi5teC1kZW1vdXNlcnN3aXRjaGVyIGgzIHtcbiAgICBtYXJnaW46IDAgMCAycHg7XG4gICAgY29sb3I6ICM1YmM0ZmU7XG4gICAgZm9udC1zaXplOiAxOHB4O1xuICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICAgIHRleHQtb3ZlcmZsb3c6IGVsbGlwc2lzO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXIgLmFjdGl2ZSBoMyB7XG4gICAgY29sb3I6ICMxMWVmZGI7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBwIHtcbiAgICBtYXJnaW4tYm90dG9tOiAwO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXItdG9nZ2xlIHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgdG9wOiAyNSU7XG4gICAgbGVmdDogLTM1cHg7XG4gICAgd2lkdGg6IDM1cHg7XG4gICAgaGVpZ2h0OiAzOHB4O1xuICAgIG1hcmdpbi10b3A6IC00MHB4O1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAzcHg7XG4gICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogM3B4O1xuICAgIGJveC1zaGFkb3c6IC0xcHggMCA1cHggcmdiYSgyOCw1OSw4NiwuMik7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBQklBQUFBU0NBWUFBQUJXem81WEFBQUFHWFJGV0hSVGIyWjBkMkZ5WlFCQlpHOWlaU0JKYldGblpWSmxZV1I1Y2NsbFBBQUFBeVJwVkZoMFdFMU1PbU52YlM1aFpHOWlaUzU0YlhBQUFBQUFBRHcvZUhCaFkydGxkQ0JpWldkcGJqMGk3N3UvSWlCcFpEMGlWelZOTUUxd1EyVm9hVWg2Y21WVGVrNVVZM3ByWXpsa0lqOCtJRHg0T25odGNHMWxkR0VnZUcxc2JuTTZlRDBpWVdSdlltVTZibk02YldWMFlTOGlJSGc2ZUcxd2RHczlJa0ZrYjJKbElGaE5VQ0JEYjNKbElEVXVNeTFqTURFeElEWTJMakUwTlRZMk1Td2dNakF4TWk4d01pOHdOaTB4TkRvMU5qb3lOeUFnSUNBZ0lDQWdJajRnUEhKa1pqcFNSRVlnZUcxc2JuTTZjbVJtUFNKb2RIUndPaTh2ZDNkM0xuY3pMbTl5Wnk4eE9UazVMekF5THpJeUxYSmtaaTF6ZVc1MFlYZ3Ribk1qSWo0Z1BISmtaanBFWlhOamNtbHdkR2x2YmlCeVpHWTZZV0p2ZFhROUlpSWdlRzFzYm5NNmVHMXdQU0pvZEhSd09pOHZibk11WVdSdlltVXVZMjl0TDNoaGNDOHhMakF2SWlCNGJXeHVjenA0YlhCTlRUMGlhSFIwY0RvdkwyNXpMbUZrYjJKbExtTnZiUzk0WVhBdk1TNHdMMjF0THlJZ2VHMXNibk02YzNSU1pXWTlJbWgwZEhBNkx5OXVjeTVoWkc5aVpTNWpiMjB2ZUdGd0x6RXVNQzl6Vkhsd1pTOVNaWE52ZFhKalpWSmxaaU1pSUhodGNEcERjbVZoZEc5eVZHOXZiRDBpUVdSdlltVWdVR2h2ZEc5emFHOXdJRU5UTmlBb1RXRmphVzUwYjNOb0tTSWdlRzF3VFUwNlNXNXpkR0Z1WTJWSlJEMGllRzF3TG1scFpEbzNORVJETWpGR1JEUTJORU14TVVVMFFUUTRNVUk1TlROR01VUTNRekU1TnlJZ2VHMXdUVTA2Ukc5amRXMWxiblJKUkQwaWVHMXdMbVJwWkRvM05FUkRNakZHUlRRMk5FTXhNVVUwUVRRNE1VSTVOVE5HTVVRM1F6RTVOeUkrSUR4NGJYQk5UVHBFWlhKcGRtVmtSbkp2YlNCemRGSmxaanBwYm5OMFlXNWpaVWxFUFNKNGJYQXVhV2xrT2pjMFJFTXlNVVpDTkRZMFF6RXhSVFJCTkRneFFqazFNMFl4UkRkRE1UazNJaUJ6ZEZKbFpqcGtiMk4xYldWdWRFbEVQU0o0YlhBdVpHbGtPamMwUkVNeU1VWkRORFkwUXpFeFJUUkJORGd4UWprMU0wWXhSRGRETVRrM0lpOCtJRHd2Y21SbU9rUmxjMk55YVhCMGFXOXVQaUE4TDNKa1pqcFNSRVkrSUR3dmVEcDRiWEJ0WlhSaFBpQThQM2h3WVdOclpYUWdaVzVrUFNKeUlqOCsxWm92TkFBQUFXZEpSRUZVZU5xTTFNMHJSRkVZeC9FN1k1cUlRcE9VYklpeW1RV3lzQmd2SlZKSzJWZ3J5WlF0S1NVTFplbFBzQjBMWmFOWmpKVU5LMUZza0pxVXZDUzNOQXNaYzN6UDlOemlPT2ZlZWVwVGM4L2M4K3ZjOHhaVFNubU9ha0VHS2R6Z0RCWFh5NTRPTXNTd2pwTDZXOWNZc3J4ZlpXdmNVdTd5MFZkTFVDYytWWGdkMm9MaXhwZk9JT21GMTdUdEhUT296WXV1cEN4QWFOQjlEVUVmZURVYkU4YnpFWHhaZXJQMDBsOGhoM0xVaUhUSU1yNk45ajJrc1lvaWh2LzFkZXlMU1Z6S0ttMWpFVytXZlpWMkxmOGdza2pJY3djV3BPTSsrcEhDRlBMb3NnV3RvQ3lkN2pDUE9qemhHSEhMeURQWTFhY2hhSmhEeFJqNnJCd0pYVXVvTjBJRzhJSXY3T2lHQmp4YWR2QUlUdVQzcmV4NmMwU2JLQVNmbG5VY0JUM0pUVGhBanlXa0dVVnNCRUVGUjVDZXJ6WHBOSWFjckZJckpuQ0JCM211QnZraEIxVFAyN2hNL0x2eDN6bDZneEhxdTZjNzRraVU4SXhHaktKZExyclQzeGZkandBREFKYU14UDJidkQyQkFBQUFBRWxGVGtTdVFtQ0MpIGNlbnRlciBjZW50ZXIgbm8tcmVwZWF0ICMxYjMxNDk7XG59XG4iLCIvKiBtYXN0ZXIgZGV0YWlscyBzY3JlZW4gZm9yIG1vYmlsZSAqL1xuLm14LW1hc3Rlci1kZXRhaWwtc2NyZWVuIHtcbiAgICB0b3A6IDA7XG4gICAgbGVmdDogMDtcbiAgICBvdmVyZmxvdzogYXV0bztcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGJhY2tncm91bmQtY29sb3I6IHdoaXRlO1xuICAgIHdpbGwtY2hhbmdlOiB0cmFuc2Zvcm07XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLXNjcmVlbiAubXgtbWFzdGVyLWRldGFpbC1kZXRhaWxzIHtcbiAgICBwYWRkaW5nOiAxNXB4O1xufVxuXG4ubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgb3ZlcmZsb3c6IGF1dG87XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICNjY2M7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI2Y3ZjdmNztcbn1cblxuLm14LW1hc3Rlci1kZXRhaWwtc2NyZWVuLWhlYWRlci1jYXB0aW9uIHtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgZm9udC1zaXplOiAxN3B4O1xuICAgIGxpbmUtaGVpZ2h0OiAyNHB4O1xuICAgIGZvbnQtd2VpZ2h0OiA2MDA7XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLXNjcmVlbi1oZWFkZXItY2xvc2Uge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBsZWZ0OiAwO1xuICAgIHRvcDogMDtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgd2lkdGg6IDUwcHg7XG4gICAgYm9yZGVyOiBub25lO1xuICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgIGNvbG9yOiAjMDA3YWZmO1xufVxuXG5ib2R5W2Rpcj1cInJ0bFwiXSAubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyLWNsb3NlIHtcbiAgICByaWdodDogMDtcbiAgICBsZWZ0OiBhdXRvO1xufVxuXG4ubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyLWNsb3NlOjpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXFwyMDM5XCI7XG4gICAgZm9udC1zaXplOiA1MnB4O1xuICAgIGxpbmUtaGVpZ2h0OiAyNHB4O1xufVxuXG4vKiBjbGFzc2VzIGZvciBjb250ZW50IHBhZ2UgKi9cbi5teC1tYXN0ZXItZGV0YWlsLWNvbnRlbnQtZml4IHtcbiAgICBoZWlnaHQ6IDEwMHZoO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLWNvbnRlbnQtaGlkZGVuIHtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTIwMCUpO1xufVxuXG5ib2R5W2Rpcj1cInJ0bFwiXSAubXgtbWFzdGVyLWRldGFpbC1jb250ZW50LWhpZGRlbiB7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKDIwMCUpO1xufSIsIi5yZXBvcnRpbmdSZXBvcnQge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIC13ZWJraXQtYm9yZGVyLXJhZGl1czogM3B4O1xuICAgIC1tb3otYm9yZGVyLXJhZGl1czogM3B4O1xuICAgIGJvcmRlci1yYWRpdXM6IDNweDtcbn1cbiIsIi5yZXBvcnRpbmdSZXBvcnRQYXJhbWV0ZXIgdGgge1xuICAgIHRleHQtYWxpZ246IHJpZ2h0O1xufVxuIiwiLnJlcG9ydGluZ0RhdGVSYW5nZSB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdGFibGUtbGF5b3V0OiBmaXhlZDtcbn1cbi5yZXBvcnRpbmdEYXRlUmFuZ2UgdGgge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZWVlO1xufVxuLnJlcG9ydGluZ0RhdGVSYW5nZSB0ZCB7XG4gICAgcGFkZGluZzogNXB4O1xufVxuIiwiLm14LXJlcG9ydG1hdHJpeCB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbWF4LXdpZHRoOiAxMDAlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0aCwgLm14LXJlcG9ydG1hdHJpeCB0ZCB7XG4gICAgcGFkZGluZzogOHB4O1xuICAgIGxpbmUtaGVpZ2h0OiAxLjQyODU3MTQzO1xuICAgIHZlcnRpY2FsLWFsaWduOiBib3R0b207XG4gICAgYm9yZGVyOiAxcHggc29saWQgI2RkZDtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0Ym9keSB0cjpmaXJzdC1jaGlsZCB0ZCB7XG4gICAgYm9yZGVyLXRvcDogbm9uZTtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0Ym9keSB0cjpudGgtY2hpbGQoMm4rMSkgdGQge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNmOWY5Zjk7XG59XG5cbi5teC1yZXBvcnRtYXRyaXggdGJvZHkgaW1nIHtcbiAgICBtYXgtd2lkdGg6IDE2cHg7XG4gICAgbWF4LWhlaWdodDogMTZweDtcbn1cbiIsIi8qIFdBUk5JTkc6IElFOSBsaW1pdHMgbmVzdGVkIGltcG9ydHMgdG8gdGhyZWUgbGV2ZWxzIGRlZXA6IGh0dHA6Ly9qb3JnZWFsYmFsYWRlam8uY29tLzIwMTEvMDUvMjgvaW50ZXJuZXQtZXhwbG9yZXItbGltaXRzLW5lc3RlZC1pbXBvcnQtY3NzLXN0YXRlbWVudHMgKi9cblxuLyogZGlqaXQgYmFzZSAqL1xuXG4vKiBtZW5kaXggYmFzZSAqL1xuXG4vKiB3aWRnZXRzICovXG5cbi8qIHJlcG9ydGluZyAqL1xuIl0sInNvdXJjZVJvb3QiOiIifQ==*/ + /**** GENERIC PIECES ****/ @@ -12708,8 +12610,7 @@ td.visible-print { } .dj_a11y .dijitReset { - -moz-appearance: none; - /* remove predefined high-contrast styling in Firefox */ + -moz-appearance: none; /* remove predefined high-contrast styling in Firefox */ } .dijitInline { @@ -12717,8 +12618,7 @@ td.visible-print { Similar to InlineBox below, but this has fewer side-effects in Moz. Also, apparently works on a DIV as well as a FIELDSET. */ - display: inline-block; - /* webkit and FF3 */ + display: inline-block; /* webkit and FF3 */ border: 0; padding: 0; vertical-align: middle; @@ -12732,23 +12632,18 @@ table.dijitInline { .dijitHidden { /* To hide unselected panes in StackContainer etc. */ - position: absolute; - /* remove from normal document flow to simulate display: none */ - visibility: hidden; - /* hide element from view, but don't break scrolling, see #18612 */ + position: absolute; /* remove from normal document flow to simulate display: none */ + visibility: hidden; /* hide element from view, but don't break scrolling, see #18612 */ } .dijitHidden * { - visibility: hidden !important; - /* hide visibility:visible descendants of class=dijitHidden nodes, see #18799 */ + visibility: hidden !important; /* hide visibility:visible descendants of class=dijitHidden nodes, see #18799 */ } .dijitVisible { /* To show selected pane in StackContainer etc. */ - display: block !important; - /* override user's display:none setting via style setting or indirectly via class */ - position: relative; - /* to support setting width/height, see #2033 */ + display: block !important; /* override user's display:none setting via style setting or indirectly via class */ + position: relative; /* to support setting width/height, see #2033 */ visibility: visible; } @@ -12756,17 +12651,14 @@ table.dijitInline { .dijitInputContainer { /* for positioning of placeHolder */ overflow: hidden; - float: none !important; - /* needed to squeeze the INPUT in */ + float: none !important; /* needed to squeeze the INPUT in */ position: relative; } .dj_ie7 .dijitInputContainer { - float: left !important; - /* needed by IE to squeeze the INPUT in */ + float: left !important; /* needed by IE to squeeze the INPUT in */ clear: left; - display: inline-block !important; - /* to fix wrong text alignment in textdir=rtl text box */ + display: inline-block !important; /* to fix wrong text alignment in textdir=rtl text box */ } .dj_ie .dijitSelect input, @@ -12781,10 +12673,8 @@ table.dijitInline { } table.dijitSelect { - padding: 0 !important; - /* messes up border alignment */ - border-collapse: separate; - /* so jsfiddle works with Normalized CSS checked */ + padding: 0 !important; /* messes up border alignment */ + border-collapse: separate; /* so jsfiddle works with Normalized CSS checked */ } .dijitTextBox .dijitSpinnerButtonContainer, @@ -12868,8 +12758,7 @@ table.dijitSelect { .dijitContainer { /* for all layout containers */ - overflow: hidden; - /* need on IE so something can be reduced in size, and so scrollbars aren't temporarily displayed when resizing */ + overflow: hidden; /* need on IE so something can be reduced in size, and so scrollbars aren't temporarily displayed when resizing */ } /**** @@ -12887,13 +12776,11 @@ table.dijitSelect { } .dijitSpinner div.dijitArrowButtonInner { - display: block; - /* override previous rule */ + display: block; /* override previous rule */ } .dj_a11y .dijitA11ySideArrow { - display: inline !important; - /* display text instead */ + display: inline !important; /* display text instead */ cursor: pointer; } @@ -12915,8 +12802,7 @@ table.dijitSelect { } .dj_a11y .dijitCalendarDateTemplate { - padding-bottom: 0.1em !important; - /* otherwise bottom border doesn't appear on IE */ + padding-bottom: 0.1em !important; /* otherwise bottom border doesn't appear on IE */ border: 0px !important; } @@ -12933,8 +12819,7 @@ table.dijitSelect { } .dj_a11y .dijitButtonContents { - margin: 0.15em; - /* Margin needed to make focus outline visible */ + margin: 0.15em; /* Margin needed to make focus outline visible */ } .dj_a11y .dijitTextBoxReadOnly .dijitInputField, @@ -12956,8 +12841,7 @@ table.dijitSelect { background: no-repeat center; width: 12px; height: 12px; - direction: ltr; - /* needed by IE/RTL */ + direction: ltr; /* needed by IE/RTL */ } /**** @@ -12972,8 +12856,7 @@ These were added for rounded corners on dijit.form.*Button but never actually us .dijitStretch { /* Middle (stretchy) part of a 3-element border */ - white-space: nowrap; - /* MOW: move somewhere else */ + white-space: nowrap; /* MOW: move somewhere else */ background-repeat: repeat-x; } @@ -12998,13 +12881,11 @@ These were added for rounded corners on dijit.form.*Button but never actually us } .dijitButtonContents { - display: block; - /* to make focus border rectangular */ + display: block; /* to make focus border rectangular */ } td.dijitButtonContents { - display: table-cell; - /* but don't affect Select, ComboButton */ + display: table-cell; /* but don't affect Select, ComboButton */ } .dijitButtonNode img { @@ -13093,8 +12974,7 @@ div.dijitArrowButton { *******/ .dijitTextBox { border: solid black 1px; - width: 15em; - /* need to set default size on outer node since inner nodes say and . user can override */ + width: 15em; /* need to set default size on outer node since inner nodes say and . user can override */ vertical-align: middle; } @@ -13104,19 +12984,16 @@ div.dijitArrowButton { } .dj_safari .dijitTextBoxDisabled input { - color: #b0b0b0; - /* because Safari lightens disabled input/textarea no matter what color you specify */ + color: #b0b0b0; /* because Safari lightens disabled input/textarea no matter what color you specify */ } .dj_safari textarea.dijitTextAreaDisabled { - color: #333; - /* because Safari lightens disabled input/textarea no matter what color you specify */ + color: #333; /* because Safari lightens disabled input/textarea no matter what color you specify */ } .dj_gecko .dijitTextBoxReadOnly input.dijitInputField, .dj_gecko .dijitTextBoxDisabled input { - -moz-user-input: none; - /* prevent focus of disabled textbox buttons */ + -moz-user-input: none; /* prevent focus of disabled textbox buttons */ } .dijitPlaceHolder { @@ -13127,8 +13004,7 @@ div.dijitArrowButton { top: 0; left: 0; white-space: nowrap; - pointer-events: none; - /* so cut/paste context menu shows up when right clicking */ + pointer-events: none; /* so cut/paste context menu shows up when right clicking */ } .dijitTimeTextBox { @@ -13137,8 +13013,7 @@ div.dijitArrowButton { /* rules for webkit to deal with fuzzy blue focus border */ .dijitTextBox input:focus { - outline: none; - /* blue fuzzy line looks wrong on combobox or something w/validation icon showing */ + outline: none; /* blue fuzzy line looks wrong on combobox or something w/validation icon showing */ } .dijitTextBoxFocused { @@ -13147,8 +13022,7 @@ div.dijitArrowButton { .dijitSelect input, .dijitTextBox input { - float: left; - /* needed by IE to remove secret margin */ + float: left; /* needed by IE to remove secret margin */ } .dj_ie6 input.dijitTextBox, @@ -13187,10 +13061,8 @@ div.dijitArrowButton { .dj_ie .dijitSelect input, .dj_ie .dijitTextBox input, .dj_ie input.dijitTextBox { - overflow-y: visible; - /* inputs need help expanding when padding is added or line-height is adjusted */ - line-height: normal; - /* strict mode */ + overflow-y: visible; /* inputs need help expanding when padding is added or line-height is adjusted */ + line-height: normal; /* strict mode */ } .dijitSelect .dijitSelectLabel span { @@ -13216,8 +13088,7 @@ div.dijitArrowButton { .dj_iequirks .dijitTextBox input.dijitSpinnerButtonInner, .dj_iequirks .dijitTextBox input.dijitInputInner, .dj_iequirks input.dijitTextBox { - line-height: 100%; - /* IE7 problem where the icon is vertically way too low w/o this */ + line-height: 100%; /* IE7 problem where the icon is vertically way too low w/o this */ } .dj_a11y input.dijitValidationInner, @@ -13237,8 +13108,7 @@ div.dijitArrowButton { .dijitSpinner .dijitSpinnerButtonContainer, .dijitComboBox .dijitArrowButtonContainer { /* dividing line between input area and up/down button(s) for ComboBox and Spinner */ - border-width: 0 0 0 1px !important; - /* !important needed due to wayward ".theme .dijitButtonNode" rules */ + border-width: 0 0 0 1px !important; /* !important needed due to wayward ".theme .dijitButtonNode" rules */ } .dj_a11y .dijitSelect .dijitArrowButtonContainer, @@ -13258,8 +13128,7 @@ div.dijitArrowButton { } .dj_ie .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode { - clear: both; - /* IE workaround */ + clear: both; /* IE workaround */ } .dj_ie .dijitToolbar .dijitComboBox { @@ -13276,8 +13145,7 @@ div.dijitArrowButton { .dijitSpinner .dijitSpinnerButtonInner { width: 1em; - visibility: hidden !important; - /* just a sizing element */ + visibility: hidden !important; /* just a sizing element */ overflow-x: hidden; } @@ -13298,8 +13166,7 @@ div.dijitArrowButton { } .dj_a11y .dijitSpinner .dijitArrowButtonInner { - margin: 0 auto !important; - /* should auto-center */ + margin: 0 auto !important; /* should auto-center */ } .dj_ie .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField { @@ -13311,8 +13178,7 @@ div.dijitArrowButton { } .dj_ie7 .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField { - padding-left: 0 !important; - /* manually center INPUT: character is .5em and total width = 1em */ + padding-left: 0 !important; /* manually center INPUT: character is .5em and total width = 1em */ padding-right: 0 !important; width: 1em !important; } @@ -13383,8 +13249,7 @@ div.dijitArrowButton { } .dj_ie .dijitSpinner .dijitArrowButtonInner .dijitInputField { - zoom: 50%; - /* emulate transform: scale(0.5) */ + zoom: 50%; /* emulate transform: scale(0.5) */ } .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButtonInner { @@ -13396,8 +13261,7 @@ div.dijitArrowButton { } .dj_iequirks .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton { - width: 1em; - /* matches .dj_a11y .dijitTextBox .dijitSpinnerButtonContainer rule - 100% is the whole screen width in quirks */ + width: 1em; /* matches .dj_a11y .dijitTextBox .dijitSpinnerButtonContainer rule - 100% is the whole screen width in quirks */ } .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField { @@ -13466,18 +13330,15 @@ div.dijitArrowButton { dijit.ProgressBar ****/ .dijitProgressBar { - z-index: 0; - /* so z-index settings below have no effect outside of the ProgressBar */ + z-index: 0; /* so z-index settings below have no effect outside of the ProgressBar */ } .dijitProgressBarEmpty { /* outer container and background of the bar that's not finished yet*/ position: relative; overflow: hidden; - border: 1px solid black; - /* a11y: border necessary for high-contrast mode */ - z-index: 0; - /* establish a stacking context for this progress bar */ + border: 1px solid black; /* a11y: border necessary for high-contrast mode */ + z-index: 0; /* establish a stacking context for this progress bar */ } .dijitProgressBarFull { @@ -13503,8 +13364,7 @@ div.dijitArrowButton { right: 0; margin: 0; padding: 0; - width: 100%; - /* needed for IE/quirks */ + width: 100%; /* needed for IE/quirks */ height: auto; background-color: #aaa; background-attachment: fixed; @@ -13580,8 +13440,7 @@ div.dijitArrowButton { } .dj_a11y .dijitTooltipConnector { - display: none; - /* won't show b/c it's background-image; hide to avoid border gap */ + display: none; /* won't show b/c it's background-image; hide to avoid border gap */ } .dijitTooltipData { @@ -13618,16 +13477,13 @@ body .dijitAlignClient { .dijitBorderContainerNoGutter { position: relative; overflow: hidden; - z-index: 0; - /* so z-index settings below have no effect outside of the BorderContainer */ + z-index: 0; /* so z-index settings below have no effect outside of the BorderContainer */ } .dijitBorderContainerPane, .dijitBorderContainerNoGutterPane { - position: absolute !important; - /* !important to override position:relative in dijitTabContainer etc. */ - z-index: 2; - /* above the splitters so that off-by-one browser errors don't cover up border of pane */ + position: absolute !important; /* !important to override position:relative in dijitTabContainer etc. */ + z-index: 2; /* above the splitters so that off-by-one browser errors don't cover up border of pane */ } .dijitBorderContainer > .dijitTextArea { @@ -13639,8 +13495,7 @@ body .dijitAlignClient { .dijitGutter { /* gutter is just a place holder for empty space between panes in BorderContainer */ position: absolute; - font-size: 1px; - /* needed by IE6 even though div is empty, otherwise goes to 15px */ + font-size: 1px; /* needed by IE6 even though div is empty, otherwise goes to 15px */ } /* SplitContainer @@ -13651,8 +13506,7 @@ body .dijitAlignClient { .dijitSplitter { position: absolute; overflow: hidden; - z-index: 10; - /* above the panes so that splitter focus is visible on FF, see #7583*/ + z-index: 10; /* above the panes so that splitter focus is visible on FF, see #7583*/ background-color: #fff; border-color: gray; border-style: solid; @@ -13660,8 +13514,7 @@ body .dijitAlignClient { } .dj_ie .dijitSplitter { - z-index: 1; - /* behind the panes so that pane borders aren't obscured see test_Gui.html/[14392] */ + z-index: 1; /* behind the panes so that pane borders aren't obscured see test_Gui.html/[14392] */ } .dijitSplitterActive { @@ -13774,8 +13627,7 @@ body .dijitAlignClient { /* ContentPane */ .dijitContentPane { display: block; - overflow: auto; - /* if we don't have this (or overflow:hidden), then Widget.resizeTo() doesn't make sense for ContentPane */ + overflow: auto; /* if we don't have this (or overflow:hidden), then Widget.resizeTo() doesn't make sense for ContentPane */ -webkit-overflow-scrolling: touch; } @@ -13830,8 +13682,7 @@ body .dijitAlignClient { .dj_a11y .dijitFieldset .dijitArrowNodeInner { /* ... except in a11y mode, then show text arrow */ display: inline; - font-family: monospace; - /* because - and + are different widths */ + font-family: monospace; /* because - and + are different widths */ } .dj_a11y .dijitTitlePane .dijitArrowNode, @@ -13849,8 +13700,7 @@ body .dijitAlignClient { .dijitFieldsetTitleFixedClosed .dijitArrowNode, .dijitFieldsetTitleFixedClosed .dijitArrowNodeInner { /* don't show the open close icon or text arrow; it makes the user think the pane is closable */ - display: none !important; - /* !important to override above a11y rules to show text arrow */ + display: none !important; /* !important to override above a11y rules to show text arrow */ } .dj_ie6 .dijitTitlePaneContentOuter, @@ -13900,18 +13750,15 @@ body .dijitAlignClient { .dijitColorPalette .dijitPaletteImg { /* Called dijitPaletteImg for back-compat, this actually wraps the color swatch with a border and padding */ - padding: 1px; - /* white area between gray border and color swatch */ + padding: 1px; /* white area between gray border and color swatch */ border: 1px solid #999; margin: 2px 1px; cursor: default; - font-size: 1px; - /* prevent from getting bigger just to hold a character */ + font-size: 1px; /* prevent from getting bigger just to hold a character */ } .dj_gecko .dijitColorPalette .dijitPaletteImg { - padding-bottom: 0; - /* workaround rendering glitch on FF, it adds an extra pixel at the bottom */ + padding-bottom: 0; /* workaround rendering glitch on FF, it adds an extra pixel at the bottom */ } .dijitColorPalette .dijitColorPaletteSwatch { @@ -13932,8 +13779,7 @@ body .dijitAlignClient { .dijitColorPalette .dijitPaletteCell:active .dijitPaletteImg, .dijitColorPalette .dijitPaletteTable .dijitPaletteCellSelected .dijitPaletteImg { border: 2px solid #000; - margin: 1px 0; - /* reduce margin to compensate for increased border */ + margin: 1px 0; /* reduce margin to compensate for increased border */ } .dj_a11y .dijitColorPalette .dijitPaletteTable, @@ -13981,10 +13827,8 @@ body .dijitAlignClient { /* Calendar */ .dijitCalendarContainer table { - width: auto; - /* in case user has specified a width for the TABLE nodes, see #10553 */ - clear: both; - /* clear margin created for left/right month arrows; needed on IE10 for CalendarLite */ + width: auto; /* in case user has specified a width for the TABLE nodes, see #10553 */ + clear: both; /* clear margin created for left/right month arrows; needed on IE10 for CalendarLite */ } .dijitCalendarContainer th, @@ -14006,8 +13850,7 @@ body .dijitAlignClient { } .dijitCalendarYearLabel { - white-space: nowrap; - /* make sure previous, current, and next year appear on same row */ + white-space: nowrap; /* make sure previous, current, and next year appear on same row */ } .dijitCalendarNextYear { @@ -14120,8 +13963,7 @@ Hiding the focus border also works around webkit bug https://code.google.com/p/c } .dj_a11y .dijitMenuItemSelected { - border: 1px dotted black !important; - /* for 2.0 use outline instead, to prevent jitter */ + border: 1px dotted black !important; /* for 2.0 use outline instead, to prevent jitter */ } .dj_a11y .dijitMenuItemSelected .dijitMenuItemLabel { @@ -14163,21 +14005,17 @@ Hiding the focus border also works around webkit bug https://code.google.com/p/c /* CheckedMenuItem and RadioMenuItem */ .dijitMenuItemIconChar { - display: none; - /* don't display except in high contrast mode */ - visibility: hidden; - /* for high contrast mode when menuitem is unchecked: leave space for when it is checked */ + display: none; /* don't display except in high contrast mode */ + visibility: hidden; /* for high contrast mode when menuitem is unchecked: leave space for when it is checked */ } .dj_a11y .dijitMenuItemIconChar { - display: inline; - /* display character in high contrast mode, since icon doesn't show */ + display: inline; /* display character in high contrast mode, since icon doesn't show */ } .dijitCheckedMenuItemChecked .dijitMenuItemIconChar, .dijitRadioMenuItemChecked .dijitMenuItemIconChar { - visibility: visible; - /* menuitem is checked */ + visibility: visible; /* menuitem is checked */ } .dj_ie .dj_a11y .dijitMenuBar .dijitMenuItem { @@ -14187,8 +14025,7 @@ Hiding the focus border also works around webkit bug https://code.google.com/p/c /* StackContainer */ .dijitStackController .dijitToggleButtonChecked * { - cursor: default; - /* because pressing it has no effect */ + cursor: default; /* because pressing it has no effect */ } /*** @@ -14203,10 +14040,8 @@ Main class hierarchy: .dijitTabPaneWrapper - wrapper for content panes, has all borders except the one between content and tabs ***/ .dijitTabContainer { - z-index: 0; - /* so z-index settings below have no effect outside of the TabContainer */ - overflow: visible; - /* prevent off-by-one-pixel errors from hiding bottom border (opposite tab labels) */ + z-index: 0; /* so z-index settings below have no effect outside of the TabContainer */ + overflow: visible; /* prevent off-by-one-pixel errors from hiding bottom border (opposite tab labels) */ } .dj_ie6 .dijitTabContainer { @@ -14215,8 +14050,7 @@ Main class hierarchy: } .dijitTabContainerNoLayout { - width: 100%; - /* otherwise ScrollingTabController goes to 50K pixels wide */ + width: 100%; /* otherwise ScrollingTabController goes to 50K pixels wide */ } .dijitTabContainerBottom-tabs, @@ -14224,8 +14058,7 @@ Main class hierarchy: .dijitTabContainerLeft-tabs, .dijitTabContainerRight-tabs { z-index: 1; - overflow: visible !important; - /* so tabs can cover up border adjacent to container */ + overflow: visible !important; /* so tabs can cover up border adjacent to container */ } .dijitTabController { @@ -14245,8 +14078,7 @@ Main class hierarchy: width: 50000px; display: block; position: relative; - text-align: left; - /* just in case ancestor has non-standard setting */ + text-align: left; /* just in case ancestor has non-standard setting */ z-index: 1; } @@ -14270,8 +14102,7 @@ Main class hierarchy: .dijitTabContainerLeft-tabs { border-right: 1px solid black; - float: left; - /* needed for IE7 RTL mode */ + float: left; /* needed for IE7 RTL mode */ } .dijitTabContainerLeft-container { @@ -14288,8 +14119,7 @@ Main class hierarchy: .dijitTabContainerRight-tabs { border-left: 1px solid black; - float: left; - /* needed for IE7 RTL mode */ + float: left; /* needed for IE7 RTL mode */ } .dijitTabContainerRight-container { @@ -14315,35 +14145,29 @@ div.dijitTabDisabled, } .dijitTabChecked { - cursor: default; - /* because clicking will have no effect */ + cursor: default; /* because clicking will have no effect */ } .dijitTabContainerTop-tabs .dijitTab { - top: 1px; - /* to overlap border on .dijitTabContainerTop-tabs */ + top: 1px; /* to overlap border on .dijitTabContainerTop-tabs */ } .dijitTabContainerBottom-tabs .dijitTab { - top: -1px; - /* to overlap border on .dijitTabContainerBottom-tabs */ + top: -1px; /* to overlap border on .dijitTabContainerBottom-tabs */ } .dijitTabContainerLeft-tabs .dijitTab { - left: 1px; - /* to overlap border on .dijitTabContainerLeft-tabs */ + left: 1px; /* to overlap border on .dijitTabContainerLeft-tabs */ } .dijitTabContainerRight-tabs .dijitTab { - left: -1px; - /* to overlap border on .dijitTabContainerRight-tabs */ + left: -1px; /* to overlap border on .dijitTabContainerRight-tabs */ } .dijitTabContainerTop-tabs .dijitTab, .dijitTabContainerBottom-tabs .dijitTab { /* Inline-block */ - display: inline-block; - /* webkit and FF3 */ + display: inline-block; /* webkit and FF3 */ } .tabStripButton { @@ -14404,8 +14228,7 @@ div.dijitTabDisabled, /* InlineEditBox */ .dijitInlineEditBoxDisplayMode { - border: 1px solid transparent; - /* so keyline (border) on hover can appear without screen jump */ + border: 1px solid transparent; /* so keyline (border) on hover can appear without screen jump */ cursor: text; } @@ -14429,14 +14252,12 @@ div.dijitTabDisabled, /* Tree */ .dijitTree { - overflow: auto; - /* for scrollbars when Tree has a height setting, and to prevent wrapping around float elements, see #11491 */ + overflow: auto; /* for scrollbars when Tree has a height setting, and to prevent wrapping around float elements, see #11491 */ -webkit-tap-highlight-color: transparent; } .dijitTreeContainer { - float: left; - /* for correct highlighting during horizontal scroll, see #16132 */ + float: left; /* for correct highlighting during horizontal scroll, see #16132 */ } .dijitTreeIndent { @@ -14485,8 +14306,7 @@ div.dijitTabDisabled, .dijitDialog { position: absolute; z-index: 999; - overflow: hidden; - /* override overflow: auto; from ContentPane to make dragging smoother */ + overflow: hidden; /* override overflow: auto; from ContentPane to make dragging smoother */ } .dijitDialogTitleBar { @@ -14574,13 +14394,11 @@ div.dijitTabDisabled, } .dj_ie7 .dijitSliderImageHandle { - overflow: hidden; - /* IE7 workaround to make slider handle VISIBLE in non-a11y mode */ + overflow: hidden; /* IE7 workaround to make slider handle VISIBLE in non-a11y mode */ } .dj_ie7 .dj_a11y .dijitSliderImageHandle { - overflow: visible; - /* IE7 workaround to make slider handle VISIBLE in a11y mode */ + overflow: visible; /* IE7 workaround to make slider handle VISIBLE in a11y mode */ } .dj_a11y .dijitSliderFocused .dijitSliderImageHandle { @@ -14696,8 +14514,7 @@ div.dijitTabDisabled, .dijitSliderDecorationC, .dijitSliderDecorationV { - position: relative; - /* needed for IE+quirks+RTL+vertical (rendering bug) but add everywhere for custom styling consistency but this messes up IE horizontal sliders */ + position: relative; /* needed for IE+quirks+RTL+vertical (rendering bug) but add everywhere for custom styling consistency but this messes up IE horizontal sliders */ } .dijitSliderDecorationH { @@ -14722,8 +14539,7 @@ div.dijitTabDisabled, .dijitSliderButtonContainer { text-align: center; - height: 0; - /* ??? */ + height: 0; /* ??? */ } .dijitSliderButtonContainer * { @@ -14757,8 +14573,7 @@ div.dijitTabDisabled, } .dj_gecko .dijitRuleContainerV { - margin: 0 0 1px 0; - /* mozilla bug workaround for float:left,height:100% block elements */ + margin: 0 0 1px 0; /* mozilla bug workaround for float:left,height:100% block elements */ } .dijitRuleMark { @@ -14821,8 +14636,7 @@ div.dijitTabDisabled, /* + and - Slider buttons: override theme settings to display icons */ .dj_a11y .dijitSlider .dijitSliderButtonContainer div { - font-family: monospace; - /* otherwise hyphen is larger and more vertically centered */ + font-family: monospace; /* otherwise hyphen is larger and more vertically centered */ font-size: 1em; line-height: 1em; height: auto; @@ -14843,13 +14657,11 @@ div.dijitTabDisabled, /* TextArea, SimpleTextArea */ .dijitTextArea { width: 100%; - overflow-y: auto; - /* w/out this IE's SimpleTextArea goes to overflow: scroll */ + overflow-y: auto; /* w/out this IE's SimpleTextArea goes to overflow: scroll */ } .dijitTextArea[cols] { - width: auto; - /* SimpleTextArea cols */ + width: auto; /* SimpleTextArea cols */ } .dj_ie .dijitTextAreaCols { @@ -14879,8 +14691,7 @@ div.dijitTabDisabled, } .dijitEditor { - display: block; - /* prevents glitch on FF with InlineEditBox, see #8404 */ + display: block; /* prevents glitch on FF with InlineEditBox, see #8404 */ } .dijitEditorDisabled, @@ -14958,13 +14769,11 @@ div.dijitTabDisabled, .dj_ie6 .dijitToggleButtonIconChar, .dj_ie6 .tabStripButton .dijitButtonText { - font-family: "Arial Unicode MS"; - /* otherwise the a11y character (checkmark, arrow, etc.) appears as a box */ + font-family: "Arial Unicode MS"; /* otherwise the a11y character (checkmark, arrow, etc.) appears as a box */ } .dj_a11y .dijitToggleButtonChecked .dijitToggleButtonIconChar { - display: inline !important; - /* In high contrast mode, display the check symbol */ + display: inline !important; /* In high contrast mode, display the check symbol */ visibility: visible !important; } @@ -14989,8 +14798,7 @@ div.dijitTabDisabled, } .dj_ie .dijitSelect { - vertical-align: middle; - /* Set this back for what we hack in dijit inline */ + vertical-align: middle; /* Set this back for what we hack in dijit inline */ } .dj_ie6 .dijitSelect .dijitValidationContainer, @@ -15012,8 +14820,7 @@ div.dijitTabDisabled, } .dijitNumberTextBox .dijitInputInner { - text-align: inherit; - /* input */ + text-align: inherit; /* input */ } .dijitNumberTextBox input.dijitInputInner, @@ -15094,12 +14901,10 @@ div.dijitTabDisabled, /* Drag and Drop */ .dojoDndItem { - padding: 2px; - /* will be replaced by border during drag over (dojoDndItemBefore, dojoDndItemAfter) */ + padding: 2px; /* will be replaced by border during drag over (dojoDndItemBefore, dojoDndItemAfter) */ /* Prevent magnifying-glass text selection icon to appear on mobile webkit as it causes a touchout event */ -webkit-touch-callout: none; - -webkit-user-select: none; - /* Disable selection/Copy of UIWebView */ + -webkit-user-select: none; /* Disable selection/Copy of UIWebView */ } .dojoDndHorizontal .dojoDndItem { @@ -15338,15 +15143,13 @@ input[type=checkbox] { vertical-align: middle; font-size: 10px; font-weight: 600; - z-index: 1; - /* indicator should not hide behind other tab */ + z-index: 1; /* indicator should not hide behind other tab */ } /* base structure */ .mx-grid { padding: 8px; - overflow: hidden; - /* to prevent any margin from escaping grid and foobaring our size calculations */ + overflow: hidden; /* to prevent any margin from escaping grid and foobaring our size calculations */ } .mx-grid-controlbar, @@ -15494,8 +15297,7 @@ input[type=checkbox] { /* head */ .mx-datagrid th { - position: relative; - /* Required for the positioning of the column resizers */ + position: relative; /* Required for the positioning of the column resizers */ border-bottom-width: 2px; } @@ -15898,8 +15700,7 @@ input[type=checkbox] { .mx-header-center { display: inline-block; color: #eee; - line-height: 30px; - /* height of buttons */ + line-height: 30px; /* height of buttons */ } body[dir=ltr] .mx-header-left, @@ -16072,8 +15873,8 @@ body[dir=rtl] .mx-header-left { top: 0; width: 100%; padding: 1rem; - border: 1px solid hsl(200deg, 96%, 41%); - background-color: hsl(200deg, 96%, 44%); + border: 1px solid hsl(200, 96%, 41%); + background-color: hsl(200, 96%, 44%); box-shadow: 0 5px 20px rgba(1, 37, 55, 0.16); color: white; text-align: center; @@ -16433,65 +16234,46 @@ body[dir=rtl] .mx-master-detail-content-hidden { @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .dijitInline { - zoom: 1; - /* set hasLayout:true to mimic inline-block */ - display: inline; - /* don't use .dj_ie since that increases the priority */ - vertical-align: auto; - /* makes TextBox,Button line up w/native counterparts on IE6 */ + zoom: 1; /* set hasLayout:true to mimic inline-block */ + display: inline; /* don't use .dj_ie since that increases the priority */ + vertical-align: auto; /* makes TextBox,Button line up w/native counterparts on IE6 */ } - .dj_ie6 .dijitComboBox .dijitInputContainer, -.dijitInputContainer { + .dijitInputContainer { zoom: 1; } - .dijitRight { /* Right part of a 3-element border */ - display: inline; - /* IE7 sizes to outer size w/o this */ + display: inline; /* IE7 sizes to outer size w/o this */ } - .dijitButtonNode { vertical-align: auto; } - .dijitTextBox { - overflow: hidden; - /* #6027, #6067 */ + overflow: hidden; /* #6027, #6067 */ } - .dijitPlaceHolder { - filter: ""; - /* make this show up in IE6 after the rendering of the widget */ + filter: ""; /* make this show up in IE6 after the rendering of the widget */ } - .dijitValidationTextBoxError input.dijitValidationInner, -.dijitSelect input, -.dijitTextBox input.dijitArrowButtonInner { + .dijitSelect input, + .dijitTextBox input.dijitArrowButtonInner { text-indent: 0 !important; letter-spacing: -5em !important; text-align: right !important; } - .dj_a11y input.dijitValidationInner, -.dj_a11y input.dijitArrowButtonInner { + .dj_a11y input.dijitArrowButtonInner { text-align: left !important; } - .dijitSpinner .dijitSpinnerButtonContainer .dijitUpArrowButton { - bottom: 50%; - /* otherwise (on some machines) top arrow icon too close to splitter border (IE6/7) */ + bottom: 50%; /* otherwise (on some machines) top arrow icon too close to splitter border (IE6/7) */ } - .dijitTabContainerTop-tabs .dijitTab, -.dijitTabContainerBottom-tabs .dijitTab { - zoom: 1; - /* set hasLayout:true to mimic inline-block */ - display: inline; - /* don't use .dj_ie since that increases the priority */ + .dijitTabContainerBottom-tabs .dijitTab { + zoom: 1; /* set hasLayout:true to mimic inline-block */ + display: inline; /* don't use .dj_ie since that increases the priority */ } - .dojoDndHorizontal .dojoDndItem { /* make contents of horizontal container be side by side, rather than vertical */ display: inline; @@ -17913,7 +17695,6 @@ body { width: 100%; height: 100%; } - .loginpage-image { height: 100%; animation: makePointer 1s ease-out both; @@ -17921,11 +17702,9 @@ body { -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%); clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%); } - .loginpage-logo > svg { width: 150px; } - .loginpage-formwrapper { width: 400px; } @@ -18133,25 +17912,23 @@ textarea.form-control { } @media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 0) { input[type=date], -input[type=time], -input[type=datetime-local], -input[type=month] { + input[type=time], + input[type=datetime-local], + input[type=month] { line-height: 1; } - input[type=time]:not(.has-value):before, -input[type=date]:not(.has-value):before, -input[type=month]:not(.has-value):before, -input[type=datetime-local]:not(.has-value):before { + input[type=date]:not(.has-value):before, + input[type=month]:not(.has-value):before, + input[type=datetime-local]:not(.has-value):before { margin-right: 0.5em; content: attr(placeholder) !important; color: #aaaaaa; } - input[type=time].has-value:before, -input[type=date].has-value:before, -input[type=month].has-value:before, -input[type=datetime-local].has-value:before { + input[type=date].has-value:before, + input[type=month].has-value:before, + input[type=datetime-local].has-value:before { content: "" !important; } } @@ -21279,19 +21056,19 @@ input[type=radio] + label { } @media (max-width: calc(768px - 1px)) { .mx-scrollcontainer .mx-placeholder .mx-layoutgrid, -.mx-scrollcontainer .mx-placeholder .mx-layoutgrid-fluid { + .mx-scrollcontainer .mx-placeholder .mx-layoutgrid-fluid { padding: 16px 16px 16px 16px; } } @media (min-width: 768px) { .mx-scrollcontainer .mx-placeholder .mx-layoutgrid, -.mx-scrollcontainer .mx-placeholder .mx-layoutgrid-fluid { + .mx-scrollcontainer .mx-placeholder .mx-layoutgrid-fluid { padding: 24px 24px 24px 24px; } } @media (min-width: 992px) { .mx-scrollcontainer .mx-placeholder .mx-layoutgrid, -.mx-scrollcontainer .mx-placeholder .mx-layoutgrid-fluid { + .mx-scrollcontainer .mx-placeholder .mx-layoutgrid-fluid { padding: 24px 24px 24px 24px; } } @@ -21488,8 +21265,8 @@ input[type=radio] + label { text-align: center; } .tab-wizard.mx-tabcontainer > .mx-tabcontainer-tabs > li > a { - width: calc((16px * 2) + 1px); - height: calc((16px * 2) + 1px); + width: calc(16px * 2 + 1px); + height: calc(16px * 2 + 1px); margin: auto; padding: 0; text-align: center; @@ -22449,190 +22226,150 @@ h6, flex-grow: 1; max-width: 100%; } - .col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; } - .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } - .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } - .col-sm-3 { flex: 0 0 25%; max-width: 25%; } - .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } - .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } - .col-sm-6 { flex: 0 0 50%; max-width: 50%; } - .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } - .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } - .col-sm-9 { flex: 0 0 75%; max-width: 75%; } - .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } - .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } - .col-sm-12 { flex: 0 0 100%; max-width: 100%; } - .order-sm-first { order: -1; } - .order-sm-last { order: 13; } - .order-sm-0 { order: 0; } - .order-sm-1 { order: 1; } - .order-sm-2 { order: 2; } - .order-sm-3 { order: 3; } - .order-sm-4 { order: 4; } - .order-sm-5 { order: 5; } - .order-sm-6 { order: 6; } - .order-sm-7 { order: 7; } - .order-sm-8 { order: 8; } - .order-sm-9 { order: 9; } - .order-sm-10 { order: 10; } - .order-sm-11 { order: 11; } - .order-sm-12 { order: 12; } - .offset-sm-0, -.col-sm-offset-0 { + .col-sm-offset-0 { margin-left: 0; } - .offset-sm-1, -.col-sm-offset-1 { + .col-sm-offset-1 { margin-left: 8.333333%; } - .offset-sm-2, -.col-sm-offset-2 { + .col-sm-offset-2 { margin-left: 16.666667%; } - .offset-sm-3, -.col-sm-offset-3 { + .col-sm-offset-3 { margin-left: 25%; } - .offset-sm-4, -.col-sm-offset-4 { + .col-sm-offset-4 { margin-left: 33.333333%; } - .offset-sm-5, -.col-sm-offset-5 { + .col-sm-offset-5 { margin-left: 41.666667%; } - .offset-sm-6, -.col-sm-offset-6 { + .col-sm-offset-6 { margin-left: 50%; } - .offset-sm-7, -.col-sm-offset-7 { + .col-sm-offset-7 { margin-left: 58.333333%; } - .offset-sm-8, -.col-sm-offset-8 { + .col-sm-offset-8 { margin-left: 66.666667%; } - .offset-sm-9, -.col-sm-offset-9 { + .col-sm-offset-9 { margin-left: 75%; } - .offset-sm-10, -.col-sm-offset-10 { + .col-sm-offset-10 { margin-left: 83.333333%; } - .offset-sm-11, -.col-sm-offset-11 { + .col-sm-offset-11 { margin-left: 91.666667%; } } @@ -22642,190 +22379,150 @@ h6, flex-grow: 1; max-width: 100%; } - .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; } - .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } - .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } - .col-md-3 { flex: 0 0 25%; max-width: 25%; } - .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } - .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } - .col-md-6 { flex: 0 0 50%; max-width: 50%; } - .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } - .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } - .col-md-9 { flex: 0 0 75%; max-width: 75%; } - .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } - .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } - .col-md-12 { flex: 0 0 100%; max-width: 100%; } - .order-md-first { order: -1; } - .order-md-last { order: 13; } - .order-md-0 { order: 0; } - .order-md-1 { order: 1; } - .order-md-2 { order: 2; } - .order-md-3 { order: 3; } - .order-md-4 { order: 4; } - .order-md-5 { order: 5; } - .order-md-6 { order: 6; } - .order-md-7 { order: 7; } - .order-md-8 { order: 8; } - .order-md-9 { order: 9; } - .order-md-10 { order: 10; } - .order-md-11 { order: 11; } - .order-md-12 { order: 12; } - .offset-md-0, -.col-md-offset-0 { + .col-md-offset-0 { margin-left: 0; } - .offset-md-1, -.col-md-offset-1 { + .col-md-offset-1 { margin-left: 8.333333%; } - .offset-md-2, -.col-md-offset-2 { + .col-md-offset-2 { margin-left: 16.666667%; } - .offset-md-3, -.col-md-offset-3 { + .col-md-offset-3 { margin-left: 25%; } - .offset-md-4, -.col-md-offset-4 { + .col-md-offset-4 { margin-left: 33.333333%; } - .offset-md-5, -.col-md-offset-5 { + .col-md-offset-5 { margin-left: 41.666667%; } - .offset-md-6, -.col-md-offset-6 { + .col-md-offset-6 { margin-left: 50%; } - .offset-md-7, -.col-md-offset-7 { + .col-md-offset-7 { margin-left: 58.333333%; } - .offset-md-8, -.col-md-offset-8 { + .col-md-offset-8 { margin-left: 66.666667%; } - .offset-md-9, -.col-md-offset-9 { + .col-md-offset-9 { margin-left: 75%; } - .offset-md-10, -.col-md-offset-10 { + .col-md-offset-10 { margin-left: 83.333333%; } - .offset-md-11, -.col-md-offset-11 { + .col-md-offset-11 { margin-left: 91.666667%; } } @@ -22835,190 +22532,150 @@ h6, flex-grow: 1; max-width: 100%; } - .col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; } - .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } - .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } - .col-lg-3 { flex: 0 0 25%; max-width: 25%; } - .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } - .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } - .col-lg-6 { flex: 0 0 50%; max-width: 50%; } - .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } - .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } - .col-lg-9 { flex: 0 0 75%; max-width: 75%; } - .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } - .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } - .col-lg-12 { flex: 0 0 100%; max-width: 100%; } - .order-lg-first { order: -1; } - .order-lg-last { order: 13; } - .order-lg-0 { order: 0; } - .order-lg-1 { order: 1; } - .order-lg-2 { order: 2; } - .order-lg-3 { order: 3; } - .order-lg-4 { order: 4; } - .order-lg-5 { order: 5; } - .order-lg-6 { order: 6; } - .order-lg-7 { order: 7; } - .order-lg-8 { order: 8; } - .order-lg-9 { order: 9; } - .order-lg-10 { order: 10; } - .order-lg-11 { order: 11; } - .order-lg-12 { order: 12; } - .offset-lg-0, -.col-lg-offset-0 { + .col-lg-offset-0 { margin-left: 0; } - .offset-lg-1, -.col-lg-offset-1 { + .col-lg-offset-1 { margin-left: 8.333333%; } - .offset-lg-2, -.col-lg-offset-2 { + .col-lg-offset-2 { margin-left: 16.666667%; } - .offset-lg-3, -.col-lg-offset-3 { + .col-lg-offset-3 { margin-left: 25%; } - .offset-lg-4, -.col-lg-offset-4 { + .col-lg-offset-4 { margin-left: 33.333333%; } - .offset-lg-5, -.col-lg-offset-5 { + .col-lg-offset-5 { margin-left: 41.666667%; } - .offset-lg-6, -.col-lg-offset-6 { + .col-lg-offset-6 { margin-left: 50%; } - .offset-lg-7, -.col-lg-offset-7 { + .col-lg-offset-7 { margin-left: 58.333333%; } - .offset-lg-8, -.col-lg-offset-8 { + .col-lg-offset-8 { margin-left: 66.666667%; } - .offset-lg-9, -.col-lg-offset-9 { + .col-lg-offset-9 { margin-left: 75%; } - .offset-lg-10, -.col-lg-offset-10 { + .col-lg-offset-10 { margin-left: 83.333333%; } - .offset-lg-11, -.col-lg-offset-11 { + .col-lg-offset-11 { margin-left: 91.666667%; } } @@ -23028,190 +22685,150 @@ h6, flex-grow: 1; max-width: 100%; } - .col-xl-auto { flex: 0 0 auto; width: auto; max-width: 100%; } - .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } - .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } - .col-xl-3 { flex: 0 0 25%; max-width: 25%; } - .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } - .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } - .col-xl-6 { flex: 0 0 50%; max-width: 50%; } - .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } - .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } - .col-xl-9 { flex: 0 0 75%; max-width: 75%; } - .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } - .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } - .col-xl-12 { flex: 0 0 100%; max-width: 100%; } - .order-xl-first { order: -1; } - .order-xl-last { order: 13; } - .order-xl-0 { order: 0; } - .order-xl-1 { order: 1; } - .order-xl-2 { order: 2; } - .order-xl-3 { order: 3; } - .order-xl-4 { order: 4; } - .order-xl-5 { order: 5; } - .order-xl-6 { order: 6; } - .order-xl-7 { order: 7; } - .order-xl-8 { order: 8; } - .order-xl-9 { order: 9; } - .order-xl-10 { order: 10; } - .order-xl-11 { order: 11; } - .order-xl-12 { order: 12; } - .offset-xl-0, -.col-xl-offset-0 { + .col-xl-offset-0 { margin-left: 0; } - .offset-xl-1, -.col-xl-offset-1 { + .col-xl-offset-1 { margin-left: 8.333333%; } - .offset-xl-2, -.col-xl-offset-2 { + .col-xl-offset-2 { margin-left: 16.666667%; } - .offset-xl-3, -.col-xl-offset-3 { + .col-xl-offset-3 { margin-left: 25%; } - .offset-xl-4, -.col-xl-offset-4 { + .col-xl-offset-4 { margin-left: 33.333333%; } - .offset-xl-5, -.col-xl-offset-5 { + .col-xl-offset-5 { margin-left: 41.666667%; } - .offset-xl-6, -.col-xl-offset-6 { + .col-xl-offset-6 { margin-left: 50%; } - .offset-xl-7, -.col-xl-offset-7 { + .col-xl-offset-7 { margin-left: 58.333333%; } - .offset-xl-8, -.col-xl-offset-8 { + .col-xl-offset-8 { margin-left: 66.666667%; } - .offset-xl-9, -.col-xl-offset-9 { + .col-xl-offset-9 { margin-left: 75%; } - .offset-xl-10, -.col-xl-offset-10 { + .col-xl-offset-10 { margin-left: 83.333333%; } - .offset-xl-11, -.col-xl-offset-11 { + .col-xl-offset-11 { margin-left: 91.666667%; } } @@ -24170,195 +23787,155 @@ h6, } @media (max-width: calc(576px - 1px)) { .hide-xs, -.hidden-xs, -.d-xs-none { + .hidden-xs, + .d-xs-none { display: none !important; } - .d-xs-flex { display: flex !important; } - .d-xs-inline-flex { display: inline-flex !important; } - .d-xs-inline { display: inline !important; } - .d-xs-inline-block { display: inline-block !important; } - .d-xs-block { display: block !important; } - .d-xs-table { display: table !important; } - .d-xs-table-row { display: table-row !important; } - .d-xs-table-cell { display: table-cell !important; } } @media (min-width: 576px) and (max-width: calc(768px - 1px)) { .hide-sm, -.hidden-sm, -.d-sm-none { + .hidden-sm, + .d-sm-none { display: none !important; } - .d-sm-flex { display: flex !important; } - .d-sm-inline-flex { display: inline-flex !important; } - .d-sm-inline { display: inline !important; } - .d-sm-inline-block { display: inline-block !important; } - .d-sm-block { display: block !important; } - .d-sm-table { display: table !important; } - .d-sm-table-row { display: table-row !important; } - .d-sm-table-cell { display: table-cell !important; } } @media (min-width: 768px) and (max-width: calc(992px - 1px)) { .hide-md, -.hidden-md, -.d-md-none { + .hidden-md, + .d-md-none { display: none !important; } - .d-md-flex { display: flex !important; } - .d-md-inline-flex { display: inline-flex !important; } - .d-md-inline { display: inline !important; } - .d-md-inline-block { display: inline-block !important; } - .d-md-block { display: block !important; } - .d-md-table { display: table !important; } - .d-md-table-row { display: table-row !important; } - .d-md-table-cell { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1200px) { .hide-lg, -.hidden-lg, -.d-lg-none { + .hidden-lg, + .d-lg-none { display: none !important; } - .d-lg-flex { display: flex !important; } - .d-lg-inline-flex { display: inline-flex !important; } - .d-lg-inline { display: inline !important; } - .d-lg-inline-block { display: inline-block !important; } - .d-lg-block { display: block !important; } - .d-lg-table { display: table !important; } - .d-lg-table-row { display: table-row !important; } - .d-lg-table-cell { display: table-cell !important; } } @media (min-width: 1200px) { .hide-xl, -.hidden-xl, -.d-xl-none { + .hidden-xl, + .d-xl-none { display: none !important; } - .d-xl-flex { display: flex !important; } - .d-xl-inline-flex { display: inline-flex !important; } - .d-xl-inline { display: inline !important; } - .d-xl-inline-block { display: inline-block !important; } - .d-xl-block { display: block !important; } - .d-xl-table { display: table !important; } - .d-xl-table-row { display: table-row !important; } - .d-xl-table-cell { display: table-cell !important; } @@ -25412,31 +24989,31 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw ========================================================================== */ @media (min-width: 768px) { .layout-atlas-responsive, -.layout-atlas-responsive-default { + .layout-atlas-responsive-default { --closed-sidebar-width: 52px; } .layout-atlas-responsive .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar, -.layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar, -.layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar, -.layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar, -.layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar, -.layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar { + .layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar, + .layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar, + .layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar, + .layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar, + .layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar { width: 52px !important; } .layout-atlas-responsive .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, -.layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, -.layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, -.layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, -.layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, -.layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a { + .layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, + .layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, + .layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, + .layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a, + .layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items a { white-space: nowrap; } .layout-atlas-responsive .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul { + .layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul { position: absolute; z-index: 100; top: 0; @@ -25447,28 +25024,28 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw padding: 8px 0; } .layout-atlas-responsive .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, -.layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul { + .layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul, + .layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items:hover > ul > li.mx-navigationtree-has-items:hover > ul { left: 100%; } .layout-atlas-responsive .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, .layout-atlas-responsive .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, -.layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, -.layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, -.layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, -.layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, -.layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, -.layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, -.layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, -.layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, -.layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, -.layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul { + .layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, + .layout-atlas-responsive .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, + .layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, + .layout-atlas-responsive .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, + .layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, + .layout-atlas-responsive-default .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, + .layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, + .layout-atlas-responsive-default .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul, + .layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-collapsed ul, + .layout-atlas-responsive-default .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar .mx-scrollcontainer-wrapper .mx-navigationtree ul li.mx-navigationtree-has-items ul { display: none; } .layout-atlas-responsive .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-has-items:hover ul, -.layout-atlas-responsive-default .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-has-items:hover ul { + .layout-atlas-responsive-default .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-has-items:hover ul { position: absolute; z-index: 100; top: 0; @@ -25480,8 +25057,8 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw padding: 8px 0; } .layout-atlas-responsive .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-collapsed ul, .layout-atlas-responsive .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-has-items ul, -.layout-atlas-responsive-default .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-collapsed ul, -.layout-atlas-responsive-default .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-has-items ul { + .layout-atlas-responsive-default .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-collapsed ul, + .layout-atlas-responsive-default .widget-sidebar:not(.widget-sidebar-expanded) .mx-navigationtree ul li.mx-navigationtree-has-items ul { display: none; } } @@ -25505,11 +25082,11 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw } @media (max-width: calc(768px - 1px)) { .layout-atlas-responsive .mx-scrollcontainer-open:not(.mx-scrollcontainer-slide), -.layout-atlas-responsive-default .mx-scrollcontainer-open:not(.mx-scrollcontainer-slide) { + .layout-atlas-responsive-default .mx-scrollcontainer-open:not(.mx-scrollcontainer-slide) { width: 1100px; } .layout-atlas-responsive .mx-scrollcontainer-slide .toggle-btn, -.layout-atlas-responsive-default .mx-scrollcontainer-slide .toggle-btn { + .layout-atlas-responsive-default .mx-scrollcontainer-slide .toggle-btn { display: inline-block !important; } } @@ -26080,7 +25657,7 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw .wizard-arrow .wizard-step { height: 48px; - margin-left: calc(0px - (48px / 2)); + margin-left: calc(0px - 48px / 2); padding-left: 24px; background-color: #fff; justify-content: flex-start; @@ -26090,14 +25667,14 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw position: absolute; z-index: 1; left: 100%; - margin-left: calc(0px - ((48px / 2) - 1px)); + margin-left: calc(0px - (48px / 2 - 1px)); content: " "; border-style: solid; border-color: transparent; } .wizard-arrow .wizard-step::after { top: 0; - border-width: calc((48px / 2) - 1px); + border-width: calc(48px / 2 - 1px); border-left-color: #fff; } .wizard-arrow .wizard-step::before { @@ -26722,8 +26299,7 @@ Space between the fields and the popup justify-content: center; width: 20px; height: 20px; - padding-left: 4px; - /* The font has spaces in the right side, so to align in the middle we need this */ + padding-left: 4px; /* The font has spaces in the right side, so to align in the middle we need this */ } .filter-selector .filter-selector-content .filter-selectors { position: absolute; @@ -27096,8 +26672,7 @@ div:not(.table-compact) > .table .th .dropdown-container .dropdown-list { } .sticky-sentinel.container-stuck + .widget-datagrid-grid .th, .sticky-sentinel.container-stuck + .table .th { - position: -webkit-sticky; - /* Safari */ + position: -webkit-sticky; /* Safari */ position: sticky; z-index: 50; } diff --git a/resources/App/theme-cache/web/theme.compiled.css.map b/resources/App/theme-cache/web/theme.compiled.css.map index fbcfe46..04c472f 100644 --- a/resources/App/theme-cache/web/theme.compiled.css.map +++ b/resources/App/theme-cache/web/theme.compiled.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["../../themesource/atlas_core/web/main.scss","../../deployment/sass/Atlas_Core.Atlas_Filled.scss","../../deployment/sass/Atlas_Core.Atlas.scss","../../themesource/administration/web/main.scss","../../themesource/feedbackmodule/web/main.scss","../../themesource/feedbackmodule/web/_lightbox.scss","../../themesource/feedbackmodule/web/includes/_variables.scss","../../themesource/feedbackmodule/web/includes/_helpers.scss","../../themesource/feedbackmodule/web/_startButton.scss","../../themesource/feedbackmodule/web/includes/_atlasVariables.scss","../../themesource/feedbackmodule/web/annotation/_annotation-canvas.scss","../../themesource/feedbackmodule/web/annotation/_annotation-frame.scss","../../themesource/feedbackmodule/web/_failed.scss","../../themesource/feedbackmodule/web/_result.scss","../../themesource/feedbackmodule/web/_feedbackForm.scss","../../themesource/feedbackmodule/web/dialog/_dialog.scss","../../themesource/feedbackmodule/web/dialog/_underlay.scss","../../themesource/feedbackmodule/web/dialog/_closeButton.scss","../../themesource/feedbackmodule/web/toolbar/_toolbar.scss","../../themesource/feedbackmodule/web/toolbar/_toolButton.scss","../../themesource/feedbackmodule/web/_labelGroup.scss","../../themesource/feedbackmodule/web/button/_buttonGroup.scss","../../themesource/feedbackmodule/web/button/_button.scss","../../themesource/feedbackmodule/web/_screenshotPreview.scss","../../themesource/feedbackmodule/web/_tooltip.scss","../../themesource/webactions/web/_take-picture.scss","../../themesource/atlas_core/web/_variables-css-mappings.scss","../../themesource/atlas_core/web/core/_legacy/bootstrap/_bootstrap.scss","../../themesource/atlas_core/web/core/_legacy/bootstrap/_bootstrap-rtl.scss","../../themesource/atlas_core/web/core/_legacy/_mxui.scss","../../themesource/atlas_core/web/core/base/_animation.scss","../../themesource/atlas_core/web/core/base/_flex.scss","../../theme/web/custom-variables.scss","../../themesource/atlas_core/web/core/base/_spacing.scss","../../themesource/atlas_core/web/core/base/mixins/_spacing.scss","../../themesource/atlas_core/web/core/base/mixins/_layout-spacing.scss","../../themesource/atlas_core/web/core/base/_base.scss","../../themesource/atlas_core/web/core/base/_login.scss","../../themesource/atlas_core/web/core/widgets/_input.scss","../../themesource/atlas_core/web/core/helpers/_background.scss","../../themesource/atlas_core/web/core/widgets/_label.scss","../../themesource/atlas_core/web/core/widgets/_badge.scss","../../themesource/atlas_core/web/core/helpers/_label.scss","../../themesource/atlas_core/web/core/widgets/_badge-button.scss","../../themesource/atlas_core/web/core/helpers/_badge-button.scss","../../themesource/atlas_core/web/core/widgets/_button.scss","../../themesource/atlas_core/web/core/helpers/_button.scss","../../themesource/atlas_core/web/core/base/mixins/_buttons.scss","../../themesource/atlas_core/web/core/widgets/_check-box.scss","../../themesource/atlas_core/web/core/widgets/_grid.scss","../../themesource/atlas_core/web/core/widgets/_data-grid.scss","../../themesource/atlas_core/web/core/base/mixins/_animations.scss","../../themesource/atlas_core/web/core/helpers/_data-grid.scss","../../themesource/atlas_core/web/core/widgets/_data-view.scss","../../themesource/atlas_core/web/core/widgets/_date-picker.scss","../../themesource/atlas_core/web/core/widgets/_header.scss","../../themesource/atlas_core/web/core/widgets/_glyphicon.scss","../../themesource/atlas_core/web/core/widgets/_group-box.scss","../../themesource/atlas_core/web/core/helpers/_group-box.scss","../../themesource/atlas_core/web/core/base/mixins/_groupbox.scss","../../themesource/atlas_core/web/_variables.scss","../../themesource/atlas_core/web/core/helpers/_image.scss","../../themesource/atlas_core/web/core/widgets/_list-view.scss","../../themesource/atlas_core/web/core/helpers/_list-view.scss","../../themesource/atlas_core/web/core/widgets/_modal.scss","../../themesource/atlas_core/web/core/widgets/_navigation-bar.scss","../../themesource/atlas_core/web/core/helpers/_navigation-bar.scss","../../themesource/atlas_core/web/core/widgets/_navigation-list.scss","../../themesource/atlas_core/web/core/widgets/_navigation-tree.scss","../../themesource/atlas_core/web/core/helpers/_navigation-tree.scss","../../themesource/atlas_core/web/core/widgets/_pop-up-menu.scss","../../themesource/atlas_core/web/core/widgets/_simple-menu-bar.scss","../../themesource/atlas_core/web/core/helpers/_simple-menu-bar.scss","../../themesource/atlas_core/web/core/widgets/_radio-button.scss","../../themesource/atlas_core/web/core/widgets/_scroll-container-dojo.scss","../../themesource/atlas_core/web/core/widgets/_tab-container.scss","../../themesource/atlas_core/web/core/helpers/_tab-container.scss","../../themesource/atlas_core/web/core/widgets/_table.scss","../../themesource/atlas_core/web/core/helpers/_table.scss","../../themesource/atlas_core/web/core/widgets/_template-grid.scss","../../themesource/atlas_core/web/core/helpers/_template-grid.scss","../../themesource/atlas_core/web/core/widgets/_typography.scss","../../themesource/atlas_core/web/core/helpers/_typography.scss","../../themesource/atlas_core/web/core/widgets/_layout-grid.scss","../../themesource/atlas_core/web/core/widgets/_pagination.scss","../../themesource/atlas_core/web/core/widgets/_progress.scss","../../themesource/atlas_core/web/core/widgets/_progress-bar.scss","../../themesource/atlas_core/web/core/helpers/_progress-bar.scss","../../themesource/atlas_core/web/core/widgets/_progress-circle.scss","../../themesource/atlas_core/web/core/helpers/_progress-circle.scss","../../themesource/atlas_core/web/core/widgets/_rating.scss","../../themesource/atlas_core/web/core/helpers/_rating.scss","../../themesource/atlas_core/web/core/widgets/_range-slider.scss","../../themesource/atlas_core/web/core/helpers/_slider-color-variant.scss","../../themesource/atlas_core/web/core/helpers/_range-slider.scss","../../themesource/atlas_core/web/core/widgets/_slider.scss","../../themesource/atlas_core/web/core/helpers/_slider.scss","../../themesource/atlas_core/web/core/widgets/_timeline.scss","../../themesource/atlas_core/web/core/widgets/_tooltip.scss","../../themesource/atlas_core/web/core/helpers/_helper-classes.scss","../../themesource/atlas_core/web/core/widgets/_barcode-scanner.scss","../../themesource/atlas_core/web/core/widgets/_accordion.scss","../../themesource/atlas_core/web/core/helpers/_accordion.scss","../../themesource/atlas_core/web/core/widgetscustom/_dijit-widget.scss","../../themesource/atlas_core/web/core/widgets/_switch.scss","../../themesource/atlas_core/web/layouts/_layout-atlas.scss","../../themesource/atlas_core/web/layouts/_layout-atlas-phone.scss","../../themesource/atlas_core/web/layouts/_layout-atlas-responsive.scss","../../themesource/atlas_core/web/layouts/_layout-atlas-tablet.scss","../../themesource/atlas_web_content/web/buildingblocks/_alert.scss","../../themesource/atlas_web_content/web/buildingblocks/_breadcrumb.scss","../../themesource/atlas_web_content/web/buildingblocks/_card.scss","../../themesource/atlas_web_content/web/buildingblocks/_chat.scss","../../themesource/atlas_web_content/web/buildingblocks/_controlgroup.scss","../../themesource/atlas_web_content/web/buildingblocks/_pageblocks.scss","../../themesource/atlas_web_content/web/buildingblocks/_pageheader.scss","../../themesource/atlas_web_content/web/buildingblocks/_heroheader.scss","../../themesource/atlas_web_content/web/buildingblocks/_formblock.scss","../../themesource/atlas_web_content/web/buildingblocks/_master-detail.scss","../../themesource/atlas_web_content/web/buildingblocks/_userprofile.scss","../../themesource/atlas_web_content/web/buildingblocks/_wizard.scss","../../themesource/atlas_web_content/web/pagetemplates/_login.scss","../../themesource/atlas_web_content/web/pagetemplates/_list-tab.scss","../../themesource/atlas_web_content/web/pagetemplates/_springboard.scss","../../themesource/atlas_web_content/web/pagetemplates/_statuspage.scss","../../themesource/datawidgets/web/_datagrid.scss","../../themesource/datawidgets/web/_date-picker.scss","../../themesource/datawidgets/web/_datagrid-filters.scss","../../themesource/datawidgets/web/_datagrid-design-properties.scss","../../themesource/datawidgets/web/_datagrid-scroll.scss","../../themesource/datawidgets/web/_drop-down-sort.scss","../../themesource/datawidgets/web/_gallery.scss","../../themesource/datawidgets/web/_gallery-design-properties.scss","../../themesource/datawidgets/web/_three-state-checkbox.scss","../../themesource/datawidgets/web/_tree-node.scss","../../themesource/datawidgets/web/_tree-node-design-properties.scss"],"names":[],"mappings":";AAUY;ACVZ;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACnlCF;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACjlCE;EACI;;AAYJ;EACI;;AAGJ;EACI;EACA;EACA;;;ACtBR;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;ACLA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCImC;EDHnC,SCT0B;;ADW1B;EACI;EACA;EACA;;AEdH;EFWD;IAMQ;;;AAKJ;EACI;EACA,QCDc;;;AEvB1B;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCFY;EDGZ,OCoBgB;EDnBhB,WCOkB;EDNlB,YFK6B;EEJ7B,SFf8B;;AEiB9B;EAEI,kBCYe;;;AC7BvB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBJK4C;;AIH5C;EACI;EACA,YD2BU;;;AEzClB;EACI;EACA;EACA;EACA;EACA;EACA,SLHuB;;;AMHvB;EACI;EACA,QHmCQ;;AGhCZ;EACI;;;ACLN;EACI;EACA;EACA;;AAGJ;EACE;;AAGF;EACE;;;ACbA;EACI;;;AVkBR;AAAA;AAAA;AAAA;AAAA;AWjBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,SN+BY;EM9BZ,OTHsB;ESItB;EACA;EACA,kBNSiB;EMRjB;EACA,eNGoB;EMFpB;EACA;EACA,STjB0B;;ASmB1B;EACI,WNGU;EMFV,aNKe;EMJf;EACA;EACA,ONVa;EMWb;;;ACzBR;EACI;EACA,SVF0B;;;AWC9B;EACI,ORoCa;EQnCb;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA,OREa;EQDb,QRCa;;AQEjB;EACI,MRcY;;;AS/BpB;EACI;EACA;EACA;EACA,KTuCU;EStCV,KTmCa;ESlCb;EACA;EACA;EACA,kBTYiB;ESXjB;EACA,eTMoB;ESLpB,WTYc;ESXd;EACA,SZXuB;;AYavB;EACI;;AAGJ;EACI;;;ACrBR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OVFQ;;AUKZ;EACI,OVgBe;;AUbnB;EACI;EACA;EACA;;AAGJ;EACI,ObEkB;EaDlB,QbCkB;EaAlB;;AAGJ;EACI,YVMU;EULV;;AAGJ;EACI,MVnCM;EUoCN;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA,KVPM;EUQN;EACA;EACA;EACA;EACA,SVlBQ;EUmBR,YVnCa;EUoCb;EACA,eVzCgB;EU0ChB,ObnDU;EaoDV;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIA;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;Aa6DZ;EACI;EACA;EACA,QV/DQ;;AUmEhB;EACI;EACA;EACA,eVpFgB;EUqFhB;;AAEA;EACI,kBVtGC;;AUyGL;EACI;EACA;;AAGJ;EACI,kBVhHL;;AUmHC;EACI;EACA;EACA;EACA;EACA;;AAKI;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;;Ac1CvB;EACI;EACA;EACA;EACA,eXgCc;;AW9Bd;EACI;;;ACNR;EACI;EACA;EACA,KZuCU;;AYrCV;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;Ad1BH;EcyBD;IAIQ;;;;AC7BZ;EACI;EACA;EACA;EACA,KbsCU;;AapCV;EACI,OhBgBkB;EgBflB,QhBekB;EgBdlB;;;ACVR;EACI;EACA;EACA,QjBMmC;EiBLnC;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA,edKgB;;AcFpB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBd3BM;Ec4BN;EACA,edZgB;;AcchB;EACI;;AAGJ;EACI;;AAIR;EACI,OjBhBkB;EiBiBlB,QjBjBkB;EiBkBlB,MdtCO;;AcyCX;EACI;EACA;EACA;EACA;EACA,OjB1BkB;EiB2BlB,QjB3BkB;EiB4BlB,QdpDI;EcqDJ,MdjDO;EckDP;EACA;;;ACvDR;EAEI;EACA;;AAEA;EACI,OlBiBkB;EkBhBlB,QlBgBkB;;AkBdlB;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA,OlBbmB;EkBcnB;EACA;EACA;EACA;EACA,kBfzBM;Ee0BN,OfOc;EeNd,WfHU;EeIV;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,MAlCE;EAmCF;EACA;EACA;EACA;EACA;EACA;;;AC5CZ;AAAA;AAAA;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACA;EACA;;;AAEJ;EACI;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;AACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;AACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;AACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;AAGA;EACI;;;ACvJJ;AACI;AAAA;AAAA;AAAA;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAgBA;AACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;AAA0C;AAE1C;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;AACA;EACA;EACA;EACA;AAEA;EACA;EACA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;AAEA;AACA;;AAAA;EAGA;EACA;EAEA;EACA;EACA;AAAoD;EAEpD;EACA;EACA;EAEA;EACA;EACA;AAEA;EACA;EACA;EACA;AAAoD;EAEpD;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;AAAkC;EAClC;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;EAEA;EACA;EACA;EACA;EACA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;AAEA;AACA;AAEA;EACA;AAEA;AACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EAEA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EAEA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AACA;EACA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;AAEA;AACA;EAEA;EACA;EACA;EACA;AAEA;AACA;EAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;AACA;AACA;EACA;EACA;EACA;AAEA;AAEA;EACA;EACA;AAEA;AACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;AAEA;AACA;AAEA;EACA;AAEA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AACA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AACA;AACA;AAEA;EACA;AAEA;EACA;;;AC/vBJ;AAAA;AAAA;AAAA;AAAA;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADOI;AACA;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaI;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EAKI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAMJ;AAAA;EAEI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;AACA;EACI;AAAA;AAAA;IAGI;IACA;IACA;IACA;IACA;;;EAEJ;AAAA;IAEI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;IAEA;;;EAEJ;IACI;;;EAEJ;AAAA;IAEI;;;EAEJ;IACI;;;EAEJ;AAAA;AAAA;IAGI;IACA;;;EAEJ;AAAA;IAEI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;AAAA;IAEI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;AAGR;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EAC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ACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;A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AEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAuOJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EASI;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EAKI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAEJ;AAAA;AAAA;AAAA;EAII;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAYI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAYI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EAKI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAMJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;;;AAGR;EACI;IACI;;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;IACI;IACA;IACA;IAEA;IACA;IACA;IACA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;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;;AAGR;EACI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IAYI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IAC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AAEJ;EDwFR;ICvFY;;;AAEJ;EDqFR;ICpFY;;;;AAPJ;EDmGR;IClGY;;;AAEJ;EDgGR;IC/FY;;;AAEJ;ED6FR;IC5FY;;;AAPJ;EDmGR;IClGY;;;AAEJ;EDgGR;IC/FY;;;AAEJ;ED6FR;IC5FY;;;;AAPJ;EDgHR;IC/GY;;;AAEJ;ED6GR;IC5GY;;;AAEJ;ED0GR;ICzGY;;;AAPJ;EDgHR;IC/GY;;;AAEJ;ED6GR;IC5GY;;;AAEJ;ED0GR;ICzGY;;;;AAjBJ;EDuIR;ICtIY;;;AAEJ;EDoIR;ICnIY;;;AAEJ;EDiIR;IChIY;;;;AAGJ;EDqIR;ICpIY;;;AAEJ;EDkIR;ICjIY;;;AAEJ;ED+HR;IC9HY;;;;AAPJ;ED6IR;IC5IY;;;AAEJ;ED0IR;ICzIY;;;AAEJ;EDuIR;ICtIY;;;;AAPJ;EDqJR;ICpJY;;;AAEJ;EDkJR;ICjJY;;;AAEJ;ED+IR;IC9IY;;;;AAPJ;ED6JR;IC5JY;;;AAEJ;ED0JR;ICzJY;;;AAEJ;EDuJR;ICtJY;;;;AAPJ;EDqKR;ICpKY;;;AAEJ;EDkKR;ICjKY;;;AAEJ;ED+JR;IC9JY;;;AAPJ;EDqKR;ICpKY;;;AAEJ;EDkKR;ICjKY;;;AAEJ;ED+JR;IC9JY;;;;AAPJ;EDkLR;ICjLY;;;AAEJ;ED+KR;IC9KY;;;AAEJ;ED4KR;IC3KY;;;AAPJ;EDkLR;ICjLY;;;AAEJ;ED+KR;IC9KY;;;AAEJ;ED4KR;IC3KY;;;;AAjDJ;ED0OR;ICzOY;;;AAEJ;EDuOR;ICtOY;;;AAEJ;EDoOR;ICnOY;;;;AAGJ;EDwOR;ICvOY;;;AAEJ;EDqOR;ICpOY;;;AAEJ;EDkOR;ICjOY;;;;AAPJ;EDgPR;IC/OY;;;AAEJ;ED6OR;IC5OY;;;AAEJ;ED0OR;ICzOY;;;;AAPJ;EDwPR;ICvPY;;;AAEJ;EDqPR;ICpPY;;;AAEJ;EDkPR;ICjPY;;;;AAPJ;EDgQR;IC/PY;;;AAEJ;ED6PR;IC5PY;;;AAEJ;ED0PR;ICzPY;;;;AAPJ;EDwQR;ICvQY;;;AAEJ;EDqQR;ICpQY;;;AAEJ;EDkQR;ICjQY;;;AAPJ;EDwQR;ICvQY;;;AAEJ;EDqQR;ICpQY;;;AAEJ;EDkQR;ICjQY;;;;AAPJ;EDqRR;ICpRY;;;AAEJ;EDkRR;ICjRY;;;AAEJ;ED+QR;IC9QY;;;AAPJ;EDqRR;ICpRY;;;AAEJ;EDkRR;ICjRY;;;AAEJ;ED+QR;IC9QY;;;;AAjBJ;ED4SR;IC3SY;;;AAEJ;EDySR;ICxSY;;;AAEJ;EDsSR;ICrSY;;;;AAGJ;ED0SR;ICzSY;;;AAEJ;EDuSR;ICtSY;;;AAEJ;EDoSR;ICnSY;;;;AAPJ;EDkTR;ICjTY;;;AAEJ;ED+SR;IC9SY;;;AAEJ;ED4SR;IC3SY;;;;AAPJ;ED0TR;ICzTY;;;AAEJ;EDuTR;ICtTY;;;AAEJ;EDoTR;ICnTY;;;;AAPJ;EDkUR;ICjUY;;;AAEJ;ED+TR;IC9TY;;;AAEJ;ED4TR;IC3TY;;;;AAPJ;ED0UR;ICzUY;;;AAEJ;EDuUR;ICtUY;;;AAEJ;EDoUR;ICnUY;;;AAPJ;ED0UR;ICzUY;;;AAEJ;EDuUR;ICtUY;;;AAEJ;EDoUR;ICnUY;;;;AAPJ;EDuVR;ICtVY;;;AAEJ;EDoVR;ICnVY;;;AAEJ;EDiVR;IChVY;;;AAPJ;EDuVR;ICtVY;;;AAEJ;EDoVR;ICnVY;;;AAEJ;EDiVR;IChVY;;;;AClBA;EFgXZ;IE/WgB;;;AAEJ;EF6WZ;IE5WgB;;;AAEJ;EF0WZ;IEzWgB;;;;AAGJ;EF+WZ;IE9WgB;;;AAEJ;EF4WZ;IE3WgB;;;AAEJ;EFyWZ;IExWgB;;;;AAGJ;EF8WZ;IE7WgB;;;AAEJ;EF2WZ;IE1WgB;;;AAEJ;EFwWZ;IEvWgB;;;;AAGJ;EF6WZ;IE5WgB;;;AAEJ;EF0WZ;IEzWgB;;;AAEJ;EFuWZ;IEtWgB;;;;AAGJ;EF4WZ;IE3WgB;;;AAEJ;EFyWZ;IExWgB;;;AAEJ;EFsWZ;IErWgB;;;;AArCJ;EFmZZ;IElZgB;;;AAEJ;EFgZZ;IE/YgB;;;AAEJ;EF6YZ;IE5YgB;;;AAaJ;EF+XZ;IE9XgB;;;AAEJ;EF4XZ;IE3XgB;;;AAEJ;EFyXZ;IExXgB;;;;AAGJ;EFmYZ;IElYgB;;;AAEJ;EFgYZ;IE/XgB;;;AAEJ;EF6XZ;IE5XgB;;;AA3BJ;EFuZZ;IEtZgB;;;AAEJ;EFoZZ;IEnZgB;;;AAEJ;EFiZZ;IEhZgB;;;;AA3BJ;EF0bZ;IEzbgB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AAAA;AAAA;AAAA;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cfrBD;EesBC,kBfkMC;;Ae9LT;AAAA;EACI;;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,OfhCA;EeiCA,cftCD;EeuCC,kBfvCD;;Ae2CP;AAAA;EACI;EACA;EACA;;AAKA;AAAA;EACI,cfnDD;EeoDC,kBfpDD;;;AcIX;ECXI,Of6OY;Ee5OZ,cfUQ;EeTR,kBfSQ;;AePR;EAKI,OfoOQ;EenOR,cf6OW;Ee5OX,kBf4OW;;Ae1Of;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cfhBA;EeiBA,kBfjBA;;AeqBR;EACI;EAEI,OfxBA;;Ae2BJ;EAKI,OfkMI;EejMJ,cfjCA;EekCA,kBflCA;;AesCR;EACI;EACA;EACA;EAEI,Of3CA;;Ae8CJ;EACI,cfnDD;EeoDC,kBfpDD;;;AcQX;ECfI,OfmoBY;EeloBZ,cfinBQ;EehnBR,kBfgnBQ;;Ae9mBR;EAKI,Of0nBQ;EeznBR,cf6nBW;Ee5nBX,kBf4nBW;;Ae1nBf;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cfulBA;EetlBA,kBfslBA;;AellBR;EACI;EAEI,Of+kBA;;Ae5kBJ;EAKI,OfwlBI;EevlBJ,cfskBA;EerkBA,kBfqkBA;;AejkBR;EACI;EACA;EACA;EAEI,Of4jBA;;AezjBJ;EACI,cfnDD;EeoDC,kBfpDD;;;AcYX;ECnBI,Of8OY;Ee7OZ,cfWQ;EeVR,kBfUQ;;AeRR;EAKI,OfqOQ;EepOR,cf8OW;Ee7OX,kBf6OW;;Ae3Of;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cffA;EegBA,kBfhBA;;AeoBR;EACI;EAEI,OfvBA;;Ae0BJ;EAKI,OfmMI;EelMJ,cfhCA;EeiCA,kBfjCA;;AeqCR;EACI;EACA;EACA;EAEI,Of1CA;;Ae6CJ;EACI,cfnDD;EeoDC,kBfpDD;;;AcgBX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X;AAAA;AAAA;EAGI;;AAGJ;EACI;EACA,avB1DM;;AuB4DN;EACI;;;AAOR;EACI;;AAGJ;EACI;;;ACjHR;AAAA;;AAAA;AAAA;AAOI;EACI;EACA;EACA;EACA;EACA;EACA,axBoES;EwBnET;EACA;EACA;EACA;;;ACjBR;AAAA;;AAAA;AAAA;AAMA;EACI;;AAEA;EACI;EACA,OzBcS;EyBbT;EACA;EACA,czBPG;EyBQH,YzBRG;EyBSH,WzBQQ;EyBPR;EACA;;AAEA;EACI;;AAKR;EACI,WzB2DG;;AyBxDP;EACI,WzBwDG;;AyBrDP;EACI,WzBqDG;;AyBlDP;EACI,WzBkDG;;AyB/CP;EACI,WzBnBQ;;AyBsBZ;EACI,WzB4CG;;AyBzCP;EACI;EACA;EACA;EACA,czB/CG;EyBgDH;EACA,ezB3BY;;AyB8BhB;EACI;;AAQR;EACI;;;ACrEJ;AAAA;;AAAA;AAAA;AAAA;ACCI;AAAA;EACI,O3BuBS;E2BtBT,c3BIG;E2BHH,Y3BGG;;A2BDP;AAAA;EACI;;;AANJ;EACI,O3Bgda;E2B/cb,c3BSI;E2BRJ,Y3BQI;;A2BNR;EACI,c3BKI;;;A2BXR;EACI,O3Bida;E2Bhdb,c3BUI;E2BTJ,Y3BSI;;A2BPR;EACI,c3BMI;;;A2BZR;EACI,O3Bkda;E2Bjdb,c3BWI;E2BVJ,Y3BUI;;A2BRR;EACI,c3BOI;;;A2BbR;EACI,O3BmdY;E2BldZ,c3BYG;E2BXH,Y3BWG;;A2BTP;EACI,c3BQG;;;A0BiBP;EACI;EACA,O1B/BE;E0BgCF;EACA;EACA,a1B6CW;;A0B1Cf;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI,O1BrCI;;;A0B2CR;AAAA;EAEI;EACA,kBEoOY;;AFjOhB;EACI,OE5CI;;AF+CR;EACI;;;AAKJ;AAAA;EAEI,kB1BwNY;;A0BrNhB;EACI,O1BhEI;;;A0BqER;AAAA;EAEI,kB1BkNY;;A0B/MhB;EACI,O1B1EI;;;A0B+ER;AAAA;EAEI,kB1B4MW;;A0BzMf;EACI,O1BpFG;;;A2BdP;EACI,O3B2rBU;E2B1rBV,c3BinBC;E2BhnBD,Y3BgnBC;;A2B9mBL;EACI,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I;EACA;EACA,SjC8FU;EiC7FV;EACA,OjCkGG;EiCjGH;EACA,WjC4FO;EiC3FP,ajC2DK;EiC1DL,ejCMQ;AiCJR;AAyBA;;AAxBA;EACI,kBjC0FD;EiCzFC,qBjCyFD;;AiCtFH;EAGI;EACA,OjCmFK;EiClFL,kBL0mBE;;AKxmBF;EACI,kBjCgFE;EiC/EF,qBjC+EE;;AiC3EV;EACI,OjC0EM;EiCzEN,kBLimBG;EKhmBH;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;;AAGJ;AAAA;AAAA;EAGI;EACA;EACA;EACA,WjCsCI;;AiClCZ;EACI,OjCqCU;;AiCjCd;EAKI;EACA,OjC0BS;EiCzBT,kBLijBM;;AK/iBN;EACI,kBjCsBK;EiCrBL,qBjCqBK;;AiCjBb;EACI,OjCqBc;EiCpBd,kBL0iBI;;AKxiBJ;EACI,kBjCiBU;EiChBV,qBjCgBU;;AiCZtB;EACI;IACI;;EAEJ;IACI;IACA;IACA,kBL2hBI;;EKzhBJ;IACI;IACA,OjCDG;IiCEH;IACA,WjC/CF;IiCgDE,ajC5CC;;EiC8CD;IAEI,OjCPK;IiCQL,kBL+gBJ;;EK5gBA;IACI,OjCXM;IiCYN,kBL0gBJ;;;AKngBZ;EACI;;;AC/IR;AAAA;;AAAA;AAAA;AAAA;AAQI;EACI,kBlCuBA;EkCtBA;;AACA;AAII;AAsCA;;AAzCA;EACI,alC2hBJ;;AkCxhBA;EACI,OlC8IF;EkC7IE,WlCMA;EkCLA;AACA;AAoBA;;AAnBA;EACI,kBlCyIN;EkCxIM,qBlCwIN;;AkCtIE;EAGI,OlCmIN;EkClIM,kBlCgIH;;AkC/HG;EACI,kBlCgIV;EkC/HU,qBlC+HV;;AkC5HE;EACI,OlC2HN;EkC1HM,kBlCyHF;;AkCrHF;EACI;;AAIJ;AAAA;AAAA;EAGI,WlCyGD;;AkCpGP;EAMI,OlCmGF;EkClGE,kBlCgGC;;AkC/FD;EACI,kBlCgGN;EkC/FM,qBlC+FN;;AkC3FF;EACI,elCxCI;EkCyCJ,kBlCtCR;EkCuCQ;EACA;EACA;EACA;;AACA;EACI,SlC4dR;EkC3dQ,OlCkFN;EkCjFM,elCjDA;EkCkDA,elCydR;EkCxdQ;;AACA;EAEI,OlC4EV;EkC3EU,kBlCyEP;;AkCrEL;EACI,OlC+ES;EkC9ET,kBlCmEC;;AkClED;EACI,kBlC4EK;EkC3EL,qBlC2EK;;AkCvEjB;EAGI;IACI,kBlCrER;;EkCsEQ;IACI,OlC+DF;IkC9DE,WlC3BN;;EkC4BM;IAEI,OlC4DA;IkC3DA,kBlCiDP;;EkC/CG;IACI,OlCyDC;IkCxDD,kBlC6CP;;;;AkCnCb;EACI,kBlCtFC;;AkCuFD;AACI;AAsCA;;AArCA;EACI,OlCaD;EkCZC,WlCxGA;AkC0GA;AAoBA;;AAnBA;EACI,kBlCQL;EkCPK,qBlCOL;;AkCLC;EAGI,OlCGC;EkCFD,kBlCZF;;AkCaE;EACI,kBlCCF;EkCAE;;AAGR;EACI,OlCJE;EkCKF,kBlCnBD;;AkCuBH;EACI;;AAIJ;AAAA;AAAA;EAGI,WlCrBA;;AkC0BR;EAMI,OlC7BK;EkC8BL,kBlC5CE;;AkC6CF;EACI,kBlChCC;EkCiCD,qBlCjCC;;AkCoCT;EACI,OlChCU;EkCiCV,kBlC9IP;;AkC+IO;EACI,kBlCnCM;EkCoCN,qBlCpCM;;AkCwClB;EAGI;IACI,kBlC9JR;;EkC+JQ;IACI,OlChDD;IkCiDC,WlCpHN;;EkCqHM;IAEI,OlCnDC;IkCoDD,kBlChKf;;EkCkKW;IACI,OlCtDE;IkCuDF,kBlCpKf;;;;AkC6KL;AAAA;AAAA;EAGI;;;ACrNR;AAAA;;AAAA;AAAA;AAKA;EACI;EACA;EACA;;AAEA;EhBHA;EACA,iBARI;EgBYA,SnC+hBK;EmC9hBL;EACA;EACA,cnCaW;EmCZX;EACA,kBnCkTF;;AmChTE;EAEI;EACA,kBnC+SA;;AmC5SJ;EACI;EACA,kBnC2SG;;;AoCtUf;AAAA;;AAAA;AAAA;AAKA;EACI,kBR4nBQ;AQ1nBR;AAgEA;AA6CA;;AA5GA;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA,QpC0FK;EoCzFL,SpC0FM;EoCzFN,OpC+FD;EoC5FC,kBRymBJ;EQxmBI;EACA,WpCsFG;EoCrFH,apCqDC;;AoCnDD;EACI,kBpCsFL;EoCrFK,qBpCqFL;;AoClFC;EACI;EACA;EACA;;AAGJ;AAAA;AAAA;EAGI;EACA;EACA;EACA,WpCoEA;;AoChER;AAAA;AAAA;EAGI;EACA,OpC+DK;EoC9DL,kBRslBE;;AQplBF;AAAA;AAAA;EACI,kBpC4DE;EoC3DF,qBpC2DE;;AoCvDV;EACI,OpCsDM;EoCrDN,mBpCqDM;EoCpDN,kBR4kBG;;AQrkBX;EACI;EACA;EACA,kBRokBI;;AQlkBJ;EACI;EACA;EACA;;AAEA;EACI,SpCsdP;EoCrdO;EACA,OpCkCD;EoCjCC;EACA,kBRwjBJ;EQvjBI;EACA,WpCdN;EoCeM,apCXH;;AoCYG;AAAA;AAAA;EAGI,cpCwcZ;;AoCrcQ;EAGI,OpCoBC;EoCnBD;EACA,kBRyiBR;;AQtiBI;EACI,OpCeE;EoCdF;EACA,kBRmiBR;;AQ3hBZ;EACI;;;ACvHR;AAAA;;AAAA;AAAA;AAAA;AAQI;EACI,kBrCuBA;AqCcA;;AAlCQ;EACI,OrCkJN;EqCjJM,crCcD;EqCbC,kBrCiBZ;EqChBY,WrCQJ;;AqCPI;EACI,kBrC6IV;EqC5IU,qBrC4IV;;AqCzIM;AAAA;AAAA;EAGI,WrCiIL;;AqC9HH;AAAA;AAAA;EAGI,OrCgIN;EqC/HM,kBrC6HH;;AqC5HG;AAAA;AAAA;EACI,kBrC6HV;EqC5HU,qBrC4HV;;AqCzHE;EACI,OrCwHN;EqCvHM,mBrCuHN;EqCtHM,kBrCqHF;;AqC9GN;EACI,kBrCjBR;;AqCmBY;EACI,OrCkHN;EqCjHM,kBrCrBhB;EqCsBgB,WrCuBV;;AqCtBU;EAGI,OrC6GJ;EqC5GI,kBrCkGX;;AqChGO;EACI,OrC0GH;EqCzGG,kBrC8FX;;;AqCnFb;EACI,kBrCtCC;AqC2ED;;AAlCQ;EACI,OrC6DL;EqC5DK,crC+CF;EqC9CE,kBrC5CX;EqC6CW,WrC1DJ;;AqC2DI;EACI,kBrCwDT;EqCvDS,qBrCuDT;;AqCpDK;AAAA;AAAA;EAGI,WrC+CJ;;AqC5CJ;AAAA;AAAA;EAGI,OrC4CC;EqC3CD,kBrC6BF;;AqC5BE;AAAA;AAAA;EACI,kBrC0CF;EqCzCE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A;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;AAIR;EACI;IACI;IACA;IACA;;;EAEJ;IACI;IACA;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;IACI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;EAEJ;AAAA;IAEI;;;AAIR;EACI;IACI;IACA;IACA;;;EAEJ;IACI;IACA;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IACI;IACA;;;EAEJ;IA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GJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DCI;;A6DER;EACI,c7DHI;E6DIJ;;;ACdR;AAAA;;AAAA;AAAA;AAAA;ADRI;EACI,kB7DiBI;;A6DdR;EACI,c7DaI;E6DZJ;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DCI;;A6DER;EACI,c7DHI;E6DIJ;;;AAtBJ;EACI,kB7DkBI;;A6DfR;EACI,c7DcI;E6DbJ;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DEI;;A6DCR;EACI,c7DFI;E6DGJ;;;AAtBJ;EACI,kB7DmBI;;A6DhBR;EACI,c7DeI;E6DdJ;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DGI;;A6DAR;EACI,c7DDI;E6DEJ;;;AAtBJ;EACI,kB7DoBG;;A6DjBP;EACI,c7DgBG;E6DfH;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DIG;;A6DDP;EACI;EACA;;;AEdR;AAAA;;AAAA;AAAA;AAMA;EACI;EACA;;AAEA;EACI,c/DNG;;A+DSP;EACI;;AFvBJ;EACI,kB7DiBI;;A6DdR;EACI,c7DaI;E6DZJ;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DCI;;A6DER;EACI,c7DHI;E6DIJ;;;AGfR;AAAA;;AAAA;AAAA;AAAA;AHPI;EACI,kB7DiBI;;A6DdR;EACI,c7DaI;E6DZJ;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DCI;;A6DER;EACI,c7DHI;E6DIJ;;;AAtBJ;EACI,kB7DkBI;;A6DfR;EACI,c7DcI;E6DbJ;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DEI;;A6DCR;EACI,c7DFI;E6DGJ;;;AAtBJ;EACI,kB7DmBI;;A6DhBR;EACI,c7DeI;E6DdJ;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DGI;;A6DAR;EACI,c7DDI;E6DEJ;;;AAtBJ;EACI,kB7DoBG;;A6DjBP;EACI,c7DgBG;E6DfH;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI,c7DIG;;A6DDP;EACI;EACA;;;AIhBR;AAAA;;AAAA;AAAA;A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ACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEfa;EqEgBb,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrE6BQ;;AqE1BZ;EACI,MrEyBQ;;AqErBR;EAGI,kBrEpCL;;AqEsCK;EACI,OrE7EJ;;AqEgFA;EACI,MrEjFJ;;AqEuFZ;EACI,crExEe;EqEyEf;;AAMA;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrETQ;;;AsExGhB;AAAA;;AAAA;AAAA;AAAA;AASQ;EDiBR,crEdY;EqEeZ,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEtDQ;EqEuDR,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEmKQ;;AqEhKZ;EACI,MrE+JQ;;AqE3JR;EAGI,kBrEkKO;;AqEhKP;EACI,OrEqJA;;AqElJJ;EACI,MrEiJA;;AqE3IhB;EACI,crExFQ;EqEyFR;;AClFI;EDOR,crEnBW;EqEoBX,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrE6JS;EqE5JT,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrE/DI;;AqEkER;EACI,MrEnEI;;AqEuEJ;EAGI,kBrE/ED;;AqEiFC;EACI,OrE7EJ;;AqEgFA;EACI,MrEjFJ;;AqEuFZ;EACI,crE7FO;EqE8FP;;ACxEI;EDHR,crEbY;EqEcZ,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrErDQ;EqEsDR,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEoKQ;;AqEjKZ;EACI,MrEgKQ;;AqE5JR;EAGI,kBrEmKO;;AqEjKP;EACI,OrEsJA;;AqEnJJ;EACI,MrEkJA;;AqE5IhB;EACI,crEvFQ;EqEwFR;;AC9DI;EDbR,crEZY;EqEaZ,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEpDQ;EqEqDR,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEqKQ;;AqElKZ;EACI,MrEiKQ;;AqE7JR;EAGI,kBrEoKO;;AqElKP;EACI,OrEuJA;;AqEpJJ;EACI,MrEmJA;;AqE7IhB;EACI,crEtFQ;EqEuFR;;ACpDI;EDvBR,crEXW;EqEYX,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEnDO;EqEoDP,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEsKO;;AqEnKX;EACI,MrEkKO;;AqE9JP;EAGI,kBrEqKM;;AqEnKN;EACI,OrEwJD;;AqErJH;EACI,MrEoJD;;AqE9If;EACI,crErFO;EqEsFP;;AAMA;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrE6HQ;;AqEnIZ;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrErGI;;AqE+FR;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrE8HQ;;AqEpIZ;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrE+HQ;;AqErIZ;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrEgIO;;AsE5JP;EAKI;EACA;;AALA;EACI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A;EACI;EACA,YpFkQgB;EoFjQhB,kBpFYY;EoFXZ;EACA;EACA,SpF6iBY;EoF5iBZ,epF4iBY;;;AoFviBhB;EACI,OpF0PgB;;;AoFvPpB;EACI,OpFsPgB;;;AoFnPpB;EACI;EACA;EACA;EACA;EACA;EACA,QpF4OoB;;;AoFzOxB;EACI,OpFyOgB;;;AoFtOpB;EACI;;;ACvCJ;AAAA;;AAAA;AAAA;AAKA;EACI;EACA,erFijBY;;;AsFxjBhB;AAAA;;AAAA;AAAA;AAKA;EACI;;AACA;EACI;;AAEJ;EACI,StF6iBQ;;;AsFviBhB;EACI;;AACA;EACI;;AAEJ;EACI,StFiiBQ;;;AuFxjBhB;AAAA;AAAA;AAAA;ACCA;EACI;EACA;EACA;EACA,exFmjBY;;;AwF/iBhB;EACI;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA,OxF2YsB;EwF1YtB,QxF0YsB;EwFzYtB,OxFQiB;EwFPjB,WxFsEW;EwFrEX;EACA,kBxF0YgB;EwFzYhB,cxFOmB;;;AwFHvB;EACI;EACA;EACA;EACA;EACA,OxFLiB;;;AwFSrB;EACI;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBxFhBe;;;AwFqBvB;EACI,QxFuWiB;EwFtWjB;EACA;EACA,kBxFyWgB;EwFxWhB;EACA;;AACA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA,mBxFyVY;;AwFvVhB;EACI;EACA;EACA,mBxF9Ce;;AwFiDnB;EACI;EACA;EACA,wBxFnDgB;EwFoDhB,2BxFpDgB;;AwFuDpB;EACI,yBxFxDgB;EwFyDhB,4BxFzDgB;;AwF0DhB;EAEI;;;AAOR;EACI,OxFyLa;EwFxLb,cxFwLa;EwFvLb,kBxFyLgB;;AwFvLpB;EACI,OxFoLa;;;AwFhLjB;EACI,OxFoLa;EwFnLb,cxFmLa;EwFlLb,kBxFoLgB;;AwFlLpB;EACI,OxF+Ka;;;AwF3KrB;EACI,kBxFuKoB;;AwFtKpB;EACI,OxFmKa;;AwFjKjB;EACI,mBxFkKgB;;;AwF7JpB;EACI,OxFpHQ;;;AyF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A;;;AAGJ;AAAA;AAAA;AAGA;EACI;EACA;;;ACvIJ;EACI;EACA;EACA;EAGA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AACA;EACI;EACA;;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;AAAmB;;AAI3B;EACI;EACA;EACA;EACA;EACA;EACA,YFnEO;EEoEP;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI,kBAvFN;EAwFM,O/FpEJ;;A+FuEA;EAEI,kBA7FN;;;AAoGd;EACI;EACA,YFtGe;EEuGf;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI,kBAzHE;EA0HF,O/FtGI;;A+FyGR;EAEI,kBA/HE;;;AAoId;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,YAxIU;EAyIV;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI,kBAxJE;EAyJF,O/FrII;;A+FwIR;EAEI,kBA9JE;;AAiKN;EACI;EACA;EACA;EACA;EACA;EACA;;;AAKZ;EACI,YF7Ke;EE8Kf;EACA;EACA;EACA;;;AAGJ;EACI,YFrLe;EEsLf;EACA;EACA;EACA;;AAEA;EACI;;;AAIR;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA,YF1OW;EE2OX;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,YAjPM;EAkPN;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI,kBAjQF;EAkQE,O/F9OA;;A+FiPJ;EAEI,kBAvQF;;AA0QF;EACI;EACA;EACA;EACA;EACA;EACA;;;AAMhB;AAAA;AAAA;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;AAAA;AAAA;AAMY;EACI;;AAKJ;EACI;;;AChWZ;EACI,ShG8iBQ;;AgG5iBR;EACI;;AAMA;EACI;;AAEJ;EACI;;AAKZ;EACI,ShG2hBQ;;AgGxhBZ;EACI;;AAGJ;AACI;;AACA;EACI,ehGihBI;;;AgG3gBZ;EACI,kBhG4SU;;;AgGvSd;EACI,kBhGiSQ;;;AgG5RZ;AAAA;EAEI;EACA;;AAGA;AAAA;EACI;;AAGJ;AAAA;AAAA;EAEI;EACA;;AAGR;EACI;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;;;AAMR;EACI;EACA;;AAEA;EACI;;;AAMR;AAAA;EAEI;EACA;EACA;;AAGA;AAAA;EACI;EACA;EACA;EACA;;AAGJ;AAAA;EACI;;;AAMR;AAAA;EAEI;;AAEA;AAAA;EACI;;AAGJ;AAAA;EACI;;;ACtHA;EACI;AAA0B;EAC1B;EACA;;;AAMhB;EACI;EACA;;;AAKI;EACI;;;ACrBZ;AAAA;;AAAA;AAAA;AAKA;EACI;EACA;EACA;EAKA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;;AAGJ;EACI,SlGqhBQ;EkGphBR;EACA;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;;AC5CZ;AAAA;;AAAA;AAAA;AAqBA;AAwDI;AAAA;AAAA;;AAvDA;EACI;EACA,UnGwhBQ;AmGthBR;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;;AAXA;EAtBA;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;;AA4BJ;EA7BA;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;;AAmCJ;EApCA;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;;AAwCR;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;;AAKJ;EACI,YN/CE;;AMmDV;EACI;;AAGJ;AAAA;AAAA;EAGI;;AA3DA;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;;AAoEZ;EACI;;;ACrFJ;AAAA;;AAAA;AAAA;AAAA;AAQI;EACI;;;AAMJ;EACI,cpGoBe;EoGnBf;EACA;EACA;EACA;;;AAMJ;EACI,cpGSe;EoGRf;EACA;EACA;EACA;;;AAOA;EACI,kBpGsSI;;;AoG/RZ;EACI,kBpGmSU;;AoGjSd;EACI;;;AAMJ;EACI;;;AAMJ;EACI,KpGgfQ;;;AoG1eZ;EACI,KpG4eS;;;AoGteb;EACI,KpG0eQ;;;AoGneR;EACI;;;AAQJ;EACI;;;AC/FZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EAEI;EACA;;AAGJ;EAEI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EAEI;;AAGJ;EACI;;;ACrFR;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;AACA;EACI;EACA;;AAKZ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGI;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;IACI;;EAEJ;IACI;;;AAKZ;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;;AAMR;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AC9GZ;AAAA;;AAAA;AAAA;AAAA;AAQI;EACI,kBvGoUQ;;;AuG/TZ;EACI;EACA;EACA;EACA,qBvGkBe;;;AuGdvB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;;;AAIR;EACI;;AACA;EACI","file":"theme.compiled.css","sourcesContent":["// Default variables\r\n@import \"exclusion-variables-defaults\";\r\n@import \"../../../theme/web/exclusion-variables\";\r\n@import \"generated-exclusion-variables\";\r\n@import \"variables\";\r\n@import \"variables-css-mappings\";\r\n@import \"../../../theme/web/custom-variables\";\r\n\r\n// Font Family Import\r\n@if $font-family-import != false {\r\n @import url($font-family-import);\r\n}\r\n\r\n//=============================== Bootstrap ================================\\\\\r\n\r\n// Utilities\r\n@import \"core/_legacy/bootstrap/bootstrap\";\r\n@import \"core/_legacy/bootstrap/bootstrap-rtl\";\r\n@if not $exclude-bootstrap {\r\n @include bootstrap();\r\n @include bootstrap-rtl();\r\n}\r\n@import \"core/_legacy/mxui\";\r\n@if not $exclude-mxui {\r\n @include mxui();\r\n}\r\n\r\n//================================== CORE ==================================\\\\\r\n\r\n// Base\r\n@import \"core/base/mixins/animations\";\r\n@import \"core/base/mixins/spacing\";\r\n@import \"core/base/mixins/layout-spacing\";\r\n@import \"core/base/mixins/buttons\";\r\n@import \"core/base/mixins/groupbox\";\r\n\r\n@import \"core/base/animation\";\r\n@if not $exclude-animations {\r\n @include animations();\r\n}\r\n@import \"core/base/flex\";\r\n@if not $exclude-flex {\r\n @include flex();\r\n}\r\n@import \"core/base/spacing\";\r\n@if not $exclude-spacing {\r\n @include spacing();\r\n}\r\n@import \"core/base/base\";\r\n@if not $exclude-base {\r\n @include base();\r\n}\r\n@import \"core/base/login\";\r\n@if not $exclude-login {\r\n @include login();\r\n}\r\n\r\n// Widgets\r\n@import \"core/widgets/input\";\r\n@if not $exclude-input {\r\n @include input();\r\n}\r\n\r\n@import \"core/helpers/background\";\r\n@if not $exclude-background-helpers {\r\n @include background-helpers();\r\n}\r\n\r\n@import \"core/widgets/label\";\r\n@if not $exclude-label {\r\n @include label();\r\n}\r\n\r\n@import \"core/widgets/badge\";\r\n@if not $exclude-badge {\r\n @include badge();\r\n}\r\n\r\n@import \"core/helpers/label\";\r\n@if not $exclude-label and not $exclude-label-helpers {\r\n @include label-helpers();\r\n}\r\n\r\n@import \"core/widgets/badge-button\";\r\n@if not $exclude-badge-button {\r\n @include badge-button();\r\n}\r\n\r\n@import \"core/helpers/badge-button\";\r\n@if not $exclude-badge-button and not $exclude-badge-button-helpers {\r\n @include badge-button-helpers();\r\n}\r\n\r\n@import \"core/widgets/button\";\r\n@if not $exclude-button {\r\n @include button();\r\n}\r\n\r\n@import \"core/helpers/button\";\r\n@if not $exclude-button and not $exclude-button-helpers {\r\n @include button-helpers();\r\n}\r\n\r\n@import \"core/widgets/check-box\";\r\n@if not $exclude-check-box {\r\n @include check-box();\r\n}\r\n\r\n@import \"core/widgets/grid\";\r\n@if not $exclude-grid {\r\n @include grid();\r\n}\r\n\r\n@import \"core/widgets/data-grid\";\r\n@if not $exclude-data-grid {\r\n @include data-grid();\r\n}\r\n\r\n@import \"core/helpers/data-grid\";\r\n@if not $exclude-data-grid and not $exclude-data-grid-helpers {\r\n @include data-grid-helpers();\r\n}\r\n\r\n@import \"core/widgets/data-view\";\r\n@if not $exclude-data-view {\r\n @include data-view();\r\n}\r\n\r\n@import \"core/widgets/date-picker\";\r\n@if not $exclude-data-picker {\r\n @include date-picker();\r\n}\r\n\r\n@import \"core/widgets/header\";\r\n@if not $exclude-header {\r\n @include header();\r\n}\r\n\r\n@import \"core/widgets/glyphicon\";\r\n@if not $exclude-glyphicon {\r\n @include glyphicon();\r\n}\r\n\r\n@import \"core/widgets/group-box\";\r\n@if not $exclude-group-box {\r\n @include group-box();\r\n}\r\n\r\n@import \"core/helpers/group-box\";\r\n@if not $exclude-group-box and not $exclude-group-box-helpers {\r\n @include group-box-helpers();\r\n}\r\n\r\n@import \"core/helpers/image\";\r\n@if not $exclude-image-helpers {\r\n @include image-helpers();\r\n}\r\n\r\n@import \"core/widgets/list-view\";\r\n@if not $exclude-list-view {\r\n @include list-view();\r\n}\r\n\r\n@import \"core/helpers/list-view\";\r\n@if not $exclude-list-view and not $exclude-list-view-helpers {\r\n @include list-view-helpers();\r\n}\r\n\r\n@import \"core/widgets/modal\";\r\n@if not $exclude-modal {\r\n @include modal();\r\n}\r\n\r\n@import \"core/widgets/navigation-bar\";\r\n@if not $exclude-navigation-bar {\r\n @include navigation-bar();\r\n}\r\n\r\n@import \"core/helpers/navigation-bar\";\r\n@if not $exclude-navigation-bar and not $exclude-navigation-bar-helpers {\r\n @include navigation-bar-helpers();\r\n}\r\n\r\n@import \"core/widgets/navigation-list\";\r\n@if not $exclude-navigation-list {\r\n @include navigation-list();\r\n}\r\n\r\n@import \"core/widgets/navigation-tree\";\r\n@if not $exclude-navigation-tree {\r\n @include navigation-tree();\r\n}\r\n\r\n@import \"core/helpers/navigation-tree\";\r\n@if not $exclude-navigation-tree and not $exclude-navigation-tree-helpers {\r\n @include navigation-tree-helpers();\r\n}\r\n\r\n@import \"core/widgets/pop-up-menu\";\r\n@if not $exclude-pop-up-menu {\r\n @include pop-up-menu();\r\n}\r\n\r\n@import \"core/widgets/simple-menu-bar\";\r\n@if not $exclude-simple-menu-bar {\r\n @include simple-menu-bar();\r\n}\r\n\r\n@import \"core/helpers/simple-menu-bar\";\r\n@if not $exclude-simple-menu-bar and not $exclude-simple-menu-bar-helpers {\r\n @include simple-menu-bar-helpers();\r\n}\r\n\r\n@import \"core/widgets/radio-button\";\r\n@if not $exclude-radio-button {\r\n @include radio-button();\r\n}\r\n\r\n@import \"core/widgets/scroll-container-react\";\r\n@import \"core/widgets/scroll-container-dojo\";\r\n@if not $exclude-scroll-container {\r\n @if $use-modern-client {\r\n @include scroll-container-react();\r\n } @else {\r\n @include scroll-container-dojo();\r\n }\r\n}\r\n\r\n@import \"core/widgets/tab-container\";\r\n@if not $exclude-tab-container {\r\n @include tab-container();\r\n}\r\n\r\n@import \"core/helpers/tab-container\";\r\n@if not $exclude-tab-container and not $exclude-tab-container-helpers {\r\n @include tab-container-helpers();\r\n}\r\n\r\n@import \"core/widgets/table\";\r\n@if not $exclude-table {\r\n @include table();\r\n}\r\n\r\n@import \"core/helpers/table\";\r\n@if not $exclude-table and not $exclude-table-helpers {\r\n @include table-helpers();\r\n}\r\n\r\n@import \"core/widgets/template-grid\";\r\n@if not $exclude-template-grid {\r\n @include template-grid();\r\n}\r\n\r\n@import \"core/helpers/template-grid\";\r\n@if not $exclude-template-grid and not $exclude-template-grid-helpers {\r\n @include template-grid-helpers();\r\n}\r\n\r\n@import \"core/widgets/typography\";\r\n@if not $exclude-typography {\r\n @include typography();\r\n}\r\n\r\n@import \"core/helpers/typography\";\r\n@if not $exclude-typography and not $exclude-typography-helpers {\r\n @include typography-helpers();\r\n}\r\n\r\n@import \"core/widgets/layout-grid\";\r\n@if not $exclude-layout-grid {\r\n @include layout-grid();\r\n}\r\n\r\n@import \"core/widgets/pagination\";\r\n@if not $exclude-pagination {\r\n @include pagination();\r\n}\r\n\r\n@import \"core/widgets/progress\";\r\n@if not $exclude-progress {\r\n @include progress();\r\n}\r\n\r\n@import \"core/widgets/progress-bar\";\r\n@if not $exclude-progress-bar {\r\n @include progress-bar();\r\n}\r\n\r\n@import \"core/helpers/progress-bar\";\r\n@if not $exclude-progress-bar and not $exclude-progress-bar-helpers {\r\n @include progress-bar-helpers();\r\n}\r\n\r\n@import \"core/widgets/progress-circle\";\r\n@if not $exclude-progress-circle {\r\n @include progress-circle();\r\n}\r\n\r\n@import \"core/helpers/progress-circle\";\r\n@if not $exclude-progress-circle and not $exclude-progress-circle-helpers {\r\n @include progress-circle-helpers();\r\n}\r\n\r\n@import \"core/widgets/rating\";\r\n@if not $exclude-rating {\r\n @include rating();\r\n}\r\n\r\n@import \"core/helpers/rating\";\r\n@if not $exclude-rating and not $exclude-rating-helpers {\r\n @include rating-helpers();\r\n}\r\n\r\n@import \"core/widgets/range-slider\";\r\n@if not $exclude-range-slider {\r\n @include range-slider();\r\n}\r\n\r\n@import \"core/helpers/range-slider\";\r\n@if not $exclude-range-slider and not $exclude-range-slider-helpers {\r\n @include range-slider-helpers();\r\n}\r\n\r\n@import \"core/widgets/slider\";\r\n@if not $exclude-slider {\r\n @include slider();\r\n}\r\n\r\n@import \"core/helpers/slider\";\r\n@if not $exclude-slider and not $exclude-slider-helpers {\r\n @include slider-helpers();\r\n}\r\n\r\n@import \"core/widgets/timeline\";\r\n@if not $exclude-timeline {\r\n @include timeline();\r\n}\r\n\r\n@import \"core/widgets/tooltip\";\r\n@if not $exclude-tooltip {\r\n @include tooltip();\r\n}\r\n\r\n@import \"core/helpers/helper-classes\";\r\n@if not $exclude-helper-classes {\r\n @include helper-classes();\r\n}\r\n\r\n@import \"core/widgets/barcode-scanner\";\r\n@if not $exclude-barcode-scanner {\r\n @include barcode-scanner();\r\n}\r\n\r\n@import \"core/widgets/accordion\";\r\n@if not $exclude-accordion {\r\n @include accordion();\r\n}\r\n\r\n@import \"core/helpers/accordion\";\r\n@if not $exclude-accordion and not $exclude-accordion-helpers {\r\n @include accordion-helpers();\r\n}\r\n\r\n// Custom widgets\r\n@import \"core/widgetscustom/dijit-widget\";\r\n@if not $exclude-custom-dijit-widget {\r\n @include dijit-widget();\r\n}\r\n\r\n@import \"core/widgets/switch\";\r\n@if not $exclude-custom-switch {\r\n @include switch();\r\n}\r\n\r\n//================================= CUSTOM =================================\\\\\r\n\r\n// Layouts\r\n@import \"layouts/layout-atlas\";\r\n@if not $exclude-layout-atlas {\r\n @include layout-atlas();\r\n}\r\n@import \"layouts/layout-atlas-phone\";\r\n@if not $exclude-layout-atlas-phone {\r\n @include layout-atlas-phone();\r\n}\r\n@import \"layouts/layout-atlas-responsive\";\r\n@if not $exclude-layout-atlas-responsive {\r\n @include layout-atlas-responsive();\r\n}\r\n@import \"layouts/layout-atlas-tablet\";\r\n@if not $exclude-layout-atlas-tablet {\r\n @include layout-atlas-tablet();\r\n}\r\n","@font-face {\n font-family: \"Atlas_Core$Atlas_Filled\";\n src: url(\"./fonts/Atlas_Core$Atlas_Filled.ttf\") format(\"truetype\");\n}\n.mx-icon-filled {\n display: inline-block;\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n font-family: \"Atlas_Core$Atlas_Filled\";\n}\n.mx-icon-filled.mx-icon-add::before {\n content: \"\\e900\";\n}\n.mx-icon-filled.mx-icon-add-circle::before {\n content: \"\\e901\";\n}\n.mx-icon-filled.mx-icon-airplane::before {\n content: \"\\e902\";\n}\n.mx-icon-filled.mx-icon-alarm-bell::before {\n content: \"\\e903\";\n}\n.mx-icon-filled.mx-icon-alarm-bell-off::before {\n content: \"\\e904\";\n}\n.mx-icon-filled.mx-icon-alert-circle::before {\n content: \"\\e905\";\n}\n.mx-icon-filled.mx-icon-alert-triangle::before {\n content: \"\\e906\";\n}\n.mx-icon-filled.mx-icon-align-bottom::before {\n content: \"\\e907\";\n}\n.mx-icon-filled.mx-icon-align-center::before {\n content: \"\\e908\";\n}\n.mx-icon-filled.mx-icon-align-left::before {\n content: \"\\e909\";\n}\n.mx-icon-filled.mx-icon-align-middle::before {\n content: \"\\e90a\";\n}\n.mx-icon-filled.mx-icon-align-right::before {\n content: \"\\e90b\";\n}\n.mx-icon-filled.mx-icon-align-top::before {\n content: \"\\e90c\";\n}\n.mx-icon-filled.mx-icon-analytics-bars::before {\n content: \"\\e90d\";\n}\n.mx-icon-filled.mx-icon-analytics-graph-bar::before {\n content: \"\\e90e\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-down::before {\n content: \"\\e90f\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-left::before {\n content: \"\\e910\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-right::before {\n content: \"\\e911\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-up::before {\n content: \"\\e912\";\n}\n.mx-icon-filled.mx-icon-arrow-down::before {\n content: \"\\e913\";\n}\n.mx-icon-filled.mx-icon-arrow-left::before {\n content: \"\\e914\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-down::before {\n content: \"\\e915\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-left::before {\n content: \"\\e916\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-right::before {\n content: \"\\e917\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-up::before {\n content: \"\\e918\";\n}\n.mx-icon-filled.mx-icon-arrow-right::before {\n content: \"\\e919\";\n}\n.mx-icon-filled.mx-icon-arrow-square-down::before {\n content: \"\\e91a\";\n}\n.mx-icon-filled.mx-icon-arrow-square-left::before {\n content: \"\\e91b\";\n}\n.mx-icon-filled.mx-icon-arrow-square-right::before {\n content: \"\\e91c\";\n}\n.mx-icon-filled.mx-icon-arrow-square-up::before {\n content: \"\\e91d\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-down::before {\n content: \"\\e91e\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-left::before {\n content: \"\\e91f\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-right::before {\n content: \"\\e920\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-up::before {\n content: \"\\e921\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-down::before {\n content: \"\\e922\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-left::before {\n content: \"\\e923\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-right::before {\n content: \"\\e924\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-up::before {\n content: \"\\e925\";\n}\n.mx-icon-filled.mx-icon-arrow-up::before {\n content: \"\\e926\";\n}\n.mx-icon-filled.mx-icon-arrows-retweet::before {\n content: \"\\e927\";\n}\n.mx-icon-filled.mx-icon-asterisk::before {\n content: \"\\e928\";\n}\n.mx-icon-filled.mx-icon-badge::before {\n content: \"\\e929\";\n}\n.mx-icon-filled.mx-icon-barcode::before {\n content: \"\\e92a\";\n}\n.mx-icon-filled.mx-icon-binoculars::before {\n content: \"\\e92b\";\n}\n.mx-icon-filled.mx-icon-bitcoin::before {\n content: \"\\e92c\";\n}\n.mx-icon-filled.mx-icon-blocks::before {\n content: \"\\e92d\";\n}\n.mx-icon-filled.mx-icon-book-closed::before {\n content: \"\\e92e\";\n}\n.mx-icon-filled.mx-icon-book-open::before {\n content: \"\\e92f\";\n}\n.mx-icon-filled.mx-icon-bookmark::before {\n content: \"\\e930\";\n}\n.mx-icon-filled.mx-icon-briefcase::before {\n content: \"\\e931\";\n}\n.mx-icon-filled.mx-icon-browser::before {\n content: \"\\e932\";\n}\n.mx-icon-filled.mx-icon-browser-code::before {\n content: \"\\e933\";\n}\n.mx-icon-filled.mx-icon-browser-page-text::before {\n content: \"\\e934\";\n}\n.mx-icon-filled.mx-icon-browser-search::before {\n content: \"\\e935\";\n}\n.mx-icon-filled.mx-icon-browser-trophy::before {\n content: \"\\e936\";\n}\n.mx-icon-filled.mx-icon-calendar::before {\n content: \"\\e937\";\n}\n.mx-icon-filled.mx-icon-calendar-1::before {\n content: \"\\e938\";\n}\n.mx-icon-filled.mx-icon-camera::before {\n content: \"\\e939\";\n}\n.mx-icon-filled.mx-icon-camping-tent::before {\n content: \"\\e93a\";\n}\n.mx-icon-filled.mx-icon-cash-payment-bill::before {\n content: \"\\e93b\";\n}\n.mx-icon-filled.mx-icon-cash-payment-bill-2::before {\n content: \"\\e93c\";\n}\n.mx-icon-filled.mx-icon-cd::before {\n content: \"\\e93d\";\n}\n.mx-icon-filled.mx-icon-charger::before {\n content: \"\\e93e\";\n}\n.mx-icon-filled.mx-icon-checkmark::before {\n content: \"\\e93f\";\n}\n.mx-icon-filled.mx-icon-checkmark-circle::before {\n content: \"\\e940\";\n}\n.mx-icon-filled.mx-icon-checkmark-shield::before {\n content: \"\\e941\";\n}\n.mx-icon-filled.mx-icon-checkmark-square::before {\n content: \"\\e942\";\n}\n.mx-icon-filled.mx-icon-chevron-down::before {\n content: \"\\e943\";\n}\n.mx-icon-filled.mx-icon-chevron-left::before {\n content: \"\\e944\";\n}\n.mx-icon-filled.mx-icon-chevron-right::before {\n content: \"\\e945\";\n}\n.mx-icon-filled.mx-icon-chevron-up::before {\n content: \"\\e946\";\n}\n.mx-icon-filled.mx-icon-cloud::before {\n content: \"\\e947\";\n}\n.mx-icon-filled.mx-icon-cloud-check::before {\n content: \"\\e948\";\n}\n.mx-icon-filled.mx-icon-cloud-data-transfer::before {\n content: \"\\e949\";\n}\n.mx-icon-filled.mx-icon-cloud-disable::before {\n content: \"\\e94a\";\n}\n.mx-icon-filled.mx-icon-cloud-download::before {\n content: \"\\e94b\";\n}\n.mx-icon-filled.mx-icon-cloud-lock::before {\n content: \"\\e94c\";\n}\n.mx-icon-filled.mx-icon-cloud-off::before {\n content: \"\\e94d\";\n}\n.mx-icon-filled.mx-icon-cloud-refresh::before {\n content: \"\\e94e\";\n}\n.mx-icon-filled.mx-icon-cloud-remove::before {\n content: \"\\e94f\";\n}\n.mx-icon-filled.mx-icon-cloud-search::before {\n content: \"\\e950\";\n}\n.mx-icon-filled.mx-icon-cloud-settings::before {\n content: \"\\e951\";\n}\n.mx-icon-filled.mx-icon-cloud-subtract::before {\n content: \"\\e952\";\n}\n.mx-icon-filled.mx-icon-cloud-sync::before {\n content: \"\\e953\";\n}\n.mx-icon-filled.mx-icon-cloud-upload::before {\n content: \"\\e954\";\n}\n.mx-icon-filled.mx-icon-cloud-warning::before {\n content: \"\\e955\";\n}\n.mx-icon-filled.mx-icon-cog::before {\n content: \"\\e956\";\n}\n.mx-icon-filled.mx-icon-cog-hand-give::before {\n content: \"\\e957\";\n}\n.mx-icon-filled.mx-icon-cog-play::before {\n content: \"\\e958\";\n}\n.mx-icon-filled.mx-icon-cog-shield::before {\n content: \"\\e959\";\n}\n.mx-icon-filled.mx-icon-color-bucket-brush::before {\n content: \"\\e95a\";\n}\n.mx-icon-filled.mx-icon-color-painting-palette::before {\n content: \"\\e95b\";\n}\n.mx-icon-filled.mx-icon-compass-directions::before {\n content: \"\\e95c\";\n}\n.mx-icon-filled.mx-icon-compressed::before {\n content: \"\\e95d\";\n}\n.mx-icon-filled.mx-icon-computer-chip::before {\n content: \"\\e95e\";\n}\n.mx-icon-filled.mx-icon-connect::before {\n content: \"\\e95f\";\n}\n.mx-icon-filled.mx-icon-connect-1::before {\n content: \"\\e960\";\n}\n.mx-icon-filled.mx-icon-console-terminal::before {\n content: \"\\e961\";\n}\n.mx-icon-filled.mx-icon-contacts::before {\n content: \"\\e962\";\n}\n.mx-icon-filled.mx-icon-contrast::before {\n content: \"\\e963\";\n}\n.mx-icon-filled.mx-icon-controls-backward::before {\n content: \"\\e964\";\n}\n.mx-icon-filled.mx-icon-controls-eject::before {\n content: \"\\e965\";\n}\n.mx-icon-filled.mx-icon-controls-fast-backward::before {\n content: \"\\e966\";\n}\n.mx-icon-filled.mx-icon-controls-fast-forward::before {\n content: \"\\e967\";\n}\n.mx-icon-filled.mx-icon-controls-forward::before {\n content: \"\\e968\";\n}\n.mx-icon-filled.mx-icon-controls-pause::before {\n content: \"\\e969\";\n}\n.mx-icon-filled.mx-icon-controls-play::before {\n content: \"\\e96a\";\n}\n.mx-icon-filled.mx-icon-controls-record::before {\n content: \"\\e96b\";\n}\n.mx-icon-filled.mx-icon-controls-shuffle::before {\n content: \"\\e96c\";\n}\n.mx-icon-filled.mx-icon-controls-step-backward::before {\n content: \"\\e96d\";\n}\n.mx-icon-filled.mx-icon-controls-step-forward::before {\n content: \"\\e96e\";\n}\n.mx-icon-filled.mx-icon-controls-stop::before {\n content: \"\\e96f\";\n}\n.mx-icon-filled.mx-icon-controls-volume-full::before {\n content: \"\\e970\";\n}\n.mx-icon-filled.mx-icon-controls-volume-low::before {\n content: \"\\e971\";\n}\n.mx-icon-filled.mx-icon-controls-volume-off::before {\n content: \"\\e972\";\n}\n.mx-icon-filled.mx-icon-conversation-question-warning::before {\n content: \"\\e973\";\n}\n.mx-icon-filled.mx-icon-copy::before {\n content: \"\\e974\";\n}\n.mx-icon-filled.mx-icon-credit-card::before {\n content: \"\\e975\";\n}\n.mx-icon-filled.mx-icon-crossroad-sign::before {\n content: \"\\e976\";\n}\n.mx-icon-filled.mx-icon-cube::before {\n content: \"\\e977\";\n}\n.mx-icon-filled.mx-icon-cutlery::before {\n content: \"\\e978\";\n}\n.mx-icon-filled.mx-icon-dashboard::before {\n content: \"\\e979\";\n}\n.mx-icon-filled.mx-icon-data-transfer::before {\n content: \"\\e97a\";\n}\n.mx-icon-filled.mx-icon-desktop::before {\n content: \"\\e97b\";\n}\n.mx-icon-filled.mx-icon-diamond::before {\n content: \"\\e97c\";\n}\n.mx-icon-filled.mx-icon-direction-buttons::before {\n content: \"\\e97d\";\n}\n.mx-icon-filled.mx-icon-direction-buttons-arrows::before {\n content: \"\\e97e\";\n}\n.mx-icon-filled.mx-icon-disable::before {\n content: \"\\e97f\";\n}\n.mx-icon-filled.mx-icon-document::before {\n content: \"\\e980\";\n}\n.mx-icon-filled.mx-icon-document-open::before {\n content: \"\\e981\";\n}\n.mx-icon-filled.mx-icon-document-save::before {\n content: \"\\e982\";\n}\n.mx-icon-filled.mx-icon-dollar::before {\n content: \"\\e983\";\n}\n.mx-icon-filled.mx-icon-double-bed::before {\n content: \"\\e984\";\n}\n.mx-icon-filled.mx-icon-double-chevron-left::before {\n content: \"\\e985\";\n}\n.mx-icon-filled.mx-icon-double-chevron-right::before {\n content: \"\\e986\";\n}\n.mx-icon-filled.mx-icon-download-bottom::before {\n content: \"\\e987\";\n}\n.mx-icon-filled.mx-icon-download-button::before {\n content: \"\\e988\";\n}\n.mx-icon-filled.mx-icon-duplicate::before {\n content: \"\\e989\";\n}\n.mx-icon-filled.mx-icon-email::before {\n content: \"\\e98a\";\n}\n.mx-icon-filled.mx-icon-equalizer::before {\n content: \"\\e98b\";\n}\n.mx-icon-filled.mx-icon-eraser::before {\n content: \"\\e98c\";\n}\n.mx-icon-filled.mx-icon-euro::before {\n content: \"\\e98d\";\n}\n.mx-icon-filled.mx-icon-expand-horizontal::before {\n content: \"\\e98e\";\n}\n.mx-icon-filled.mx-icon-expand-vertical::before {\n content: \"\\e98f\";\n}\n.mx-icon-filled.mx-icon-external::before {\n content: \"\\e990\";\n}\n.mx-icon-filled.mx-icon-file-pdf::before {\n content: \"\\e991\";\n}\n.mx-icon-filled.mx-icon-file-zip::before {\n content: \"\\e992\";\n}\n.mx-icon-filled.mx-icon-film::before {\n content: \"\\e993\";\n}\n.mx-icon-filled.mx-icon-filter::before {\n content: \"\\e994\";\n}\n.mx-icon-filled.mx-icon-fire::before {\n content: \"\\e995\";\n}\n.mx-icon-filled.mx-icon-flag::before {\n content: \"\\e996\";\n}\n.mx-icon-filled.mx-icon-flash::before {\n content: \"\\e997\";\n}\n.mx-icon-filled.mx-icon-floppy-disk::before {\n content: \"\\e998\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-arrow-down::before {\n content: \"\\e999\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-arrow-up::before {\n content: \"\\e99a\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-checkmark::before {\n content: \"\\e99b\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-group::before {\n content: \"\\e99c\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-remove::before {\n content: \"\\e99d\";\n}\n.mx-icon-filled.mx-icon-folder-closed::before {\n content: \"\\e99e\";\n}\n.mx-icon-filled.mx-icon-folder-open::before {\n content: \"\\e99f\";\n}\n.mx-icon-filled.mx-icon-folder-upload::before {\n content: \"\\e9a0\";\n}\n.mx-icon-filled.mx-icon-fruit-apple::before {\n content: \"\\e9a1\";\n}\n.mx-icon-filled.mx-icon-fullscreen::before {\n content: \"\\e9a2\";\n}\n.mx-icon-filled.mx-icon-gift::before {\n content: \"\\e9a3\";\n}\n.mx-icon-filled.mx-icon-github::before {\n content: \"\\e9a4\";\n}\n.mx-icon-filled.mx-icon-globe::before {\n content: \"\\e9a5\";\n}\n.mx-icon-filled.mx-icon-globe-1::before {\n content: \"\\e9a6\";\n}\n.mx-icon-filled.mx-icon-graduation-hat::before {\n content: \"\\e9a7\";\n}\n.mx-icon-filled.mx-icon-hammer::before {\n content: \"\\e9a8\";\n}\n.mx-icon-filled.mx-icon-hammer-wench::before {\n content: \"\\e9a9\";\n}\n.mx-icon-filled.mx-icon-hand-down::before {\n content: \"\\e9aa\";\n}\n.mx-icon-filled.mx-icon-hand-left::before {\n content: \"\\e9ab\";\n}\n.mx-icon-filled.mx-icon-hand-right::before {\n content: \"\\e9ac\";\n}\n.mx-icon-filled.mx-icon-hand-up::before {\n content: \"\\e9ad\";\n}\n.mx-icon-filled.mx-icon-handshake-business::before {\n content: \"\\e9ae\";\n}\n.mx-icon-filled.mx-icon-hard-drive::before {\n content: \"\\e9af\";\n}\n.mx-icon-filled.mx-icon-headphones::before {\n content: \"\\e9b0\";\n}\n.mx-icon-filled.mx-icon-headphones-mic::before {\n content: \"\\e9b1\";\n}\n.mx-icon-filled.mx-icon-heart::before {\n content: \"\\e9b2\";\n}\n.mx-icon-filled.mx-icon-hierarchy-files::before {\n content: \"\\e9b3\";\n}\n.mx-icon-filled.mx-icon-home::before {\n content: \"\\e9b4\";\n}\n.mx-icon-filled.mx-icon-hourglass::before {\n content: \"\\e9b5\";\n}\n.mx-icon-filled.mx-icon-hyperlink::before {\n content: \"\\e9b6\";\n}\n.mx-icon-filled.mx-icon-image::before {\n content: \"\\e9b7\";\n}\n.mx-icon-filled.mx-icon-image-collection::before {\n content: \"\\e9b8\";\n}\n.mx-icon-filled.mx-icon-images::before {\n content: \"\\e9b9\";\n}\n.mx-icon-filled.mx-icon-info-circle::before {\n content: \"\\e9ba\";\n}\n.mx-icon-filled.mx-icon-laptop::before {\n content: \"\\e9bb\";\n}\n.mx-icon-filled.mx-icon-layout::before {\n content: \"\\e9bc\";\n}\n.mx-icon-filled.mx-icon-layout-1::before {\n content: \"\\e9bd\";\n}\n.mx-icon-filled.mx-icon-layout-2::before {\n content: \"\\e9be\";\n}\n.mx-icon-filled.mx-icon-layout-column::before {\n content: \"\\e9bf\";\n}\n.mx-icon-filled.mx-icon-layout-horizontal::before {\n content: \"\\e9c0\";\n}\n.mx-icon-filled.mx-icon-layout-list::before {\n content: \"\\e9c1\";\n}\n.mx-icon-filled.mx-icon-layout-rounded::before {\n content: \"\\e9c2\";\n}\n.mx-icon-filled.mx-icon-layout-rounded-1::before {\n content: \"\\e9c3\";\n}\n.mx-icon-filled.mx-icon-leaf::before {\n content: \"\\e9c4\";\n}\n.mx-icon-filled.mx-icon-legal-certificate::before {\n content: \"\\e9c5\";\n}\n.mx-icon-filled.mx-icon-lego-block-stack::before {\n content: \"\\e9c6\";\n}\n.mx-icon-filled.mx-icon-light-bulb-shine::before {\n content: \"\\e9c7\";\n}\n.mx-icon-filled.mx-icon-list-bullets::before {\n content: \"\\e9c8\";\n}\n.mx-icon-filled.mx-icon-location-pin::before {\n content: \"\\e9c9\";\n}\n.mx-icon-filled.mx-icon-lock::before {\n content: \"\\e9ca\";\n}\n.mx-icon-filled.mx-icon-lock-key::before {\n content: \"\\e9cb\";\n}\n.mx-icon-filled.mx-icon-login::before {\n content: \"\\e9cc\";\n}\n.mx-icon-filled.mx-icon-login-1::before {\n content: \"\\e9cd\";\n}\n.mx-icon-filled.mx-icon-login-2::before {\n content: \"\\e9ce\";\n}\n.mx-icon-filled.mx-icon-logout::before {\n content: \"\\e9cf\";\n}\n.mx-icon-filled.mx-icon-logout-1::before {\n content: \"\\e9d0\";\n}\n.mx-icon-filled.mx-icon-luggage-travel::before {\n content: \"\\e9d1\";\n}\n.mx-icon-filled.mx-icon-magnet::before {\n content: \"\\e9d2\";\n}\n.mx-icon-filled.mx-icon-map-location-pin::before {\n content: \"\\e9d3\";\n}\n.mx-icon-filled.mx-icon-martini::before {\n content: \"\\e9d4\";\n}\n.mx-icon-filled.mx-icon-megaphone::before {\n content: \"\\e9d5\";\n}\n.mx-icon-filled.mx-icon-message-bubble::before {\n content: \"\\e9d6\";\n}\n.mx-icon-filled.mx-icon-message-bubble-add::before {\n content: \"\\e9d7\";\n}\n.mx-icon-filled.mx-icon-message-bubble-check::before {\n content: \"\\e9d8\";\n}\n.mx-icon-filled.mx-icon-message-bubble-disable::before {\n content: \"\\e9d9\";\n}\n.mx-icon-filled.mx-icon-message-bubble-edit::before {\n content: \"\\e9da\";\n}\n.mx-icon-filled.mx-icon-message-bubble-information::before {\n content: \"\\e9db\";\n}\n.mx-icon-filled.mx-icon-message-bubble-quotation::before {\n content: \"\\e9dc\";\n}\n.mx-icon-filled.mx-icon-message-bubble-remove::before {\n content: \"\\e9dd\";\n}\n.mx-icon-filled.mx-icon-message-bubble-typing::before {\n content: \"\\e9de\";\n}\n.mx-icon-filled.mx-icon-mobile-phone::before {\n content: \"\\e9df\";\n}\n.mx-icon-filled.mx-icon-modal-window::before {\n content: \"\\e9e0\";\n}\n.mx-icon-filled.mx-icon-monitor::before {\n content: \"\\e9e1\";\n}\n.mx-icon-filled.mx-icon-monitor-camera::before {\n content: \"\\e9e2\";\n}\n.mx-icon-filled.mx-icon-monitor-cash::before {\n content: \"\\e9e3\";\n}\n.mx-icon-filled.mx-icon-monitor-e-learning::before {\n content: \"\\e9e4\";\n}\n.mx-icon-filled.mx-icon-monitor-pie-line-graph::before {\n content: \"\\e9e5\";\n}\n.mx-icon-filled.mx-icon-moon-new::before {\n content: \"\\e9e6\";\n}\n.mx-icon-filled.mx-icon-mountain-flag::before {\n content: \"\\e9e7\";\n}\n.mx-icon-filled.mx-icon-move-down::before {\n content: \"\\e9e8\";\n}\n.mx-icon-filled.mx-icon-move-left::before {\n content: \"\\e9e9\";\n}\n.mx-icon-filled.mx-icon-move-right::before {\n content: \"\\e9ea\";\n}\n.mx-icon-filled.mx-icon-move-up::before {\n content: \"\\e9eb\";\n}\n.mx-icon-filled.mx-icon-music-note::before {\n content: \"\\e9ec\";\n}\n.mx-icon-filled.mx-icon-navigation-menu::before {\n content: \"\\e9ed\";\n}\n.mx-icon-filled.mx-icon-navigation-next::before {\n content: \"\\e9ee\";\n}\n.mx-icon-filled.mx-icon-notes-checklist::before {\n content: \"\\e9ef\";\n}\n.mx-icon-filled.mx-icon-notes-checklist-flip::before {\n content: \"\\e9f0\";\n}\n.mx-icon-filled.mx-icon-notes-paper-edit::before {\n content: \"\\e9f1\";\n}\n.mx-icon-filled.mx-icon-notes-paper-text::before {\n content: \"\\e9f2\";\n}\n.mx-icon-filled.mx-icon-office-sheet::before {\n content: \"\\e9f3\";\n}\n.mx-icon-filled.mx-icon-org-chart::before {\n content: \"\\e9f4\";\n}\n.mx-icon-filled.mx-icon-paper-clipboard::before {\n content: \"\\e9f5\";\n}\n.mx-icon-filled.mx-icon-paper-holder::before {\n content: \"\\e9f6\";\n}\n.mx-icon-filled.mx-icon-paper-holder-full::before {\n content: \"\\e9f7\";\n}\n.mx-icon-filled.mx-icon-paper-list::before {\n content: \"\\e9f8\";\n}\n.mx-icon-filled.mx-icon-paper-plane::before {\n content: \"\\e9f9\";\n}\n.mx-icon-filled.mx-icon-paperclip::before {\n content: \"\\e9fa\";\n}\n.mx-icon-filled.mx-icon-password-lock::before {\n content: \"\\e9fb\";\n}\n.mx-icon-filled.mx-icon-password-type::before {\n content: \"\\e9fc\";\n}\n.mx-icon-filled.mx-icon-paste::before {\n content: \"\\e9fd\";\n}\n.mx-icon-filled.mx-icon-pen-write-paper::before {\n content: \"\\e9fe\";\n}\n.mx-icon-filled.mx-icon-pencil::before {\n content: \"\\e9ff\";\n}\n.mx-icon-filled.mx-icon-pencil-write-paper::before {\n content: \"\\ea00\";\n}\n.mx-icon-filled.mx-icon-performance-graph-calculator::before {\n content: \"\\ea01\";\n}\n.mx-icon-filled.mx-icon-phone::before {\n content: \"\\ea02\";\n}\n.mx-icon-filled.mx-icon-phone-handset::before {\n content: \"\\ea03\";\n}\n.mx-icon-filled.mx-icon-piggy-bank::before {\n content: \"\\ea04\";\n}\n.mx-icon-filled.mx-icon-pin::before {\n content: \"\\ea05\";\n}\n.mx-icon-filled.mx-icon-plane-ticket::before {\n content: \"\\ea06\";\n}\n.mx-icon-filled.mx-icon-play-circle::before {\n content: \"\\ea07\";\n}\n.mx-icon-filled.mx-icon-pound-sterling::before {\n content: \"\\ea08\";\n}\n.mx-icon-filled.mx-icon-power-button::before {\n content: \"\\ea09\";\n}\n.mx-icon-filled.mx-icon-print::before {\n content: \"\\ea0a\";\n}\n.mx-icon-filled.mx-icon-progress-bars::before {\n content: \"\\ea0b\";\n}\n.mx-icon-filled.mx-icon-qr-code::before {\n content: \"\\ea0c\";\n}\n.mx-icon-filled.mx-icon-question-circle::before {\n content: \"\\ea0d\";\n}\n.mx-icon-filled.mx-icon-redo::before {\n content: \"\\ea0e\";\n}\n.mx-icon-filled.mx-icon-refresh::before {\n content: \"\\ea0f\";\n}\n.mx-icon-filled.mx-icon-remove::before {\n content: \"\\ea10\";\n}\n.mx-icon-filled.mx-icon-remove-circle::before {\n content: \"\\ea11\";\n}\n.mx-icon-filled.mx-icon-remove-shield::before {\n content: \"\\ea12\";\n}\n.mx-icon-filled.mx-icon-repeat::before {\n content: \"\\ea13\";\n}\n.mx-icon-filled.mx-icon-resize-full::before {\n content: \"\\ea14\";\n}\n.mx-icon-filled.mx-icon-resize-small::before {\n content: \"\\ea15\";\n}\n.mx-icon-filled.mx-icon-road::before {\n content: \"\\ea16\";\n}\n.mx-icon-filled.mx-icon-robot-head::before {\n content: \"\\ea17\";\n}\n.mx-icon-filled.mx-icon-rss-feed::before {\n content: \"\\ea18\";\n}\n.mx-icon-filled.mx-icon-ruble::before {\n content: \"\\ea19\";\n}\n.mx-icon-filled.mx-icon-scissors::before {\n content: \"\\ea1a\";\n}\n.mx-icon-filled.mx-icon-search::before {\n content: \"\\ea1b\";\n}\n.mx-icon-filled.mx-icon-server::before {\n content: \"\\ea1c\";\n}\n.mx-icon-filled.mx-icon-settings-slider::before {\n content: \"\\ea1d\";\n}\n.mx-icon-filled.mx-icon-settings-slider-1::before {\n content: \"\\ea1e\";\n}\n.mx-icon-filled.mx-icon-share::before {\n content: \"\\ea1f\";\n}\n.mx-icon-filled.mx-icon-share-1::before {\n content: \"\\ea20\";\n}\n.mx-icon-filled.mx-icon-share-arrow::before {\n content: \"\\ea21\";\n}\n.mx-icon-filled.mx-icon-shipment-box::before {\n content: \"\\ea22\";\n}\n.mx-icon-filled.mx-icon-shopping-cart::before {\n content: \"\\ea23\";\n}\n.mx-icon-filled.mx-icon-shopping-cart-full::before {\n content: \"\\ea24\";\n}\n.mx-icon-filled.mx-icon-signal-full::before {\n content: \"\\ea25\";\n}\n.mx-icon-filled.mx-icon-smart-house-garage::before {\n content: \"\\ea26\";\n}\n.mx-icon-filled.mx-icon-smart-watch-circle::before {\n content: \"\\ea27\";\n}\n.mx-icon-filled.mx-icon-smart-watch-square::before {\n content: \"\\ea28\";\n}\n.mx-icon-filled.mx-icon-sort::before {\n content: \"\\ea29\";\n}\n.mx-icon-filled.mx-icon-sort-alphabet-ascending::before {\n content: \"\\ea2a\";\n}\n.mx-icon-filled.mx-icon-sort-alphabet-descending::before {\n content: \"\\ea2b\";\n}\n.mx-icon-filled.mx-icon-sort-ascending::before {\n content: \"\\ea2c\";\n}\n.mx-icon-filled.mx-icon-sort-descending::before {\n content: \"\\ea2d\";\n}\n.mx-icon-filled.mx-icon-sort-numerical-ascending::before {\n content: \"\\ea2e\";\n}\n.mx-icon-filled.mx-icon-sort-numerical-descending::before {\n content: \"\\ea2f\";\n}\n.mx-icon-filled.mx-icon-star::before {\n content: \"\\ea30\";\n}\n.mx-icon-filled.mx-icon-stopwatch::before {\n content: \"\\ea31\";\n}\n.mx-icon-filled.mx-icon-substract::before {\n content: \"\\ea32\";\n}\n.mx-icon-filled.mx-icon-subtract-circle::before {\n content: \"\\ea33\";\n}\n.mx-icon-filled.mx-icon-sun::before {\n content: \"\\ea34\";\n}\n.mx-icon-filled.mx-icon-swap::before {\n content: \"\\ea35\";\n}\n.mx-icon-filled.mx-icon-synchronize-arrow-clock::before {\n content: \"\\ea36\";\n}\n.mx-icon-filled.mx-icon-table-lamp::before {\n content: \"\\ea37\";\n}\n.mx-icon-filled.mx-icon-tablet::before {\n content: \"\\ea38\";\n}\n.mx-icon-filled.mx-icon-tag::before {\n content: \"\\ea39\";\n}\n.mx-icon-filled.mx-icon-tag-group::before {\n content: \"\\ea3a\";\n}\n.mx-icon-filled.mx-icon-task-list-multiple::before {\n content: \"\\ea3b\";\n}\n.mx-icon-filled.mx-icon-text-align-center::before {\n content: \"\\ea3c\";\n}\n.mx-icon-filled.mx-icon-text-align-justify::before {\n content: \"\\ea3d\";\n}\n.mx-icon-filled.mx-icon-text-align-left::before {\n content: \"\\ea3e\";\n}\n.mx-icon-filled.mx-icon-text-align-right::before {\n content: \"\\ea3f\";\n}\n.mx-icon-filled.mx-icon-text-background::before {\n content: \"\\ea40\";\n}\n.mx-icon-filled.mx-icon-text-bold::before {\n content: \"\\ea41\";\n}\n.mx-icon-filled.mx-icon-text-color::before {\n content: \"\\ea42\";\n}\n.mx-icon-filled.mx-icon-text-font::before {\n content: \"\\ea43\";\n}\n.mx-icon-filled.mx-icon-text-header::before {\n content: \"\\ea44\";\n}\n.mx-icon-filled.mx-icon-text-height::before {\n content: \"\\ea45\";\n}\n.mx-icon-filled.mx-icon-text-indent-left::before {\n content: \"\\ea46\";\n}\n.mx-icon-filled.mx-icon-text-indent-right::before {\n content: \"\\ea47\";\n}\n.mx-icon-filled.mx-icon-text-italic::before {\n content: \"\\ea48\";\n}\n.mx-icon-filled.mx-icon-text-size::before {\n content: \"\\ea49\";\n}\n.mx-icon-filled.mx-icon-text-subscript::before {\n content: \"\\ea4a\";\n}\n.mx-icon-filled.mx-icon-text-superscript::before {\n content: \"\\ea4b\";\n}\n.mx-icon-filled.mx-icon-text-width::before {\n content: \"\\ea4c\";\n}\n.mx-icon-filled.mx-icon-three-dots-menu-horizontal::before {\n content: \"\\ea4d\";\n}\n.mx-icon-filled.mx-icon-three-dots-menu-vertical::before {\n content: \"\\ea4e\";\n}\n.mx-icon-filled.mx-icon-thumbs-down::before {\n content: \"\\ea4f\";\n}\n.mx-icon-filled.mx-icon-thumbs-up::before {\n content: \"\\ea50\";\n}\n.mx-icon-filled.mx-icon-time-clock::before {\n content: \"\\ea51\";\n}\n.mx-icon-filled.mx-icon-tint::before {\n content: \"\\ea52\";\n}\n.mx-icon-filled.mx-icon-trash-can::before {\n content: \"\\ea53\";\n}\n.mx-icon-filled.mx-icon-tree::before {\n content: \"\\ea54\";\n}\n.mx-icon-filled.mx-icon-trophy::before {\n content: \"\\ea55\";\n}\n.mx-icon-filled.mx-icon-ui-webpage-slider::before {\n content: \"\\ea56\";\n}\n.mx-icon-filled.mx-icon-unchecked::before {\n content: \"\\ea57\";\n}\n.mx-icon-filled.mx-icon-undo::before {\n content: \"\\ea58\";\n}\n.mx-icon-filled.mx-icon-unlock::before {\n content: \"\\ea59\";\n}\n.mx-icon-filled.mx-icon-upload-bottom::before {\n content: \"\\ea5a\";\n}\n.mx-icon-filled.mx-icon-upload-button::before {\n content: \"\\ea5b\";\n}\n.mx-icon-filled.mx-icon-user::before {\n content: \"\\ea5c\";\n}\n.mx-icon-filled.mx-icon-user-3d-box::before {\n content: \"\\ea5d\";\n}\n.mx-icon-filled.mx-icon-user-man::before {\n content: \"\\ea5e\";\n}\n.mx-icon-filled.mx-icon-user-neutral-group::before {\n content: \"\\ea5f\";\n}\n.mx-icon-filled.mx-icon-user-neutral-pair::before {\n content: \"\\ea60\";\n}\n.mx-icon-filled.mx-icon-user-neutral-shield::before {\n content: \"\\ea61\";\n}\n.mx-icon-filled.mx-icon-user-neutral-sync::before {\n content: \"\\ea62\";\n}\n.mx-icon-filled.mx-icon-user-pair::before {\n content: \"\\ea63\";\n}\n.mx-icon-filled.mx-icon-user-woman::before {\n content: \"\\ea64\";\n}\n.mx-icon-filled.mx-icon-video-camera::before {\n content: \"\\ea65\";\n}\n.mx-icon-filled.mx-icon-view::before {\n content: \"\\ea66\";\n}\n.mx-icon-filled.mx-icon-view-off::before {\n content: \"\\ea67\";\n}\n.mx-icon-filled.mx-icon-wheat::before {\n content: \"\\ea68\";\n}\n.mx-icon-filled.mx-icon-whiteboard::before {\n content: \"\\ea69\";\n}\n.mx-icon-filled.mx-icon-wrench::before {\n content: \"\\ea6a\";\n}\n.mx-icon-filled.mx-icon-yen::before {\n content: \"\\ea6b\";\n}\n.mx-icon-filled.mx-icon-zoom-in::before {\n content: \"\\ea6c\";\n}\n.mx-icon-filled.mx-icon-zoom-out::before {\n content: \"\\ea6d\";\n}\n","@font-face {\n font-family: \"Atlas_Core$Atlas\";\n src: url(\"./fonts/Atlas_Core$Atlas.ttf\") format(\"truetype\");\n}\n.mx-icon-lined {\n display: inline-block;\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n font-family: \"Atlas_Core$Atlas\";\n}\n.mx-icon-lined.mx-icon-add::before {\n content: \"\\e900\";\n}\n.mx-icon-lined.mx-icon-add-circle::before {\n content: \"\\e901\";\n}\n.mx-icon-lined.mx-icon-airplane::before {\n content: \"\\e902\";\n}\n.mx-icon-lined.mx-icon-alarm-bell::before {\n content: \"\\e903\";\n}\n.mx-icon-lined.mx-icon-alarm-bell-off::before {\n content: \"\\e904\";\n}\n.mx-icon-lined.mx-icon-alert-circle::before {\n content: \"\\e905\";\n}\n.mx-icon-lined.mx-icon-alert-triangle::before {\n content: \"\\e906\";\n}\n.mx-icon-lined.mx-icon-align-bottom::before {\n content: \"\\e907\";\n}\n.mx-icon-lined.mx-icon-align-center::before {\n content: \"\\e908\";\n}\n.mx-icon-lined.mx-icon-align-left::before {\n content: \"\\e909\";\n}\n.mx-icon-lined.mx-icon-align-middle::before {\n content: \"\\e90a\";\n}\n.mx-icon-lined.mx-icon-align-right::before {\n content: \"\\e90b\";\n}\n.mx-icon-lined.mx-icon-align-top::before {\n content: \"\\e90c\";\n}\n.mx-icon-lined.mx-icon-analytics-bars::before {\n content: \"\\e90d\";\n}\n.mx-icon-lined.mx-icon-analytics-graph-bar::before {\n content: \"\\e90e\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-down::before {\n content: \"\\e90f\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-left::before {\n content: \"\\e910\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-right::before {\n content: \"\\e911\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-up::before {\n content: \"\\e912\";\n}\n.mx-icon-lined.mx-icon-arrow-down::before {\n content: \"\\e913\";\n}\n.mx-icon-lined.mx-icon-arrow-left::before {\n content: \"\\e914\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-down::before {\n content: \"\\e915\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-left::before {\n content: \"\\e916\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-right::before {\n content: \"\\e917\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-up::before {\n content: \"\\e918\";\n}\n.mx-icon-lined.mx-icon-arrow-right::before {\n content: \"\\e919\";\n}\n.mx-icon-lined.mx-icon-arrow-square-down::before {\n content: \"\\e91a\";\n}\n.mx-icon-lined.mx-icon-arrow-square-left::before {\n content: \"\\e91b\";\n}\n.mx-icon-lined.mx-icon-arrow-square-right::before {\n content: \"\\e91c\";\n}\n.mx-icon-lined.mx-icon-arrow-square-up::before {\n content: \"\\e91d\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-down::before {\n content: \"\\e91e\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-left::before {\n content: \"\\e91f\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-right::before {\n content: \"\\e920\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-up::before {\n content: \"\\e921\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-down::before {\n content: \"\\e922\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-left::before {\n content: \"\\e923\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-right::before {\n content: \"\\e924\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-up::before {\n content: \"\\e925\";\n}\n.mx-icon-lined.mx-icon-arrow-up::before {\n content: \"\\e926\";\n}\n.mx-icon-lined.mx-icon-arrows-retweet::before {\n content: \"\\e927\";\n}\n.mx-icon-lined.mx-icon-asterisk::before {\n content: \"\\e928\";\n}\n.mx-icon-lined.mx-icon-badge::before {\n content: \"\\e929\";\n}\n.mx-icon-lined.mx-icon-barcode::before {\n content: \"\\e92a\";\n}\n.mx-icon-lined.mx-icon-binoculars::before {\n content: \"\\e92b\";\n}\n.mx-icon-lined.mx-icon-bitcoin::before {\n content: \"\\e92c\";\n}\n.mx-icon-lined.mx-icon-blocks::before {\n content: \"\\e92d\";\n}\n.mx-icon-lined.mx-icon-book-closed::before {\n content: \"\\e92e\";\n}\n.mx-icon-lined.mx-icon-book-open::before {\n content: \"\\e92f\";\n}\n.mx-icon-lined.mx-icon-bookmark::before {\n content: \"\\e930\";\n}\n.mx-icon-lined.mx-icon-briefcase::before {\n content: \"\\e931\";\n}\n.mx-icon-lined.mx-icon-browser::before {\n content: \"\\e932\";\n}\n.mx-icon-lined.mx-icon-browser-code::before {\n content: \"\\e933\";\n}\n.mx-icon-lined.mx-icon-browser-page-text::before {\n content: \"\\e934\";\n}\n.mx-icon-lined.mx-icon-browser-search::before {\n content: \"\\e935\";\n}\n.mx-icon-lined.mx-icon-browser-trophy::before {\n content: \"\\e936\";\n}\n.mx-icon-lined.mx-icon-calendar::before {\n content: \"\\e937\";\n}\n.mx-icon-lined.mx-icon-calendar-1::before {\n content: \"\\e938\";\n}\n.mx-icon-lined.mx-icon-camera::before {\n content: \"\\e939\";\n}\n.mx-icon-lined.mx-icon-camping-tent::before {\n content: \"\\e93a\";\n}\n.mx-icon-lined.mx-icon-cash-payment-bill::before {\n content: \"\\e93b\";\n}\n.mx-icon-lined.mx-icon-cash-payment-bill-2::before {\n content: \"\\e93c\";\n}\n.mx-icon-lined.mx-icon-cd::before {\n content: \"\\e93d\";\n}\n.mx-icon-lined.mx-icon-charger::before {\n content: \"\\e93e\";\n}\n.mx-icon-lined.mx-icon-checkmark::before {\n content: \"\\e93f\";\n}\n.mx-icon-lined.mx-icon-checkmark-circle::before {\n content: \"\\e940\";\n}\n.mx-icon-lined.mx-icon-checkmark-shield::before {\n content: \"\\e941\";\n}\n.mx-icon-lined.mx-icon-checkmark-square::before {\n content: \"\\e942\";\n}\n.mx-icon-lined.mx-icon-chevron-down::before {\n content: \"\\e943\";\n}\n.mx-icon-lined.mx-icon-chevron-left::before {\n content: \"\\e944\";\n}\n.mx-icon-lined.mx-icon-chevron-right::before {\n content: \"\\e945\";\n}\n.mx-icon-lined.mx-icon-chevron-up::before {\n content: \"\\e946\";\n}\n.mx-icon-lined.mx-icon-cloud::before {\n content: \"\\e947\";\n}\n.mx-icon-lined.mx-icon-cloud-check::before {\n content: \"\\e948\";\n}\n.mx-icon-lined.mx-icon-cloud-data-transfer::before {\n content: \"\\e949\";\n}\n.mx-icon-lined.mx-icon-cloud-disable::before {\n content: \"\\e94a\";\n}\n.mx-icon-lined.mx-icon-cloud-download::before {\n content: \"\\e94b\";\n}\n.mx-icon-lined.mx-icon-cloud-lock::before {\n content: \"\\e94c\";\n}\n.mx-icon-lined.mx-icon-cloud-off::before {\n content: \"\\e94d\";\n}\n.mx-icon-lined.mx-icon-cloud-refresh::before {\n content: \"\\e94e\";\n}\n.mx-icon-lined.mx-icon-cloud-remove::before {\n content: \"\\e94f\";\n}\n.mx-icon-lined.mx-icon-cloud-search::before {\n content: \"\\e950\";\n}\n.mx-icon-lined.mx-icon-cloud-settings::before {\n content: \"\\e951\";\n}\n.mx-icon-lined.mx-icon-cloud-subtract::before {\n content: \"\\e952\";\n}\n.mx-icon-lined.mx-icon-cloud-sync::before {\n content: \"\\e953\";\n}\n.mx-icon-lined.mx-icon-cloud-upload::before {\n content: \"\\e954\";\n}\n.mx-icon-lined.mx-icon-cloud-warning::before {\n content: \"\\e955\";\n}\n.mx-icon-lined.mx-icon-cog::before {\n content: \"\\e956\";\n}\n.mx-icon-lined.mx-icon-cog-hand-give::before {\n content: \"\\e957\";\n}\n.mx-icon-lined.mx-icon-cog-play::before {\n content: \"\\e958\";\n}\n.mx-icon-lined.mx-icon-cog-shield::before {\n content: \"\\e959\";\n}\n.mx-icon-lined.mx-icon-color-bucket-brush::before {\n content: \"\\e95a\";\n}\n.mx-icon-lined.mx-icon-color-painting-palette::before {\n content: \"\\e95b\";\n}\n.mx-icon-lined.mx-icon-compass-directions::before {\n content: \"\\e95c\";\n}\n.mx-icon-lined.mx-icon-compressed::before {\n content: \"\\e95d\";\n}\n.mx-icon-lined.mx-icon-computer-chip::before {\n content: \"\\e95e\";\n}\n.mx-icon-lined.mx-icon-connect::before {\n content: \"\\e95f\";\n}\n.mx-icon-lined.mx-icon-connect-1::before {\n content: \"\\e960\";\n}\n.mx-icon-lined.mx-icon-console-terminal::before {\n content: \"\\e961\";\n}\n.mx-icon-lined.mx-icon-contacts::before {\n content: \"\\e962\";\n}\n.mx-icon-lined.mx-icon-contrast::before {\n content: \"\\e963\";\n}\n.mx-icon-lined.mx-icon-controls-backward::before {\n content: \"\\e964\";\n}\n.mx-icon-lined.mx-icon-controls-eject::before {\n content: \"\\e965\";\n}\n.mx-icon-lined.mx-icon-controls-fast-backward::before {\n content: \"\\e966\";\n}\n.mx-icon-lined.mx-icon-controls-fast-forward::before {\n content: \"\\e967\";\n}\n.mx-icon-lined.mx-icon-controls-forward::before {\n content: \"\\e968\";\n}\n.mx-icon-lined.mx-icon-controls-pause::before {\n content: \"\\e969\";\n}\n.mx-icon-lined.mx-icon-controls-play::before {\n content: \"\\e96a\";\n}\n.mx-icon-lined.mx-icon-controls-record::before {\n content: \"\\e96b\";\n}\n.mx-icon-lined.mx-icon-controls-shuffle::before {\n content: \"\\e96c\";\n}\n.mx-icon-lined.mx-icon-controls-step-backward::before {\n content: \"\\e96d\";\n}\n.mx-icon-lined.mx-icon-controls-step-forward::before {\n content: \"\\e96e\";\n}\n.mx-icon-lined.mx-icon-controls-stop::before {\n content: \"\\e96f\";\n}\n.mx-icon-lined.mx-icon-controls-volume-full::before {\n content: \"\\e970\";\n}\n.mx-icon-lined.mx-icon-controls-volume-low::before {\n content: \"\\e971\";\n}\n.mx-icon-lined.mx-icon-controls-volume-off::before {\n content: \"\\e972\";\n}\n.mx-icon-lined.mx-icon-conversation-question-warning::before {\n content: \"\\e973\";\n}\n.mx-icon-lined.mx-icon-copy::before {\n content: \"\\e974\";\n}\n.mx-icon-lined.mx-icon-credit-card::before {\n content: \"\\e975\";\n}\n.mx-icon-lined.mx-icon-crossroad-sign::before {\n content: \"\\e976\";\n}\n.mx-icon-lined.mx-icon-cube::before {\n content: \"\\e977\";\n}\n.mx-icon-lined.mx-icon-cutlery::before {\n content: \"\\e978\";\n}\n.mx-icon-lined.mx-icon-dashboard::before {\n content: \"\\e979\";\n}\n.mx-icon-lined.mx-icon-data-transfer::before {\n content: \"\\e97a\";\n}\n.mx-icon-lined.mx-icon-desktop::before {\n content: \"\\e97b\";\n}\n.mx-icon-lined.mx-icon-diamond::before {\n content: \"\\e97c\";\n}\n.mx-icon-lined.mx-icon-direction-buttons::before {\n content: \"\\e97d\";\n}\n.mx-icon-lined.mx-icon-direction-buttons-arrows::before {\n content: \"\\e97e\";\n}\n.mx-icon-lined.mx-icon-disable::before {\n content: \"\\e97f\";\n}\n.mx-icon-lined.mx-icon-document::before {\n content: \"\\e980\";\n}\n.mx-icon-lined.mx-icon-document-open::before {\n content: \"\\e981\";\n}\n.mx-icon-lined.mx-icon-document-save::before {\n content: \"\\e982\";\n}\n.mx-icon-lined.mx-icon-dollar::before {\n content: \"\\e983\";\n}\n.mx-icon-lined.mx-icon-double-bed::before {\n content: \"\\e984\";\n}\n.mx-icon-lined.mx-icon-double-chevron-left::before {\n content: \"\\e985\";\n}\n.mx-icon-lined.mx-icon-double-chevron-right::before {\n content: \"\\e986\";\n}\n.mx-icon-lined.mx-icon-download-bottom::before {\n content: \"\\e987\";\n}\n.mx-icon-lined.mx-icon-download-button::before {\n content: \"\\e988\";\n}\n.mx-icon-lined.mx-icon-duplicate::before {\n content: \"\\e989\";\n}\n.mx-icon-lined.mx-icon-email::before {\n content: \"\\e98a\";\n}\n.mx-icon-lined.mx-icon-equalizer::before {\n content: \"\\e98b\";\n}\n.mx-icon-lined.mx-icon-eraser::before {\n content: \"\\e98c\";\n}\n.mx-icon-lined.mx-icon-euro::before {\n content: \"\\e98d\";\n}\n.mx-icon-lined.mx-icon-expand-horizontal::before {\n content: \"\\e98e\";\n}\n.mx-icon-lined.mx-icon-expand-vertical::before {\n content: \"\\e98f\";\n}\n.mx-icon-lined.mx-icon-external::before {\n content: \"\\e990\";\n}\n.mx-icon-lined.mx-icon-file-pdf::before {\n content: \"\\e991\";\n}\n.mx-icon-lined.mx-icon-file-zip::before {\n content: \"\\e992\";\n}\n.mx-icon-lined.mx-icon-film::before {\n content: \"\\e993\";\n}\n.mx-icon-lined.mx-icon-filter::before {\n content: \"\\e994\";\n}\n.mx-icon-lined.mx-icon-fire::before {\n content: \"\\e995\";\n}\n.mx-icon-lined.mx-icon-flag::before {\n content: \"\\e996\";\n}\n.mx-icon-lined.mx-icon-flash::before {\n content: \"\\e997\";\n}\n.mx-icon-lined.mx-icon-floppy-disk::before {\n content: \"\\e998\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-arrow-down::before {\n content: \"\\e999\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-arrow-up::before {\n content: \"\\e99a\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-checkmark::before {\n content: \"\\e99b\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-group::before {\n content: \"\\e99c\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-remove::before {\n content: \"\\e99d\";\n}\n.mx-icon-lined.mx-icon-folder-closed::before {\n content: \"\\e99e\";\n}\n.mx-icon-lined.mx-icon-folder-open::before {\n content: \"\\e99f\";\n}\n.mx-icon-lined.mx-icon-folder-upload::before {\n content: \"\\e9a0\";\n}\n.mx-icon-lined.mx-icon-fruit-apple::before {\n content: \"\\e9a1\";\n}\n.mx-icon-lined.mx-icon-fullscreen::before {\n content: \"\\e9a2\";\n}\n.mx-icon-lined.mx-icon-gift::before {\n content: \"\\e9a3\";\n}\n.mx-icon-lined.mx-icon-github::before {\n content: \"\\e9a4\";\n}\n.mx-icon-lined.mx-icon-globe::before {\n content: \"\\e9a5\";\n}\n.mx-icon-lined.mx-icon-globe-1::before {\n content: \"\\e9a6\";\n}\n.mx-icon-lined.mx-icon-graduation-hat::before {\n content: \"\\e9a7\";\n}\n.mx-icon-lined.mx-icon-hammer::before {\n content: \"\\e9a8\";\n}\n.mx-icon-lined.mx-icon-hammer-wench::before {\n content: \"\\e9a9\";\n}\n.mx-icon-lined.mx-icon-hand-down::before {\n content: \"\\e9aa\";\n}\n.mx-icon-lined.mx-icon-hand-left::before {\n content: \"\\e9ab\";\n}\n.mx-icon-lined.mx-icon-hand-right::before {\n content: \"\\e9ac\";\n}\n.mx-icon-lined.mx-icon-hand-up::before {\n content: \"\\e9ad\";\n}\n.mx-icon-lined.mx-icon-handshake-business::before {\n content: \"\\e9ae\";\n}\n.mx-icon-lined.mx-icon-hard-drive::before {\n content: \"\\e9af\";\n}\n.mx-icon-lined.mx-icon-headphones::before {\n content: \"\\e9b0\";\n}\n.mx-icon-lined.mx-icon-headphones-mic::before {\n content: \"\\e9b1\";\n}\n.mx-icon-lined.mx-icon-heart::before {\n content: \"\\e9b2\";\n}\n.mx-icon-lined.mx-icon-hierarchy-files::before {\n content: \"\\e9b3\";\n}\n.mx-icon-lined.mx-icon-home::before {\n content: \"\\e9b4\";\n}\n.mx-icon-lined.mx-icon-hourglass::before {\n content: \"\\e9b5\";\n}\n.mx-icon-lined.mx-icon-hyperlink::before {\n content: \"\\e9b6\";\n}\n.mx-icon-lined.mx-icon-image::before {\n content: \"\\e9b7\";\n}\n.mx-icon-lined.mx-icon-image-collection::before {\n content: \"\\e9b8\";\n}\n.mx-icon-lined.mx-icon-images::before {\n content: \"\\e9b9\";\n}\n.mx-icon-lined.mx-icon-info-circle::before {\n content: \"\\e9ba\";\n}\n.mx-icon-lined.mx-icon-laptop::before {\n content: \"\\e9bb\";\n}\n.mx-icon-lined.mx-icon-layout::before {\n content: \"\\e9bc\";\n}\n.mx-icon-lined.mx-icon-layout-1::before {\n content: \"\\e9bd\";\n}\n.mx-icon-lined.mx-icon-layout-2::before {\n content: \"\\e9be\";\n}\n.mx-icon-lined.mx-icon-layout-column::before {\n content: \"\\e9bf\";\n}\n.mx-icon-lined.mx-icon-layout-horizontal::before {\n content: \"\\e9c0\";\n}\n.mx-icon-lined.mx-icon-layout-list::before {\n content: \"\\e9c1\";\n}\n.mx-icon-lined.mx-icon-layout-rounded::before {\n content: \"\\e9c2\";\n}\n.mx-icon-lined.mx-icon-layout-rounded-1::before {\n content: \"\\e9c3\";\n}\n.mx-icon-lined.mx-icon-leaf::before {\n content: \"\\e9c4\";\n}\n.mx-icon-lined.mx-icon-legal-certificate::before {\n content: \"\\e9c5\";\n}\n.mx-icon-lined.mx-icon-lego-block-stack::before {\n content: \"\\e9c6\";\n}\n.mx-icon-lined.mx-icon-light-bulb-shine::before {\n content: \"\\e9c7\";\n}\n.mx-icon-lined.mx-icon-list-bullets::before {\n content: \"\\e9c8\";\n}\n.mx-icon-lined.mx-icon-location-pin::before {\n content: \"\\e9c9\";\n}\n.mx-icon-lined.mx-icon-lock::before {\n content: \"\\e9ca\";\n}\n.mx-icon-lined.mx-icon-lock-key::before {\n content: \"\\e9cb\";\n}\n.mx-icon-lined.mx-icon-login::before {\n content: \"\\e9cc\";\n}\n.mx-icon-lined.mx-icon-login-1::before {\n content: \"\\e9cd\";\n}\n.mx-icon-lined.mx-icon-login-2::before {\n content: \"\\e9ce\";\n}\n.mx-icon-lined.mx-icon-logout::before {\n content: \"\\e9cf\";\n}\n.mx-icon-lined.mx-icon-logout-1::before {\n content: \"\\e9d0\";\n}\n.mx-icon-lined.mx-icon-luggage-travel::before {\n content: \"\\e9d1\";\n}\n.mx-icon-lined.mx-icon-magnet::before {\n content: \"\\e9d2\";\n}\n.mx-icon-lined.mx-icon-map-location-pin::before {\n content: \"\\e9d3\";\n}\n.mx-icon-lined.mx-icon-martini::before {\n content: \"\\e9d4\";\n}\n.mx-icon-lined.mx-icon-megaphone::before {\n content: \"\\e9d5\";\n}\n.mx-icon-lined.mx-icon-message-bubble::before {\n content: \"\\e9d6\";\n}\n.mx-icon-lined.mx-icon-message-bubble-add::before {\n content: \"\\e9d7\";\n}\n.mx-icon-lined.mx-icon-message-bubble-check::before {\n content: \"\\e9d8\";\n}\n.mx-icon-lined.mx-icon-message-bubble-disable::before {\n content: \"\\e9d9\";\n}\n.mx-icon-lined.mx-icon-message-bubble-edit::before {\n content: \"\\e9da\";\n}\n.mx-icon-lined.mx-icon-message-bubble-information::before {\n content: \"\\e9db\";\n}\n.mx-icon-lined.mx-icon-message-bubble-quotation::before {\n content: \"\\e9dc\";\n}\n.mx-icon-lined.mx-icon-message-bubble-remove::before {\n content: \"\\e9dd\";\n}\n.mx-icon-lined.mx-icon-message-bubble-typing::before {\n content: \"\\e9de\";\n}\n.mx-icon-lined.mx-icon-mobile-phone::before {\n content: \"\\e9df\";\n}\n.mx-icon-lined.mx-icon-modal-window::before {\n content: \"\\e9e0\";\n}\n.mx-icon-lined.mx-icon-monitor::before {\n content: \"\\e9e1\";\n}\n.mx-icon-lined.mx-icon-monitor-camera::before {\n content: \"\\e9e2\";\n}\n.mx-icon-lined.mx-icon-monitor-cash::before {\n content: \"\\e9e3\";\n}\n.mx-icon-lined.mx-icon-monitor-e-learning::before {\n content: \"\\e9e4\";\n}\n.mx-icon-lined.mx-icon-monitor-pie-line-graph::before {\n content: \"\\e9e5\";\n}\n.mx-icon-lined.mx-icon-moon-new::before {\n content: \"\\e9e6\";\n}\n.mx-icon-lined.mx-icon-mountain-flag::before {\n content: \"\\e9e7\";\n}\n.mx-icon-lined.mx-icon-move-down::before {\n content: \"\\e9e8\";\n}\n.mx-icon-lined.mx-icon-move-left::before {\n content: \"\\e9e9\";\n}\n.mx-icon-lined.mx-icon-move-right::before {\n content: \"\\e9ea\";\n}\n.mx-icon-lined.mx-icon-move-up::before {\n content: \"\\e9eb\";\n}\n.mx-icon-lined.mx-icon-music-note::before {\n content: \"\\e9ec\";\n}\n.mx-icon-lined.mx-icon-navigation-menu::before {\n content: \"\\e9ed\";\n}\n.mx-icon-lined.mx-icon-navigation-next::before {\n content: \"\\e9ee\";\n}\n.mx-icon-lined.mx-icon-notes-checklist::before {\n content: \"\\e9ef\";\n}\n.mx-icon-lined.mx-icon-notes-checklist-flip::before {\n content: \"\\e9f0\";\n}\n.mx-icon-lined.mx-icon-notes-paper-edit::before {\n content: \"\\e9f1\";\n}\n.mx-icon-lined.mx-icon-notes-paper-text::before {\n content: \"\\e9f2\";\n}\n.mx-icon-lined.mx-icon-office-sheet::before {\n content: \"\\e9f3\";\n}\n.mx-icon-lined.mx-icon-org-chart::before {\n content: \"\\e9f4\";\n}\n.mx-icon-lined.mx-icon-paper-clipboard::before {\n content: \"\\e9f5\";\n}\n.mx-icon-lined.mx-icon-paper-holder::before {\n content: \"\\e9f6\";\n}\n.mx-icon-lined.mx-icon-paper-holder-full::before {\n content: \"\\e9f7\";\n}\n.mx-icon-lined.mx-icon-paper-list::before {\n content: \"\\e9f8\";\n}\n.mx-icon-lined.mx-icon-paper-plane::before {\n content: \"\\e9f9\";\n}\n.mx-icon-lined.mx-icon-paperclip::before {\n content: \"\\e9fa\";\n}\n.mx-icon-lined.mx-icon-password-lock::before {\n content: \"\\e9fb\";\n}\n.mx-icon-lined.mx-icon-password-type::before {\n content: \"\\e9fc\";\n}\n.mx-icon-lined.mx-icon-paste::before {\n content: \"\\e9fd\";\n}\n.mx-icon-lined.mx-icon-pen-write-paper::before {\n content: \"\\e9fe\";\n}\n.mx-icon-lined.mx-icon-pencil::before {\n content: \"\\e9ff\";\n}\n.mx-icon-lined.mx-icon-pencil-write-paper::before {\n content: \"\\ea00\";\n}\n.mx-icon-lined.mx-icon-performance-graph-calculator::before {\n content: \"\\ea01\";\n}\n.mx-icon-lined.mx-icon-phone::before {\n content: \"\\ea02\";\n}\n.mx-icon-lined.mx-icon-phone-handset::before {\n content: \"\\ea03\";\n}\n.mx-icon-lined.mx-icon-piggy-bank::before {\n content: \"\\ea04\";\n}\n.mx-icon-lined.mx-icon-pin::before {\n content: \"\\ea05\";\n}\n.mx-icon-lined.mx-icon-plane-ticket::before {\n content: \"\\ea06\";\n}\n.mx-icon-lined.mx-icon-play-circle::before {\n content: \"\\ea07\";\n}\n.mx-icon-lined.mx-icon-pound-sterling::before {\n content: \"\\ea08\";\n}\n.mx-icon-lined.mx-icon-power-button::before {\n content: \"\\ea09\";\n}\n.mx-icon-lined.mx-icon-print::before {\n content: \"\\ea0a\";\n}\n.mx-icon-lined.mx-icon-progress-bars::before {\n content: \"\\ea0b\";\n}\n.mx-icon-lined.mx-icon-qr-code::before {\n content: \"\\ea0c\";\n}\n.mx-icon-lined.mx-icon-question-circle::before {\n content: \"\\ea0d\";\n}\n.mx-icon-lined.mx-icon-redo::before {\n content: \"\\ea0e\";\n}\n.mx-icon-lined.mx-icon-refresh::before {\n content: \"\\ea0f\";\n}\n.mx-icon-lined.mx-icon-remove::before {\n content: \"\\ea10\";\n}\n.mx-icon-lined.mx-icon-remove-circle::before {\n content: \"\\ea11\";\n}\n.mx-icon-lined.mx-icon-remove-shield::before {\n content: \"\\ea12\";\n}\n.mx-icon-lined.mx-icon-repeat::before {\n content: \"\\ea13\";\n}\n.mx-icon-lined.mx-icon-resize-full::before {\n content: \"\\ea14\";\n}\n.mx-icon-lined.mx-icon-resize-small::before {\n content: \"\\ea15\";\n}\n.mx-icon-lined.mx-icon-road::before {\n content: \"\\ea16\";\n}\n.mx-icon-lined.mx-icon-robot-head::before {\n content: \"\\ea17\";\n}\n.mx-icon-lined.mx-icon-rss-feed::before {\n content: \"\\ea18\";\n}\n.mx-icon-lined.mx-icon-ruble::before {\n content: \"\\ea19\";\n}\n.mx-icon-lined.mx-icon-scissors::before {\n content: \"\\ea1a\";\n}\n.mx-icon-lined.mx-icon-search::before {\n content: \"\\ea1b\";\n}\n.mx-icon-lined.mx-icon-server::before {\n content: \"\\ea1c\";\n}\n.mx-icon-lined.mx-icon-settings-slider::before {\n content: \"\\ea1d\";\n}\n.mx-icon-lined.mx-icon-settings-slider-1::before {\n content: \"\\ea1e\";\n}\n.mx-icon-lined.mx-icon-share::before {\n content: \"\\ea1f\";\n}\n.mx-icon-lined.mx-icon-share-1::before {\n content: \"\\ea20\";\n}\n.mx-icon-lined.mx-icon-share-arrow::before {\n content: \"\\ea21\";\n}\n.mx-icon-lined.mx-icon-shipment-box::before {\n content: \"\\ea22\";\n}\n.mx-icon-lined.mx-icon-shopping-cart::before {\n content: \"\\ea23\";\n}\n.mx-icon-lined.mx-icon-shopping-cart-full::before {\n content: \"\\ea24\";\n}\n.mx-icon-lined.mx-icon-signal-full::before {\n content: \"\\ea25\";\n}\n.mx-icon-lined.mx-icon-smart-house-garage::before {\n content: \"\\ea26\";\n}\n.mx-icon-lined.mx-icon-smart-watch-circle::before {\n content: \"\\ea27\";\n}\n.mx-icon-lined.mx-icon-smart-watch-square::before {\n content: \"\\ea28\";\n}\n.mx-icon-lined.mx-icon-sort::before {\n content: \"\\ea29\";\n}\n.mx-icon-lined.mx-icon-sort-alphabet-ascending::before {\n content: \"\\ea2a\";\n}\n.mx-icon-lined.mx-icon-sort-alphabet-descending::before {\n content: \"\\ea2b\";\n}\n.mx-icon-lined.mx-icon-sort-ascending::before {\n content: \"\\ea2c\";\n}\n.mx-icon-lined.mx-icon-sort-descending::before {\n content: \"\\ea2d\";\n}\n.mx-icon-lined.mx-icon-sort-numerical-ascending::before {\n content: \"\\ea2e\";\n}\n.mx-icon-lined.mx-icon-sort-numerical-descending::before {\n content: \"\\ea2f\";\n}\n.mx-icon-lined.mx-icon-star::before {\n content: \"\\ea30\";\n}\n.mx-icon-lined.mx-icon-stopwatch::before {\n content: \"\\ea31\";\n}\n.mx-icon-lined.mx-icon-substract::before {\n content: \"\\ea32\";\n}\n.mx-icon-lined.mx-icon-subtract-circle::before {\n content: \"\\ea33\";\n}\n.mx-icon-lined.mx-icon-sun::before {\n content: \"\\ea34\";\n}\n.mx-icon-lined.mx-icon-swap::before {\n content: \"\\ea35\";\n}\n.mx-icon-lined.mx-icon-synchronize-arrow-clock::before {\n content: \"\\ea36\";\n}\n.mx-icon-lined.mx-icon-table-lamp::before {\n content: \"\\ea37\";\n}\n.mx-icon-lined.mx-icon-tablet::before {\n content: \"\\ea38\";\n}\n.mx-icon-lined.mx-icon-tag::before {\n content: \"\\ea39\";\n}\n.mx-icon-lined.mx-icon-tag-group::before {\n content: \"\\ea3a\";\n}\n.mx-icon-lined.mx-icon-task-list-multiple::before {\n content: \"\\ea3b\";\n}\n.mx-icon-lined.mx-icon-text-align-center::before {\n content: \"\\ea3c\";\n}\n.mx-icon-lined.mx-icon-text-align-justify::before {\n content: \"\\ea3d\";\n}\n.mx-icon-lined.mx-icon-text-align-left::before {\n content: \"\\ea3e\";\n}\n.mx-icon-lined.mx-icon-text-align-right::before {\n content: \"\\ea3f\";\n}\n.mx-icon-lined.mx-icon-text-background::before {\n content: \"\\ea40\";\n}\n.mx-icon-lined.mx-icon-text-bold::before {\n content: \"\\ea41\";\n}\n.mx-icon-lined.mx-icon-text-color::before {\n content: \"\\ea42\";\n}\n.mx-icon-lined.mx-icon-text-font::before {\n content: \"\\ea43\";\n}\n.mx-icon-lined.mx-icon-text-header::before {\n content: \"\\ea44\";\n}\n.mx-icon-lined.mx-icon-text-height::before {\n content: \"\\ea45\";\n}\n.mx-icon-lined.mx-icon-text-indent-left::before {\n content: \"\\ea46\";\n}\n.mx-icon-lined.mx-icon-text-indent-right::before {\n content: \"\\ea47\";\n}\n.mx-icon-lined.mx-icon-text-italic::before {\n content: \"\\ea48\";\n}\n.mx-icon-lined.mx-icon-text-size::before {\n content: \"\\ea49\";\n}\n.mx-icon-lined.mx-icon-text-subscript::before {\n content: \"\\ea4a\";\n}\n.mx-icon-lined.mx-icon-text-superscript::before {\n content: \"\\ea4b\";\n}\n.mx-icon-lined.mx-icon-text-width::before {\n content: \"\\ea4c\";\n}\n.mx-icon-lined.mx-icon-three-dots-menu-horizontal::before {\n content: \"\\ea4d\";\n}\n.mx-icon-lined.mx-icon-three-dots-menu-vertical::before {\n content: \"\\ea4e\";\n}\n.mx-icon-lined.mx-icon-thumbs-down::before {\n content: \"\\ea4f\";\n}\n.mx-icon-lined.mx-icon-thumbs-up::before {\n content: \"\\ea50\";\n}\n.mx-icon-lined.mx-icon-time-clock::before {\n content: \"\\ea51\";\n}\n.mx-icon-lined.mx-icon-tint::before {\n content: \"\\ea52\";\n}\n.mx-icon-lined.mx-icon-trash-can::before {\n content: \"\\ea53\";\n}\n.mx-icon-lined.mx-icon-tree::before {\n content: \"\\ea54\";\n}\n.mx-icon-lined.mx-icon-trophy::before {\n content: \"\\ea55\";\n}\n.mx-icon-lined.mx-icon-ui-webpage-slider::before {\n content: \"\\ea56\";\n}\n.mx-icon-lined.mx-icon-unchecked::before {\n content: \"\\ea57\";\n}\n.mx-icon-lined.mx-icon-undo::before {\n content: \"\\ea58\";\n}\n.mx-icon-lined.mx-icon-unlock::before {\n content: \"\\ea59\";\n}\n.mx-icon-lined.mx-icon-upload-bottom::before {\n content: \"\\ea5a\";\n}\n.mx-icon-lined.mx-icon-upload-button::before {\n content: \"\\ea5b\";\n}\n.mx-icon-lined.mx-icon-user::before {\n content: \"\\ea5c\";\n}\n.mx-icon-lined.mx-icon-user-3d-box::before {\n content: \"\\ea5d\";\n}\n.mx-icon-lined.mx-icon-user-man::before {\n content: \"\\ea5e\";\n}\n.mx-icon-lined.mx-icon-user-neutral-group::before {\n content: \"\\ea5f\";\n}\n.mx-icon-lined.mx-icon-user-neutral-pair::before {\n content: \"\\ea60\";\n}\n.mx-icon-lined.mx-icon-user-neutral-shield::before {\n content: \"\\ea61\";\n}\n.mx-icon-lined.mx-icon-user-neutral-sync::before {\n content: \"\\ea62\";\n}\n.mx-icon-lined.mx-icon-user-pair::before {\n content: \"\\ea63\";\n}\n.mx-icon-lined.mx-icon-user-woman::before {\n content: \"\\ea64\";\n}\n.mx-icon-lined.mx-icon-video-camera::before {\n content: \"\\ea65\";\n}\n.mx-icon-lined.mx-icon-view::before {\n content: \"\\ea66\";\n}\n.mx-icon-lined.mx-icon-view-off::before {\n content: \"\\ea67\";\n}\n.mx-icon-lined.mx-icon-wheat::before {\n content: \"\\ea68\";\n}\n.mx-icon-lined.mx-icon-whiteboard::before {\n content: \"\\ea69\";\n}\n.mx-icon-lined.mx-icon-wrench::before {\n content: \"\\ea6a\";\n}\n.mx-icon-lined.mx-icon-yen::before {\n content: \"\\ea6b\";\n}\n.mx-icon-lined.mx-icon-zoom-in::before {\n content: \"\\ea6c\";\n}\n.mx-icon-lined.mx-icon-zoom-out::before {\n content: \"\\ea6d\";\n}\n","\r\n.mx-administration-lv-dg-list {\r\n &.mx-listview > ul {\r\n margin: 0;\r\n }\r\n\r\n // &.mx-listview > ul > li::after {\r\n // display: inline-block;\r\n // content: \", \";\r\n // }\r\n \r\n // &.mx-listview > ul > li {\r\n // display: inline-block;\r\n // }\r\n\r\n .mx-listview-empty {\r\n display: none;\r\n }\r\n\r\n .mx-button.mx-listview-loadMore {\r\n text-align: left;\r\n width: auto;\r\n margin: 8px 0 0 0;\r\n }\r\n \r\n}\r\n\r\n","/* \r\n ==| Variables |=========================================================================================\r\n*/\r\n@import \"includes/atlasVariables\"; \r\n@import \"includes/variables\";\r\n@import \"includes/helpers\";\r\n\r\n/* \r\n ==| Widget blocks |=====================================================================================\r\n These blocks contains styles directly related to the widget's appearance and are mostly unique styles\r\n needed to display the widget's UI correctly.\r\n*/\r\n@import \"lightbox\";\r\n@import \"startButton\";\r\n@import \"annotation/annotation-canvas\";\r\n@import \"annotation/annotation-frame\";\r\n@import \"failed\";\r\n@import \"result\";\r\n@import \"feedbackForm\";\r\n\r\n/* \r\n ==| Generic blocks |====================================================================================\r\n These blocks are generic blocks. These styles are styles that apply to the widget's entire UI and\r\n outline the basic styles of the widget (in accordance with Atlas UI).\r\n*/\r\n@import \"dialog/dialog\";\r\n@import \"dialog/underlay\";\r\n@import \"dialog/closeButton\";\r\n@import \"toolbar/toolbar\";\r\n@import \"toolbar/toolButton\";\r\n@import \"labelGroup\";\r\n@import \"button/buttonGroup\";\r\n@import \"button/button\";\r\n@import \"screenshotPreview\";\r\n@import \"tooltip\";\r\n","/// The lightbox displays a preview of the screenshot when clicking on the thumbnail. \r\n\r\n.mxfeedback-lightbox {\r\n position: fixed;\r\n left: 0;\r\n top: 0;\r\n bottom: 0;\r\n right: 0;\r\n overflow: auto;\r\n padding-top: 10vh;\r\n padding-bottom: 10vh;\r\n background-color: $mxfeedback-lightbox-background-color;\r\n z-index: $mxfeedback-z-index-lightbox;\r\n\r\n &__image {\r\n margin: auto;\r\n display: block;\r\n max-width: 70%;\r\n\r\n @include mq($screen-md) {\r\n max-width: calc(100% - 16px);\r\n }\r\n }\r\n\r\n .mxfeedback-close-button {\r\n &__icon {\r\n width: $mxfeedback-icon-size-sm;\r\n height: $mxfeedback-icon-size-sm; \r\n }\r\n }\r\n}\r\n","//== z-index\r\n$mxfeedback-z-index-start-button: 999998 !default;\r\n$mxfeedback-z-index-underlay: 1000001 !default;\r\n$mxfeedback-z-index-lightbox: 1000002 !default;\r\n$mxfeedback-z-index-annotation-canvas: 1000003 !default;\r\n$mxfeedback-z-index-frame: 1000004 !default;\r\n\r\n//== Dimensions\r\n$mxfeedback-dialog-width: 560px;\r\n$mxfeedback-tooltip-width: 240px;\r\n$tool-list-width: 144px;\r\n$mxfeedback-screenshot-preview-height: 192px;\r\n$mxfeedback-dialog-spacing: 40px;\r\n\r\n//== Background colors\r\n$mxfeedback-lightbox-background-color: rgba(0, 0, 0, 0.9);\r\n$mxfeedback-modal-background-color: rgba(0, 0, 0, 0.9);\r\n$mxfeedback-annotation-canvas-background-color: rgba(0, 0, 0, 0.5);\r\n\r\n//== Shadows\r\n$mxfeedback-start-button-shadow: -2px 0 4px 0 rgb(0 0 0 / 30%);\r\n$mxfeedback-shadow-small: 0 2px 4px 0;\r\n$mxfeedback-shadow-color: rgba(0, 0, 0, 0.2);\r\n\r\n//== Icons\r\n$mxfeedback-icon-size-xs: 9px;\r\n$mxfeedback-icon-size-sm: 16px;\r\n$mxfeedback-icon-size-md: 20px;\r\n$mxfeedback-icon-size-lg: 24px;\r\n\r\n//== Annotation\r\n//## Annotation colors\r\n$annotation-colors: (\r\n \"midnight\": #2f3646,\r\n \"grey\": #c1c3c8,\r\n \"green\": #4fd84f,\r\n \"blue\": #47a9ff,\r\n \"purple\": #845eff,\r\n \"magenta\": #ca49f8,\r\n \"red\": #fb4a4c,\r\n \"yellow\": #fcc73a\r\n);\r\n\r\n//## Annotation thickness\r\n$annotation-thickness: (\r\n \"one\": 1px,\r\n \"two\": 2px,\r\n \"three\": 3px,\r\n \"four\": 4px,\r\n \"five\": 5px,\r\n \"six\": 6px\r\n);\r\n\r\n//## Annotation tool variables\r\n$mxfeedback-annotation-tool-size: 25px;\r\n","/// For responsiveness\r\n\r\n@mixin mq($width, $type: min) {\r\n @media only screen and (#{$type}-width: $width) {\r\n @content;\r\n }\r\n}\r\n","/// Creates the blue start button for the feedback widget.\r\n/// This can be replaced by several starting points in the future.\r\n\r\n.mxfeedback-start-button {\r\n position: fixed;\r\n top: 50%;\r\n right: 0;\r\n transform: translate(50%, -50%) rotate(270deg);\r\n transform-origin: bottom center;\r\n padding: $spacing-smaller $spacing-small;\r\n border: none;\r\n border-radius: $border-radius-default $border-radius-default 0 0;\r\n background-color: $btn-primary-bg;\r\n color: $btn-primary-color;\r\n font-size: $m-header-title-size;\r\n box-shadow: $mxfeedback-start-button-shadow;\r\n z-index: $mxfeedback-z-index-start-button;\r\n\r\n &:focus,\r\n &:hover {\r\n background-color: $btn-primary-bg-hover;\r\n }\r\n}\r\n","/// Based on ATLAS UI 3\r\n\r\n$gray-darker: #0a1325;\r\n$gray-dark: #474e5c;\r\n$gray: #787d87;\r\n$gray-light: #a9acb3;\r\n$gray-primary: #e7e7e9;\r\n$gray-lighter: #f8f8f8;\r\n\r\n$brand-default: $gray-primary;\r\n$brand-primary: #264ae5;\r\n$brand-success: #3cb33d;\r\n$brand-warning: #eca51c;\r\n$brand-danger: #e33f4e;\r\n\r\n$font-size-default: 14px;\r\n$font-color-default: #0a1325;\r\n\r\n$border-color-default: #ced0d3;\r\n$border-radius-default: 4px;\r\n\r\n$m-header-title-size: 16px;\r\n\r\n$bg-color-secondary: #fff;\r\n\r\n$font-size-large: 18px;\r\n$font-size-small: 12px;\r\n\r\n$font-weight-semibold: 600;\r\n$font-weight-bold: bold;\r\n\r\n$btn-primary-bg: $brand-primary;\r\n$btn-primary-bg-hover: mix($btn-primary-bg, black, 80%);\r\n$btn-primary-color: #fff;\r\n\r\n$label-primary-color: #fff;\r\n\r\n$spacing-smallest: 2px;\r\n$spacing-smaller: 4px;\r\n$spacing-small: 8px;\r\n$spacing-medium: 16px;\r\n$spacing-large: 24px;\r\n$spacing-larger: 32px;\r\n$spacing-largest: 48px;\r\n\r\n$gutter-size: 8px;\r\n\r\n$screen-xs: 480px;\r\n$screen-sm: 576px;\r\n$screen-md: 768px;\r\n$screen-lg: 992px;\r\n$screen-xl: 1200px;\r\n","/// Creates the canvas for annotation. \r\n/// The background color is required to cover the page behind the annotation canvas.\r\n\r\n.mxfeedback-annotation-canvas {\r\n z-index: $mxfeedback-z-index-annotation-canvas;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n position: fixed;\r\n margin: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: $mxfeedback-annotation-canvas-background-color;\r\n\r\n &__canvas {\r\n position: fixed;\r\n margin-top: $spacing-largest;\r\n }\r\n}\r\n","/// Centers the annotation tool and annotation canvas.\r\n\r\n.mxfeedback-annotation-frame {\r\n position: fixed;\r\n top: 0;\r\n bottom: 0;\r\n right: 0;\r\n left: 0;\r\n z-index: $mxfeedback-z-index-frame;\r\n}\r\n",".mxfeedback-failed {\r\n // TODO: Feels like it can be replaced in the future\r\n &__message {\r\n align-self: center;\r\n margin: $spacing-small;\r\n }\r\n\r\n &__error-image {\r\n margin-top: 30px;\r\n }\r\n}\r\n","/// Style the image on the successfully submitted page\r\n\r\n.mxfeedback-result {\r\n &__result-image {\r\n align-self: center;\r\n width: auto;\r\n max-width: 50%;\r\n }\r\n\r\n .mxfeedback-dialog__body-text {\r\n margin: auto;\r\n }\r\n\r\n &__result-image {\r\n margin-top: 30px;\r\n }\r\n}",".mxfeedback-feedback-form {\r\n &__cancel-button {\r\n border: 0;\r\n }\r\n}\r\n","/// Styles the dialogs.\r\n/// The styling is shared between the different windows.\r\n\r\n.mxfeedback-dialog {\r\n display: flex;\r\n flex-direction: column;\r\n position: fixed;\r\n left: 50%;\r\n top: 50%;\r\n transform: translate(-50%, -50%);\r\n padding: $spacing-large;\r\n width: $mxfeedback-dialog-width;\r\n max-width: calc(100% - #{$mxfeedback-dialog-spacing});\r\n max-height: calc(100% - #{$mxfeedback-dialog-spacing});\r\n background-color: $bg-color-secondary;\r\n border: 1px solid $border-color-default;\r\n border-radius: $border-radius-default;\r\n box-shadow: $mxfeedback-shadow-small $mxfeedback-shadow-color;\r\n overflow: hidden auto;\r\n z-index: $mxfeedback-z-index-underlay;\r\n\r\n &__title {\r\n font-size: $font-size-large;\r\n font-weight: $font-weight-semibold;\r\n line-height: 120%;\r\n margin: 0 0 $spacing-medium;\r\n color: $font-color-default;\r\n align-self: center;\r\n }\r\n}\r\n","/// Styles the underlay behind the dialog.\r\n\r\n.mxfeedback-underlay {\r\n inset: 0;\r\n z-index: $mxfeedback-z-index-underlay;\r\n}\r\n","/// Styles the close button to follow the same styling as ATLAS UI close button.\r\n/// | `btn-primary-color` | To show the close button in white color.|\r\n\r\n.mxfeedback-close-button {\r\n right: $spacing-medium;\r\n top: 12px; // not using variables here as its position should be precise\r\n padding: 0;\r\n background-color: transparent;\r\n border: none;\r\n position: absolute;\r\n \r\n &__icon {\r\n width: 12px;\r\n height: 12px;\r\n color: $font-color-default;\r\n stroke: $font-color-default;\r\n }\r\n\r\n &--white > &__icon {\r\n fill: $btn-primary-color;\r\n }\r\n}\r\n","/// Styles the annotation toolbar.\r\n\r\n.mxfeedback-toolbar {\r\n position: fixed;\r\n display: flex;\r\n align-items: center;\r\n gap: $gutter-size;\r\n top: $spacing-larger;\r\n left: 50%;\r\n transform: translateX(-50%);\r\n padding: $spacing-medium $spacing-larger;\r\n background-color: $bg-color-secondary;\r\n border: 1px solid $border-color-default;\r\n border-radius: $border-radius-default;\r\n font-size: $font-size-small;\r\n box-shadow: $mxfeedback-shadow-small $mxfeedback-shadow-color;\r\n z-index: $mxfeedback-z-index-frame;\r\n\r\n &--gap-md {\r\n gap: $gutter-size * 2;\r\n }\r\n\r\n &--gap-lg {\r\n gap: $gutter-size * 4;\r\n }\r\n}\r\n","/// Styles the color and thickness options in the annotation toolbar.\r\n\r\n.mxfeedback-tool-button {\r\n position: relative;\r\n display: flex;\r\n flex-direction: row;\r\n align-items: center;\r\n background: transparent;\r\n border: 0;\r\n padding: 0;\r\n\r\n &--active {\r\n color: $brand-primary;\r\n }\r\n\r\n &:focus-visible {\r\n color: $btn-primary-bg-hover;\r\n }\r\n\r\n &__inner {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n }\r\n\r\n &__icon {\r\n width: $mxfeedback-icon-size-lg;\r\n height: $mxfeedback-icon-size-lg;\r\n fill: currentColor;\r\n }\r\n\r\n &__label {\r\n margin-top: $spacing-smaller;\r\n color: inherit\r\n }\r\n\r\n &__caret {\r\n fill: $gray-darker;\r\n width: 8px;\r\n height: 8px;\r\n }\r\n\r\n &__dropdown {\r\n position: relative;\r\n display: flex;\r\n align-items: center;\r\n height: 100%;\r\n }\r\n\r\n &__menu {\r\n display: flex;\r\n flex-direction: column;\r\n gap: $gutter-size;\r\n position: absolute;\r\n left: 50%;\r\n top: 100%;\r\n transform: translateX(-50%);\r\n padding: $spacing-small;\r\n background: $bg-color-secondary;\r\n border: 1px solid $border-color-default;\r\n border-radius: $border-radius-default;\r\n width: $tool-list-width;\r\n z-index: 1;\r\n }\r\n\r\n &__list {\r\n display: grid;\r\n grid-template-columns: repeat(4, 1fr); // 4 columns is our default, override with modifier\r\n gap: calc(#{$gutter-size} / 2);\r\n\r\n &--col-3 {\r\n grid-template-columns: repeat(3, 1fr);\r\n }\r\n }\r\n\r\n &__color {\r\n position: relative;\r\n padding: 0;\r\n border: none;\r\n border-radius: 100%;\r\n aspect-ratio: 1 / 1;\r\n\r\n &:focus {\r\n outline: 2px solid $brand-primary;\r\n outline-offset: 2px;\r\n }\r\n\r\n @each $color, $class in $annotation-colors {\r\n &--#{$color} {\r\n background-color: $class;\r\n }\r\n }\r\n\r\n svg {\r\n width: 10px;\r\n height: 10px;\r\n stroke: $btn-primary-color;\r\n }\r\n }\r\n\r\n &__thickness {\r\n background-color: transparent;\r\n border: none;\r\n border-radius: $border-radius-default;\r\n aspect-ratio: 4 / 3;\r\n\r\n &:hover {\r\n background-color: $gray-light;\r\n }\r\n\r\n &:focus {\r\n outline: 2px solid $brand-primary;\r\n outline-offset: 2px;\r\n }\r\n\r\n &--selected {\r\n background-color: $gray;\r\n }\r\n\r\n &::before {\r\n content: \"\";\r\n display: block;\r\n background-color: map-get($annotation-colors, \"midnight\");\r\n width: 100%;\r\n transform: rotate(-45deg);\r\n }\r\n\r\n @each $thickness, $height in $annotation-thickness {\r\n &--#{$thickness} {\r\n &::before {\r\n height: $height;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","/// Styles the label plus tooltip icon.\r\n\r\n.mxfeedback-label-group {\r\n display: flex;\r\n align-items: center;\r\n gap: calc(#{$gutter-size} / 2);\r\n margin-bottom: $spacing-smaller;\r\n\r\n &__label.control-label {\r\n margin-bottom: 0;\r\n }\r\n}\r\n","/// Styles buttons in group to have proper distance between each other.\r\n/// Shows the buttons in column on a smaller screen.\r\n\r\n.mxfeedback-button-group {\r\n display: flex;\r\n justify-content: flex-end;\r\n gap: $gutter-size;\r\n\r\n &--screenshot-container {\r\n flex-direction: row-reverse;\r\n }\r\n\r\n &--gap-md {\r\n gap: $gutter-size * 2;\r\n }\r\n\r\n &--gap-lg {\r\n gap: $gutter-size * 4;\r\n }\r\n\r\n &--justify-start {\r\n justify-content: flex-start;\r\n }\r\n\r\n &--justify-center {\r\n justify-content: center;\r\n }\r\n\r\n &--row-xs {\r\n flex-direction: column;\r\n\r\n @include mq($screen-md) {\r\n flex-direction: row;\r\n }\r\n }\r\n}\r\n","/// Styles a button that contains an icon.\r\n/// In Atlas the icons are added differently.\r\n\r\n.mxfeedback-button {\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n gap: $gutter-size;\r\n\r\n svg {\r\n width: $mxfeedback-icon-size-sm;\r\n height: $mxfeedback-icon-size-sm;\r\n fill: currentColor;\r\n }\r\n}\r\n","/// Styles the screenshot preview container in the form.\r\n\r\n.mxfeedback-screenshot-preview {\r\n position: relative;\r\n margin: 20px auto;\r\n height: $mxfeedback-screenshot-preview-height;\r\n cursor: pointer;\r\n\r\n &__image {\r\n display: block;\r\n object-fit: contain;\r\n height: 100%;\r\n aspect-ratio: 16 / 9;\r\n border: 1px solid $gray;\r\n border-radius: $border-radius-default;\r\n }\r\n\r\n &__overlay {\r\n position: absolute;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n top: 0;\r\n bottom: 0;\r\n left: 0;\r\n right: 0;\r\n width: 100%;\r\n opacity: 0;\r\n transition: 0.3s ease;\r\n background-color: $gray-darker;\r\n border: 1px solid $gray-dark;\r\n border-radius: $border-radius-default;\r\n\r\n &:hover {\r\n opacity: 0.5;\r\n }\r\n\r\n &:focus-visible {\r\n opacity: 0.5;\r\n }\r\n }\r\n\r\n &__preview-icon {\r\n width: $mxfeedback-icon-size-md;\r\n height: $mxfeedback-icon-size-md;\r\n fill: $gray-lighter;\r\n }\r\n\r\n &__delete-icon {\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n transform: translate(50%, -50%);\r\n width: $mxfeedback-icon-size-md;\r\n height: $mxfeedback-icon-size-md;\r\n stroke: $gray-dark;\r\n fill: $gray-lighter;\r\n z-index: 1;\r\n cursor: pointer;\r\n }\r\n}\r\n","/// Create a Tooltip on hover effect.\r\n\r\n$_block: \".mxfeedback-tooltip\";\r\n#{$_block} {\r\n $_offset: 32px;\r\n display: flex;\r\n position: relative;\r\n\r\n &__icon {\r\n width: $mxfeedback-icon-size-sm;\r\n height: $mxfeedback-icon-size-sm;\r\n\r\n &:hover ~ #{$_block}__tip {\r\n visibility: visible;\r\n }\r\n }\r\n\r\n &__tip {\r\n visibility: hidden;\r\n position: absolute;\r\n top: calc(100% + #{$spacing-small});\r\n left: calc(50% - #{$_offset});\r\n width: $mxfeedback-tooltip-width;\r\n max-width: calc(100vw - #{$spacing-larger});\r\n padding: 6px 8px; // not using variables here as its padding should be precise\r\n margin-bottom: 0;\r\n border-radius: 2px; // not using variables here as its border radius should be precise\r\n background-color: $gray-darker;\r\n color: $label-primary-color;\r\n font-size: $font-size-small;\r\n line-height: 1.5;\r\n z-index: 1;\r\n transition: visibility 100ms ease-in-out;\r\n\r\n &::after {\r\n content: \"\";\r\n position: absolute;\r\n top: 0;\r\n left: $_offset;\r\n transform: translate(-50%, -50%) rotate(45deg);\r\n width: 12px;\r\n height: 12px;\r\n background-color: inherit;\r\n text-align: center;\r\n pointer-events: none;\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Take picture styles\r\n========================================================================== */\r\n\r\n.take-picture-wrapper {\r\n height: 100%;\r\n width: 100%;\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n bottom: 0;\r\n left: 0;\r\n display: flex;\r\n flex-direction: column-reverse;\r\n justify-content: space-between;\r\n /* Should be higher than the the video. */\r\n z-index: 111;\r\n}\r\n.take-picture-video-element {\r\n position: absolute;\r\n /* Should be higher than the z-index of '.layout-atlas .region-sidebar' so it sits on top of the page. */\r\n z-index: 110;\r\n top: 0;\r\n left: 0;\r\n right: 0;\r\n bottom: 0;\r\n object-fit: cover;\r\n width: 100%;\r\n height: 100%;\r\n background-color: black;\r\n}\r\n.take-picture-action-control-wrapper {\r\n display: flex;\r\n justify-content: center;\r\n flex-direction: row;\r\n align-items: center;\r\n /* should be higher than the video. */\r\n z-index: 111;\r\n margin-bottom: 74px;\r\n}\r\n.take-picture-action-switch-control-wrapper {\r\n display: flex;\r\n justify-content: space-between;\r\n flex-direction: row;\r\n align-items: center;\r\n /* should be higher than the video. */\r\n z-index: 111;\r\n margin-bottom: 74px;\r\n}\r\n.take-picture-close-control-wrapper {\r\n display: flex;\r\n justify-content: flex-start;\r\n flex-direction: column;\r\n align-items: flex-start;\r\n /* should be higher than the video. */\r\n z-index: 111;\r\n}\r\n.take-picture-action-control {\r\n background-color: transparent;\r\n border-style: none;\r\n padding: 0;\r\n}\r\n.take-picture-action-spacing {\r\n flex: 1;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n}\r\n.take-picture-switch-spacing {\r\n display: flex;\r\n flex: 1;\r\n justify-content: flex-end;\r\n align-items: center;\r\n}\r\n.take-picture-spacing-div {\r\n flex: 1;\r\n}\r\n.take-picture-action-control-inner {\r\n border-radius: 50%;\r\n background-color: white;\r\n border: 1px solid black;\r\n width: 58px;\r\n height: 58px;\r\n}\r\n.take-picture-button-wrapper {\r\n display: flex;\r\n flex-direction: row;\r\n justify-content: space-between;\r\n z-index: 111;\r\n}\r\n.take-picture-save-button {\r\n color: white;\r\n background-color: #264ae5;\r\n width: 100%;\r\n border-radius: 4px;\r\n height: 40px;\r\n font-size: 14px;\r\n line-height: 20px;\r\n text-align: center;\r\n border-style: none;\r\n}\r\n.take-picture-switch-control {\r\n background-color: transparent;\r\n border-style: none;\r\n padding: 0;\r\n margin-right: 22.33px;\r\n}\r\n.take-picture-close-control {\r\n margin: 30px 0 0 30px;\r\n border-style: none;\r\n padding: 0;\r\n background-color: transparent;\r\n}\r\n.take-picture-save-control {\r\n margin: 30px 30px 0 0;\r\n border-style: none;\r\n padding: 0;\r\n background-color: transparent;\r\n}\r\n.take-picture-confirm-wrapper {\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n bottom: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: white;\r\n /* should be higher than the wrapper. */\r\n z-index: 112;\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: space-between;\r\n}\r\n.take-picture-image {\r\n position: absolute;\r\n /* Should be higher than the z-index of '.layout-atlas .region-sidebar' so it sits on top of the page. */\r\n z-index: 110;\r\n top: 0;\r\n left: 0;\r\n right: 0;\r\n bottom: 0;\r\n object-fit: cover;\r\n width: 100%;\r\n height: 100%;\r\n background-color: black;\r\n}\r\n/* Overwrite 'atlas_core/web/core/_legacy/_mxui.scss' for this particular widget because otherwise\r\n iOS Safari will in certain cases put the top and/or bottom bar on top of the overlay of this widget. */\r\n\r\n.mx-scrollcontainer-wrapper:not(.mx-scrollcontainer-nested) {\r\n -webkit-overflow-scrolling: auto;\r\n}\r\n",":root {\r\n /*\r\n DISCLAIMER:\r\n This is a mapping file which will be used to help moving towards CSS variables over time.\r\n Do not change this file because it is core styling.\r\n Customizing core files will make updating Atlas much more difficult in the future.\r\n To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n \r\n \r\n ██████╗ █████╗ ███████╗██╗ ██████╗\r\n ██╔══██╗██╔══██╗██╔════╝██║██╔════╝\r\n ██████╔╝███████║███████╗██║██║\r\n ██╔══██╗██╔══██║╚════██║██║██║\r\n ██████╔╝██║ ██║███████║██║╚██████╗\r\n ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝\r\n */\r\n\r\n /*== Gray Shades*/\r\n /*## Different gray shades to be used for our variables and components */\r\n --gray-darker: #{$gray-darker};\r\n --gray-dark: #{$gray-dark};\r\n --gray: #{$gray};\r\n --gray-light: #{$gray-light};\r\n --gray-primary: #{$gray-primary};\r\n --gray-lighter: #{$gray-lighter};\r\n\r\n /*== Step 1: Brand Colors */\r\n --brand-default: #{$brand-default};\r\n --brand-primary: #{$brand-primary};\r\n --brand-success: #{$brand-success};\r\n --brand-warning: #{$brand-warning};\r\n --brand-danger: #{$brand-danger};\r\n\r\n --brand-logo: #{$brand-logo};\r\n --brand-logo-height: #{$brand-logo-height};\r\n --brand-logo-width: #{$brand-logo-width}; /* Only used for CSS brand logo */\r\n\r\n /*== Step 2: UI Customization */\r\n\r\n /* Default Font Size & Color */\r\n --font-size-default: #{$font-size-default};\r\n --font-color-default: #{$font-color-default};\r\n\r\n /* Global Border Color */\r\n --border-color-default: #{$border-color-default};\r\n --border-radius-default: #{$border-radius-default};\r\n\r\n /* Topbar */\r\n --topbar-bg: #{$topbar-bg};\r\n --topbar-minimalheight: #{$topbar-minimalheight};\r\n --topbar-border-color: #{$topbar-border-color};\r\n\r\n /* Topbar mobile */\r\n --m-header-height: #{$m-header-height};\r\n --m-header-bg: #{$m-header-bg};\r\n --m-header-color: #{$m-header-color};\r\n --m-header-title-size: #{$m-header-title-size};\r\n\r\n /* Navbar Brand Name / For your company, product, or project name (used in layouts/base/) */\r\n --navbar-brand-name: #{$navbar-brand-name};\r\n\r\n /* Background Colors */\r\n /* Backgrounds */\r\n --bg-color: #{$bg-color};\r\n --bg-color: #f8f8f8;\r\n --bg-color-secondary: #{$bg-color-secondary};\r\n\r\n /* Default Link Color */\r\n --link-color: #{$link-color};\r\n --link-hover-color: #{$link-hover-color};\r\n\r\n /*\r\n █████╗ ██████╗ ██╗ ██╗ █████╗ ███╗ ██╗ ██████╗███████╗██████╗\r\n ██╔══██╗██╔══██╗██║ ██║██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗\r\n ███████║██║ ██║██║ ██║███████║██╔██╗ ██║██║ █████╗ ██║ ██║\r\n ██╔══██║██║ ██║╚██╗ ██╔╝██╔══██║██║╚██╗██║██║ ██╔══╝ ██║ ██║\r\n ██║ ██║██████╔╝ ╚████╔╝ ██║ ██║██║ ╚████║╚██████╗███████╗██████╔╝\r\n ╚═╝ ╚═╝╚═════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚══════╝╚═════╝\r\n */\r\n\r\n /*== Typography */\r\n /*## Change your font family, weight, line-height, headings and more (used in components/typography) */\r\n\r\n /* Font Family Import (Used for google font plugin in theme creater) */\r\n --font-family-import: #{$font-family-import};\r\n\r\n /* Font Family / False = fallback from Bootstrap (Helvetica Neue) */\r\n --font-family-base: #{$font-family-base};\r\n\r\n /* Font Sizes */\r\n --font-size-large: #{$font-size-large};\r\n --font-size-small: #{$font-size-small};\r\n\r\n /* Font Weights */\r\n --font-weight-light: #{$font-weight-light};\r\n --font-weight-normal: #{$font-weight-normal};\r\n --font-weight-semibold: #{$font-weight-semibold};\r\n --font-weight-bold: #{$font-weight-bold};\r\n\r\n /* Font Size Headers */\r\n --font-size-h1: #{$font-size-h1};\r\n --font-size-h2: #{$font-size-h2};\r\n --font-size-h3: #{$font-size-h3};\r\n --font-size-h4: #{$font-size-h4};\r\n --font-size-h5: #{$font-size-h5};\r\n --font-size-h6: #{$font-size-h6};\r\n\r\n /* Font Weight Headers */\r\n --font-weight-header: #{$font-weight-header};\r\n\r\n /* Line Height */\r\n --line-height-base: #{$line-height-base};\r\n\r\n /* Spacing */\r\n --font-header-margin: #{$font-header-margin};\r\n\r\n /* Text Colors */\r\n --font-color-detail: #{$font-color-detail};\r\n --font-color-header: #{$font-color-header};\r\n\r\n /*== Navigation */\r\n /*## Used in components/navigation\r\n \r\n /* Default Navigation styling */\r\n --navigation-item-height: #{$navigation-item-height};\r\n --navigation-item-padding: #{$navigation-item-padding};\r\n\r\n --navigation-font-size: #{$navigation-font-size};\r\n --navigation-sub-font-size: #{$navigation-sub-font-size};\r\n --navigation-glyph-size: #{$navigation-glyph-size}; /* For glyphicons that you can select in the Mendix Modeler */\r\n\r\n --navigation-color: #{$navigation-color};\r\n --navigation-color-hover: #{$navigation-color-hover};\r\n --navigation-color-active: #{$navigation-color-active};\r\n\r\n --navigation-sub-color: #{$navigation-sub-color};\r\n --navigation-sub-color-hover: #{$navigation-sub-color-hover};\r\n --navigation-sub-color-active: #{$navigation-sub-color-active};\r\n\r\n /* Navigation Sidebar */\r\n --navsidebar-font-size: #{$navsidebar-font-size};\r\n --navsidebar-sub-font-size: #{$navsidebar-sub-font-size};\r\n --navsidebar-glyph-size: #{$navsidebar-glyph-size}; /* For glyphicons that you can select in the Mendix Modeler */\r\n\r\n --navsidebar-color: #{$navsidebar-color};\r\n --navsidebar-color-hover: #{$navsidebar-color-hover};\r\n --navsidebar-color-active: #{$navsidebar-color-active};\r\n\r\n --navsidebar-sub-color: #{$navsidebar-sub-color};\r\n --navsidebar-sub-color-hover: #{$navsidebar-sub-color-hover};\r\n --navsidebar-sub-color-active: #{$navsidebar-sub-color-active};\r\n\r\n --navsidebar-width-closed: #{$navsidebar-width-closed};\r\n --navsidebar-width-open: #{$navsidebar-width-open};\r\n\r\n /* Navigation topbar */\r\n --navtopbar-font-size: #{$navtopbar-font-size};\r\n --navtopbar-sub-font-size: #{$navtopbar-sub-font-size};\r\n --navtopbar-glyph-size: #{$navtopbar-glyph-size};\r\n\r\n --navtopbar-bg: #{$navtopbar-bg};\r\n --navtopbar-bg-hover: #{$navtopbar-bg-hover};\r\n --navtopbar-bg-active: #{$navtopbar-bg-active};\r\n --navtopbar-color: #{$navtopbar-color};\r\n --navtopbar-color-hover: #{$navtopbar-color-hover};\r\n --navtopbar-color-active: #{$navtopbar-color-active};\r\n\r\n --navtopbar-sub-bg: #{$navtopbar-sub-bg};\r\n --navtopbar-sub-bg-hover: #{$navtopbar-sub-bg-hover};\r\n --navtopbar-sub-bg-active: #{$navtopbar-sub-bg-active};\r\n --navtopbar-sub-color: #{$navtopbar-sub-color};\r\n --navtopbar-sub-color-hover: #{$navtopbar-sub-color-hover};\r\n --navtopbar-sub-color-active: #{$navtopbar-sub-color-active};\r\n\r\n /*== Cards */\r\n /* Shadow color */\r\n --shadow-color-border: #{$shadow-color-border};\r\n --shadow-color: #{$shadow-color};\r\n\r\n /*Shadow size */\r\n --shadow-small: #{$shadow-small};\r\n --shadow-medium: #{$shadow-medium};\r\n --shadow-large: #{$shadow-large};\r\n\r\n /*## Used in layouts/base */\r\n --navtopbar-border-color: #{$navtopbar-border-color};\r\n\r\n /*== Form */\r\n /*## Used in components/inputs */\r\n\r\n /* Values that can be used default | lined */\r\n --form-input-style: #{$form-input-style};\r\n\r\n /* Form Label */\r\n --form-label-size: #{$form-label-size};\r\n --form-label-weight: #{$form-label-weight};\r\n --form-label-gutter: #{$form-label-gutter};\r\n\r\n /* Form Input dimensions */\r\n --form-input-height: #{$form-input-height};\r\n --form-input-padding-y: #{$form-input-padding-y};\r\n --form-input-padding-x: #{$form-input-padding-x};\r\n --form-input-static-padding-y: #{$form-input-static-padding-y};\r\n --form-input-static-padding-x: #{$form-input-static-padding-x};\r\n --form-input-font-size: #{$form-input-font-size};\r\n --form-input-line-height: #{$form-input-line-height};\r\n --form-input-border-radius: #{$form-input-border-radius};\r\n\r\n /* Form Input styling */\r\n --form-input-bg: #{$form-input-bg};\r\n --form-input-bg-focus: #{$form-input-bg-focus};\r\n --form-input-bg-hover: #{$form-input-bg-hover};\r\n --form-input-bg-disabled: #{$form-input-bg-disabled};\r\n --form-input-color: #{$form-input-color};\r\n --form-input-focus-color: #{$form-input-focus-color};\r\n --form-input-disabled-color: #{$form-input-disabled-color};\r\n --form-input-placeholder-color: #{$form-input-placeholder-color};\r\n --form-input-border-color: #{$form-input-border-color};\r\n --form-input-border-focus-color: #{$form-input-border-focus-color};\r\n\r\n /* Form Input Static styling */\r\n --form-input-static-border-color: #{$form-input-static-border-color};\r\n\r\n /* Form Group */\r\n --form-group-margin-bottom: #{$form-group-margin-bottom};\r\n --form-group-gutter: #{$form-group-gutter};\r\n\r\n /*== Buttons */\r\n /*## Define background-color, border-color and text. Used in components/buttons */\r\n\r\n /* Default button style */\r\n --btn-font-size: #{$btn-font-size};\r\n --btn-bordered: #{$btn-bordered}; /* Default value false, set to true if you want this effect */\r\n --btn-border-radius: #{$btn-border-radius};\r\n\r\n /* Button Background Color */\r\n --btn-default-bg: #{$btn-default-bg};\r\n --btn-primary-bg: #{$btn-primary-bg};\r\n --btn-success-bg: #{$btn-success-bg};\r\n --btn-warning-bg: #{$btn-warning-bg};\r\n --btn-danger-bg: #{$btn-danger-bg};\r\n\r\n /* Button Border Color */\r\n --btn-default-border-color: #{$btn-default-border-color};\r\n --btn-primary-border-color: #{$btn-primary-border-color};\r\n --btn-success-border-color: #{$btn-success-border-color};\r\n --btn-warning-border-color: #{$btn-warning-border-color};\r\n --btn-danger-border-color: #{$btn-danger-border-color};\r\n\r\n /* Button Text Color */\r\n --btn-default-color: #{$btn-default-color};\r\n --btn-primary-color: #{$btn-primary-color};\r\n --btn-success-color: #{$btn-success-color};\r\n --btn-warning-color: #{$btn-warning-color};\r\n --btn-danger-color: #{$btn-danger-color};\r\n\r\n /* Button Icon Color */\r\n --btn-default-icon-color: #{$btn-default-icon-color};\r\n\r\n /* Button Background Color */\r\n --btn-default-bg-hover: #{$btn-default-bg-hover};\r\n --btn-primary-bg-hover: #{$btn-primary-bg-hover};\r\n --btn-success-bg-hover: #{$btn-success-bg-hover};\r\n --btn-warning-bg-hover: #{$btn-warning-bg-hover};\r\n --btn-danger-bg-hover: #{$btn-danger-bg-hover};\r\n --btn-link-bg-hover: #{$btn-link-bg-hover};\r\n\r\n /*== Header blocks */\r\n /*## Define look and feel over multible building blocks that serve as header */\r\n\r\n --header-min-height: #{$header-min-height};\r\n --header-bg-color: #{$header-bg-color};\r\n --header-bgimage-filter: #{$header-bgimage-filter};\r\n --header-text-color: #{$header-text-color};\r\n --header-text-color-detail: #{$header-text-color-detail};\r\n\r\n /*\r\n ███████╗██╗ ██╗██████╗ ███████╗██████╗ ████████╗\r\n ██╔════╝╚██╗██╔╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝\r\n █████╗ ╚███╔╝ ██████╔╝█████╗ ██████╔╝ ██║\r\n ██╔══╝ ██╔██╗ ██╔═══╝ ██╔══╝ ██╔══██╗ ██║\r\n ███████╗██╔╝ ██╗██║ ███████╗██║ ██║ ██║\r\n ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝\r\n */\r\n\r\n /*== Color variations */\r\n /*## These variations are used to support several other variables and components */\r\n\r\n /* Color variations */\r\n --color-default-darker: #{$color-default-darker};\r\n --color-default-dark: #{$color-default-dark};\r\n --color-default-light: #{$color-default-light};\r\n --color-default-lighter: #{$color-default-lighter};\r\n\r\n --color-primary-darker: #{$color-primary-darker};\r\n --color-primary-dark: #{$color-primary-dark};\r\n --color-primary-light: #{$color-primary-light};\r\n --color-primary-lighter: #{$color-primary-lighter};\r\n\r\n --color-success-darker: #{$color-success-darker};\r\n --color-success-dark: #{$color-success-dark};\r\n --color-success-light: #{$color-success-light};\r\n --color-success-lighter: #{$color-success-lighter};\r\n\r\n --color-warning-darker: #{$color-warning-darker};\r\n --color-warning-dark: #{$color-warning-dark};\r\n --color-warning-light: #{$color-warning-light};\r\n --color-warning-lighter: #{$color-warning-lighter};\r\n\r\n --color-danger-darker: #{$color-danger-darker};\r\n --color-danger-dark: #{$color-danger-dark};\r\n --color-danger-light: #{$color-danger-light};\r\n --color-danger-lighter: #{$color-danger-lighter};\r\n\r\n --brand-gradient: #{$brand-gradient};\r\n\r\n /*== Grids */\r\n /*## Used for Datagrid, Templategrid, Listview & Tables (see components folder) */\r\n\r\n /* Default Border Colors */\r\n --grid-border-color: #{$grid-border-color};\r\n\r\n /* Spacing */\r\n /* Default */\r\n --grid-padding-top: #{$grid-padding-top};\r\n --grid-padding-right: #{$grid-padding-right};\r\n --grid-padding-bottom: #{$grid-padding-bottom};\r\n --grid-padding-left: #{$grid-padding-left};\r\n\r\n /* Listview */\r\n --listview-padding-top: #{$listview-padding-top};\r\n --listview-padding-right: #{$listview-padding-right};\r\n --listview-padding-bottom: #{$listview-padding-bottom};\r\n --listview-padding-left: #{$listview-padding-left};\r\n\r\n /* Background Colors */\r\n --grid-bg: #{$grid-bg};\r\n --grid-bg-header: #{$grid-bg-header}; //Grid Headers\r\n --grid-bg-hover: #{$grid-bg-hover};\r\n --grid-bg-selected: #{$grid-bg-selected};\r\n --grid-bg-selected-hover: #{$grid-bg-selected-hover};\r\n\r\n /* Striped Background Color */\r\n --grid-bg-striped: #{$grid-bg-striped};\r\n\r\n /* Background Footer Color */\r\n --grid-footer-bg: #{$grid-footer-bg};\r\n\r\n /* Text Color */\r\n --grid-selected-color: #{$grid-selected-color};\r\n\r\n /* Paging Colors */\r\n --grid-paging-bg: #{$grid-paging-bg};\r\n --grid-paging-bg-hover: #{$grid-paging-bg-hover};\r\n --grid-paging-border-color: #{$grid-paging-border-color};\r\n --grid-paging-border-color-hover: #{$grid-paging-border-color-hover};\r\n --grid-paging-color: #{$grid-paging-color};\r\n --grid-paging-color-hover: #{$grid-paging-color-hover};\r\n\r\n /*== Tabs */\r\n /*## Default variables for Tab Container Widget (used in components/tabcontainer) */\r\n\r\n /* Text Color */\r\n --tabs-color: #{$tabs-color};\r\n --tabs-color-active: #{$tabs-color-active};\r\n --tabs-lined-color-active: #{$tabs-lined-color-active};\r\n\r\n --tabs-lined-border-width: #{$tabs-lined-border-width};\r\n\r\n /* Border Color */\r\n --tabs-border-color: #{$tabs-border-color};\r\n --tabs-lined-border-color: #{$tabs-lined-border-color};\r\n\r\n /* Background Color */\r\n --tabs-bg: #{$tabs-bg};\r\n --tabs-bg-pills: #{$tabs-bg-pills};\r\n --tabs-bg-hover: #{$tabs-bg-hover};\r\n --tabs-bg-active: #{$tabs-bg-active};\r\n\r\n /*== Modals */\r\n /*## Default Mendix Modal, Blocking Modal and Login Modal (used in components/modals) */\r\n\r\n /* Background Color */\r\n --modal-header-bg: #{$modal-header-bg};\r\n\r\n /* Border Color */\r\n --modal-header-border-color: #{$modal-header-border-color};\r\n\r\n /* Text Color */\r\n --modal-header-color: #{$modal-header-color};\r\n\r\n /*== Dataview */\r\n /*## Default variables for Dataview Widget (used in components/dataview) */\r\n\r\n /* Controls */\r\n --dataview-controls-bg: #{$dataview-controls-bg};\r\n --dataview-controls-border-color: #{$dataview-controls-border-color};\r\n\r\n /* Empty Message */\r\n --dataview-emptymessage-bg: #{$dataview-emptymessage-bg};\r\n --dataview-emptymessage-color: #{$dataview-emptymessage-color};\r\n\r\n /*== Alerts */\r\n /*## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts) */\r\n\r\n /* Background Color */\r\n --alert-primary-bg: #{$alert-primary-bg};\r\n --alert-secondary-bg: #{$alert-secondary-bg};\r\n --alert-success-bg: #{$alert-success-bg};\r\n --alert-warning-bg: #{$alert-warning-bg};\r\n --alert-danger-bg: #{$alert-danger-bg};\r\n\r\n /* Text Color */\r\n --alert-primary-color: #{$alert-primary-color};\r\n --alert-secondary-color: #{$alert-secondary-color};\r\n --alert-success-color: #{$alert-success-color};\r\n --alert-warning-color: #{$alert-warning-color};\r\n --alert-danger-color: #{$alert-danger-color};\r\n\r\n /* Border Color */\r\n --alert-primary-border-color: #{$alert-primary-border-color};\r\n --alert-secondary-border-color: #{$alert-secondary-border-color};\r\n --alert-success-border-color: #{$alert-success-border-color};\r\n --alert-warning-border-color: #{$alert-warning-border-color};\r\n --alert-danger-border-color: #{$alert-danger-border-color};\r\n\r\n /*== Wizard */\r\n\r\n --wizard-step-height: #{$wizard-step-height};\r\n --wizard-step-number-size: #{$wizard-step-number-size};\r\n --wizard-step-number-font-size: #{$wizard-step-number-font-size};\r\n\r\n /*Wizard states */\r\n --wizard-default: #{$wizard-default};\r\n --wizard-active: #{$wizard-active};\r\n --wizard-visited: #{$wizard-visited};\r\n\r\n /*Wizard step states */\r\n --wizard-default-bg: #{$wizard-default-bg};\r\n --wizard-default-color: #{$wizard-default-color};\r\n --wizard-default-step-color: #{$wizard-default-step-color};\r\n --wizard-default-border-color: #{$wizard-default-border-color};\r\n\r\n --wizard-active-bg: #{$wizard-active-bg};\r\n --wizard-active-color: #{$wizard-active-color};\r\n --wizard-active-step-color: #{$wizard-active-step-color};\r\n --wizard-active-border-color: #{$wizard-active-border-color};\r\n\r\n --wizard-visited-bg: #{$wizard-visited-bg};\r\n --wizard-visited-color: #{$wizard-visited-color};\r\n --wizard-visited-step-color: #{$wizard-visited-step-color};\r\n --wizard-visited-border-color: #{$wizard-visited-border-color};\r\n\r\n /*== Labels */\r\n /*## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels) */\r\n\r\n /* Background Color */\r\n --label-default-bg: #{$label-default-bg};\r\n --label-primary-bg: #{$label-primary-bg};\r\n --label-success-bg: #{$label-success-bg};\r\n --label-warning-bg: #{$label-warning-bg};\r\n --label-danger-bg: #{$label-danger-bg};\r\n\r\n /* Border Color */\r\n --label-default-border-color: #{$label-default-border-color};\r\n --label-primary-border-color: #{$label-primary-border-color};\r\n --label-success-border-color: #{$label-success-border-color};\r\n --label-warning-border-color: #{$label-warning-border-color};\r\n --label-danger-border-color: #{$label-danger-border-color};\r\n\r\n /* Text Color */\r\n --label-default-color: #{$label-default-color};\r\n --label-primary-color: #{$label-primary-color};\r\n --label-success-color: #{$label-success-color};\r\n --label-warning-color: #{$label-warning-color};\r\n --label-danger-color: #{$label-danger-color};\r\n\r\n /*== Groupbox */\r\n /*## Default variables for Groupbox Widget (used in components/groupbox) */\r\n\r\n /* Background Color */\r\n --groupbox-default-bg: #{$groupbox-default-bg};\r\n --groupbox-primary-bg: #{$groupbox-primary-bg};\r\n --groupbox-success-bg: #{$groupbox-success-bg};\r\n --groupbox-warning-bg: #{$groupbox-warning-bg};\r\n --groupbox-danger-bg: #{$groupbox-danger-bg};\r\n --groupbox-white-bg: #{$groupbox-white-bg};\r\n\r\n /* Text Color */\r\n --groupbox-default-color: #{$groupbox-default-color};\r\n --groupbox-primary-color: #{$groupbox-primary-color};\r\n --groupbox-success-color: #{$groupbox-success-color};\r\n --groupbox-warning-color: #{$groupbox-warning-color};\r\n --groupbox-danger-color: #{$groupbox-danger-color};\r\n --groupbox-white-color: #{$groupbox-white-color};\r\n\r\n /*== Callout (groupbox) Colors */\r\n /*## Extended variables for Groupbox Widget (used in components/groupbox) */\r\n\r\n /* Text and Border Color */\r\n --callout-default-color: #{$callout-default-color};\r\n --callout-primary-color: #{$callout-primary-color};\r\n --callout-success-color: #{$callout-success-color};\r\n --callout-warning-color: #{$callout-warning-color};\r\n --callout-danger-color: #{$callout-danger-color};\r\n\r\n /* Background Color */\r\n --callout-default-bg: #{$callout-default-bg};\r\n --callout-primary-bg: #{$callout-primary-bg};\r\n --callout-success-bg: #{$callout-success-bg};\r\n --callout-warning-bg: #{$callout-warning-bg};\r\n --callout-danger-bg: #{$callout-danger-bg};\r\n\r\n /*== Timeline */\r\n /*## Extended variables for Timeline Widget */\r\n /* Colors */\r\n --timeline-icon-color: #{$timeline-icon-color};\r\n --timeline-border-color: #{$timeline-border-color};\r\n --timeline-event-time-color: #{$timeline-event-time-color};\r\n\r\n /* Sizes */\r\n --timeline-icon-size: #{$timeline-icon-size};\r\n --timeline-image-size: #{$timeline-image-size};\r\n\r\n /*Timeline grouping */\r\n --timeline-grouping-size: #{$timeline-grouping-size};\r\n --timeline-grouping-border-radius: #{$timeline-grouping-border-radius};\r\n --timeline-grouping-border-color: #{$timeline-grouping-border-color};\r\n\r\n /*== Accordions */\r\n /*## Extended variables for Accordion Widget */\r\n\r\n /* Default */\r\n --accordion-header-default-bg: #{$accordion-header-default-bg};\r\n --accordion-header-default-bg-hover: #{$accordion-header-default-bg-hover};\r\n --accordion-header-default-color: #{$accordion-header-default-color};\r\n --accordion-default-border-color: #{$accordion-default-border-color};\r\n\r\n --accordion-bg-striped: #{$accordion-bg-striped};\r\n --accordion-bg-striped-hover: #{$accordion-bg-striped-hover};\r\n\r\n /* Semantic background colors */\r\n --accordion-header-primary-bg: #{$accordion-header-primary-bg};\r\n --accordion-header-secondary-bg: #{$accordion-header-secondary-bg};\r\n --accordion-header-success-bg: #{$accordion-header-success-bg};\r\n --accordion-header-warning-bg: #{$accordion-header-warning-bg};\r\n --accordion-header-danger-bg: #{$accordion-header-danger-bg};\r\n\r\n --accordion-header-primary-bg-hover: #{$accordion-header-primary-bg-hover};\r\n --accordion-header-secondary-bg-hover: #{$accordion-header-secondary-bg-hover};\r\n --accordion-header-success-bg-hover: #{$accordion-header-success-bg-hover};\r\n --accordion-header-warning-bg-hover: #{$accordion-header-warning-bg-hover};\r\n --accordion-header-danger-bg-hover: #{$accordion-header-danger-bg-hover};\r\n\r\n /* Semantic text colors */\r\n --accordion-header-primary-color: #{$accordion-header-primary-color};\r\n --accordion-header-secondary-color: #{$accordion-header-secondary-color};\r\n --accordion-header-success-color: #{$accordion-header-success-color};\r\n --accordion-header-warning-color: #{$accordion-header-warning-color};\r\n --accordion-header-danger-color: #{$accordion-header-danger-color};\r\n\r\n /* Semantic border colors */\r\n --accordion-primary-border-color: #{$accordion-primary-border-color};\r\n --accordion-secondary-border-color: #{$accordion-secondary-border-color};\r\n --accordion-success-border-color: #{$accordion-success-border-color};\r\n --accordion-warning-border-color: #{$accordion-warning-border-color};\r\n --accordion-danger-border-color: #{$accordion-danger-border-color};\r\n\r\n /*== Spacing */\r\n /*## Advanced layout options (used in base/mixins/default-spacing) */\r\n\r\n /* Smallest spacing */\r\n --spacing-smallest: #{$spacing-smallest};\r\n\r\n /* Smaller spacing */\r\n --spacing-smaller: #{$spacing-smaller};\r\n\r\n /* Small spacing */\r\n --spacing-small: #{$spacing-small};\r\n\r\n /* Medium spacing */\r\n --spacing-medium: #{$spacing-medium};\r\n --t-spacing-medium: #{$t-spacing-medium};\r\n --m-spacing-medium: #{$m-spacing-medium};\r\n\r\n /* Large spacing */\r\n --spacing-large: #{$spacing-large};\r\n --t-spacing-large: #{$t-spacing-large};\r\n --m-spacing-large: #{$m-spacing-large};\r\n\r\n /* Larger spacing */\r\n --spacing-larger: #{$spacing-larger};\r\n\r\n /* Largest spacing */\r\n --spacing-largest: #{$spacing-largest};\r\n\r\n /* Layout spacing */\r\n --layout-spacing-top: #{$layout-spacing-top};\r\n --layout-spacing-right: #{$layout-spacing-right};\r\n --layout-spacing-bottom: #{$layout-spacing-bottom};\r\n --layout-spacing-left: #{$layout-spacing-left};\r\n\r\n --t-layout-spacing-top: #{$t-layout-spacing-top};\r\n --t-layout-spacing-right: #{$t-layout-spacing-right};\r\n --t-layout-spacing-bottom: #{$t-layout-spacing-bottom};\r\n --t-layout-spacing-left: #{$t-layout-spacing-left};\r\n\r\n --m-layout-spacing-top: #{$m-layout-spacing-top};\r\n --m-layout-spacing-right: #{$m-layout-spacing-right};\r\n --m-layout-spacing-bottom: #{$m-layout-spacing-bottom};\r\n --m-layout-spacing-left: #{$m-layout-spacing-left};\r\n\r\n /* Combined layout spacing */\r\n --layout-spacing: #{$layout-spacing};\r\n --m-layout-spacing: #{$m-layout-spacing};\r\n --t-layout-spacing: #{$t-layout-spacing};\r\n\r\n /* Gutter size */\r\n --gutter-size: #{$gutter-size};\r\n\r\n /*== Tables */\r\n /*## Table spacing options (used in components/tables) */\r\n\r\n --padding-table-cell-top: #{$padding-table-cell-top};\r\n --padding-table-cell-bottom: #{$padding-table-cell-bottom};\r\n --padding-table-cell-left: #{$padding-table-cell-left};\r\n --padding-table-cell-right: #{$padding-table-cell-right};\r\n\r\n /*== Media queries breakpoints */\r\n /*## Define the breakpoints at which your layout will change, adapting to different screen sizes. */\r\n\r\n --screen-xs: #{$screen-xs};\r\n --screen-sm: #{$screen-sm};\r\n --screen-md: #{$screen-md};\r\n --screen-lg: #{$screen-lg};\r\n --screen-xl: #{$screen-xl};\r\n\r\n /* So media queries don't overlap when required, provide a maximum (used for max-width) */\r\n --screen-xs-max: #{$screen-xs-max};\r\n --screen-sm-max: #{$screen-sm-max};\r\n --screen-md-max: #{$screen-md-max};\r\n --screen-lg-max: #{$screen-lg-max};\r\n\r\n /*== Settings */\r\n /*## Enable or disable your desired framework features */\r\n /* Use of !important */\r\n --important-flex: #{$important-flex}; // ./base/flex.scss\r\n --important-spacing: #{$important-spacing}; // ./base/spacing.scss\r\n --important-helpers: #{$important-helpers}; // ./helpers/helperclasses.scss\r\n\r\n /*===== Legacy variables ===== */\r\n\r\n /*== Step 1: Brand Colors */\r\n --brand-inverse: #{$brand-inverse};\r\n --brand-info: #{$brand-info};\r\n\r\n /*== Step 2: UI Customization */\r\n /* Sidebar */\r\n --sidebar-bg: #{$sidebar-bg};\r\n\r\n /*== Navigation */\r\n /*## Used in components/navigation */\r\n\r\n /* Default Navigation styling */\r\n --navigation-bg: #{$navigation-bg};\r\n --navigation-bg-hover: #{$navigation-bg-hover};\r\n --navigation-bg-active: #{$navigation-bg-active};\r\n\r\n --navigation-sub-bg: #{$navigation-sub-bg};\r\n --navigation-sub-bg-hover: #{$navigation-sub-bg-hover};\r\n --navigation-sub-bg-active: #{$navigation-sub-bg-active};\r\n\r\n --navigation-border-color: #{$navigation-border-color};\r\n\r\n /* Navigation Sidebar */\r\n --navsidebar-bg: #{$navsidebar-bg};\r\n --navsidebar-bg-hover: #{$navsidebar-bg-hover};\r\n --navsidebar-bg-active: #{$navsidebar-bg-active};\r\n\r\n --navsidebar-sub-bg: #{$navsidebar-sub-bg};\r\n --navsidebar-sub-bg-hover: #{$navsidebar-sub-bg-hover};\r\n --navsidebar-sub-bg-active: #{$navsidebar-sub-bg-active};\r\n\r\n --navsidebar-border-color: #{$navsidebar-border-color};\r\n\r\n /*== Form */\r\n /*## Used in components/inputs */\r\n\r\n /* Form Label */\r\n --form-label-color: #{$form-label-color};\r\n\r\n /*== Buttons */\r\n /*## Define background-color, border-color and text. Used in components/buttons */\r\n\r\n /* Button Background Color */\r\n --btn-inverse-bg: #{$btn-inverse-bg};\r\n --btn-info-bg: #{$btn-info-bg};\r\n\r\n /* Button Border Color */\r\n --btn-inverse-border-color: #{$btn-inverse-border-color};\r\n --btn-info-border-color: #{$btn-info-border-color};\r\n\r\n /* Button Text Color */\r\n --btn-inverse-color: #{$btn-inverse-color};\r\n --btn-info-color: #{$btn-info-color};\r\n\r\n /* Button Background Color */\r\n --btn-inverse-bg-hover: #{$btn-inverse-bg-hover};\r\n --btn-info-bg-hover: #{$btn-info-bg-hover};\r\n\r\n /*== Color variations */\r\n /*## These variations are used to support several other variables and components */\r\n\r\n /* Color variations */\r\n --color-inverse-darker: #{$color-inverse-darker};\r\n --color-inverse-dark: #{$color-inverse-dark};\r\n --color-inverse-light: #{$color-inverse-light};\r\n --color-inverse-lighter: #{$color-inverse-lighter};\r\n\r\n --color-info-darker: #{$color-info-darker};\r\n --color-info-dark: #{$color-info-dark};\r\n --color-info-light: #{$color-info-light};\r\n --color-info-lighter: #{$color-info-lighter};\r\n\r\n /*== Alerts */\r\n /*## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts) */\r\n\r\n /* Background Color */\r\n --alert-info-bg: #{$alert-info-bg};\r\n\r\n /* Text Color */\r\n --alert-info-color: #{$alert-info-color};\r\n\r\n /* Border Color */\r\n --alert-info-border-color: #{$alert-info-border-color};\r\n /*== Labels */\r\n /*## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels) */\r\n\r\n /* Background Color */\r\n --label-info-bg: #{$label-info-bg};\r\n --label-inverse-bg: #{$label-inverse-bg};\r\n\r\n /* Border Color */\r\n --label-info-border-color: #{$label-info-border-color};\r\n --label-inverse-border-color: #{$label-inverse-border-color};\r\n\r\n /* Text Color */\r\n --label-info-color: #{$label-info-color};\r\n --label-inverse-color: #{$label-inverse-color};\r\n\r\n /*== Groupbox */\r\n /*## Default variables for Groupbox Widget (used in components/groupbox) */\r\n\r\n /* Background Color */\r\n --groupbox-inverse-bg: #{$groupbox-inverse-bg};\r\n --groupbox-info-bg: #{$groupbox-info-bg};\r\n\r\n /* Text Color */\r\n --groupbox-inverse-color: #{$groupbox-inverse-color};\r\n --groupbox-info-color: #{$groupbox-info-color};\r\n /*== Callout (groupbox) Colors */\r\n /*## Extended variables for Groupbox Widget (used in components/groupbox) */\r\n\r\n /* Text and Border Color */\r\n --callout-info-color: #{$callout-info-color};\r\n\r\n /* Background Color */\r\n --callout-info-bg: #{$callout-info-bg};\r\n}\r\n","/*!\r\n * Bootstrap v3.3.4 (http://getbootstrap.com)\r\n * Copyright 2011-2015 Twitter, Inc.\r\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\r\n */\r\n\r\n@mixin bootstrap() {\r\n /*! normalize.css v3.0.2 | MIT License | git.io/normalize */\r\n html {\r\n font-family: sans-serif;\r\n -webkit-text-size-adjust: 100%;\r\n -ms-text-size-adjust: 100%;\r\n }\r\n body {\r\n margin: 0;\r\n }\r\n article,\r\n aside,\r\n details,\r\n figcaption,\r\n figure,\r\n footer,\r\n header,\r\n hgroup,\r\n main,\r\n menu,\r\n nav,\r\n section,\r\n summary {\r\n display: block;\r\n }\r\n audio,\r\n canvas,\r\n progress,\r\n video {\r\n display: inline-block;\r\n vertical-align: baseline;\r\n }\r\n audio:not([controls]) {\r\n display: none;\r\n height: 0;\r\n }\r\n [hidden],\r\n template {\r\n display: none;\r\n }\r\n a {\r\n background-color: transparent;\r\n }\r\n a:active,\r\n a:hover {\r\n outline: 0;\r\n }\r\n abbr[title] {\r\n border-bottom: 1px dotted;\r\n }\r\n b,\r\n strong {\r\n font-weight: bold;\r\n }\r\n dfn {\r\n font-style: italic;\r\n }\r\n h1 {\r\n margin: 0.67em 0;\r\n font-size: 2em;\r\n }\r\n mark {\r\n color: #000;\r\n background: #ff0;\r\n }\r\n small {\r\n font-size: 80%;\r\n }\r\n sub,\r\n sup {\r\n position: relative;\r\n font-size: 75%;\r\n line-height: 0;\r\n vertical-align: baseline;\r\n }\r\n sup {\r\n top: -0.5em;\r\n }\r\n sub {\r\n bottom: -0.25em;\r\n }\r\n img {\r\n border: 0;\r\n }\r\n svg:not(:root) {\r\n overflow: hidden;\r\n }\r\n figure {\r\n margin: 1em 40px;\r\n }\r\n hr {\r\n height: 0;\r\n -webkit-box-sizing: content-box;\r\n -moz-box-sizing: content-box;\r\n box-sizing: content-box;\r\n }\r\n pre {\r\n overflow: auto;\r\n }\r\n code,\r\n kbd,\r\n pre,\r\n samp {\r\n font-family: monospace, monospace;\r\n font-size: 1em;\r\n }\r\n button,\r\n input,\r\n optgroup,\r\n select,\r\n textarea {\r\n margin: 0;\r\n font: inherit;\r\n color: inherit;\r\n }\r\n button {\r\n overflow: visible;\r\n }\r\n button,\r\n select {\r\n text-transform: none;\r\n }\r\n button,\r\n html input[type=\"button\"],\r\n input[type=\"reset\"],\r\n input[type=\"submit\"] {\r\n -webkit-appearance: button;\r\n cursor: pointer;\r\n }\r\n //button[disabled],\r\n //html input[disabled] {\r\n // cursor: default;\r\n //}\r\n button::-moz-focus-inner,\r\n input::-moz-focus-inner {\r\n padding: 0;\r\n border: 0;\r\n }\r\n input {\r\n line-height: normal;\r\n }\r\n input[type=\"checkbox\"],\r\n input[type=\"radio\"] {\r\n -webkit-box-sizing: border-box;\r\n -moz-box-sizing: border-box;\r\n box-sizing: border-box;\r\n padding: 0;\r\n }\r\n input[type=\"number\"]::-webkit-inner-spin-button,\r\n input[type=\"number\"]::-webkit-outer-spin-button {\r\n height: auto;\r\n }\r\n input[type=\"search\"] {\r\n -webkit-box-sizing: content-box;\r\n -moz-box-sizing: content-box;\r\n box-sizing: content-box;\r\n -webkit-appearance: textfield;\r\n }\r\n input[type=\"search\"]::-webkit-search-cancel-button,\r\n input[type=\"search\"]::-webkit-search-decoration {\r\n -webkit-appearance: none;\r\n }\r\n fieldset {\r\n padding: 0.35em 0.625em 0.75em;\r\n margin: 0 2px;\r\n border: 1px solid #c0c0c0;\r\n }\r\n legend {\r\n padding: 0;\r\n border: 0;\r\n }\r\n textarea {\r\n overflow: auto;\r\n }\r\n optgroup {\r\n font-weight: bold;\r\n }\r\n table {\r\n border-spacing: 0;\r\n border-collapse: collapse;\r\n }\r\n td,\r\n th {\r\n padding: 0;\r\n }\r\n /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\r\n @media print {\r\n *,\r\n *:before,\r\n *:after {\r\n color: #000 !important;\r\n text-shadow: none !important;\r\n background: transparent !important;\r\n -webkit-box-shadow: none !important;\r\n box-shadow: none !important;\r\n }\r\n a,\r\n a:visited {\r\n text-decoration: underline;\r\n }\r\n a[href]:after {\r\n content: \" (\" attr(href) \")\";\r\n }\r\n abbr[title]:after {\r\n content: \" (\" attr(title) \")\";\r\n }\r\n a[href^=\"#\"]:after,\r\n a[href^=\"javascript:\"]:after {\r\n content: \"\";\r\n }\r\n pre,\r\n blockquote {\r\n border: 1px solid #999;\r\n\r\n page-break-inside: avoid;\r\n }\r\n thead {\r\n display: table-header-group;\r\n }\r\n tr,\r\n img {\r\n page-break-inside: avoid;\r\n }\r\n img {\r\n max-width: 100% !important;\r\n }\r\n p,\r\n h2,\r\n h3 {\r\n orphans: 3;\r\n widows: 3;\r\n }\r\n h2,\r\n h3 {\r\n page-break-after: avoid;\r\n }\r\n select {\r\n background: #fff !important;\r\n }\r\n .navbar {\r\n display: none;\r\n }\r\n .btn > .caret,\r\n .dropup > .btn > .caret {\r\n border-top-color: #000 !important;\r\n }\r\n .label {\r\n border: 1px solid #000;\r\n }\r\n .table {\r\n border-collapse: collapse !important;\r\n }\r\n .table td,\r\n .table th {\r\n background-color: #fff !important;\r\n }\r\n .table-bordered th,\r\n .table-bordered td {\r\n border: 1px solid #ddd !important;\r\n }\r\n }\r\n @font-face {\r\n font-family: \"Glyphicons Halflings\";\r\n src: url(\"./resources/glyphicons-halflings-regular.woff2\") format(\"woff2\");\r\n }\r\n .glyphicon {\r\n position: relative;\r\n top: 1px;\r\n display: inline-block;\r\n font-family: \"Glyphicons Halflings\";\r\n font-style: normal;\r\n font-weight: normal;\r\n line-height: 1;\r\n\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n }\r\n .glyphicon-asterisk:before {\r\n content: \"\\2a\";\r\n }\r\n .glyphicon-plus:before {\r\n content: \"\\2b\";\r\n }\r\n .glyphicon-euro:before,\r\n .glyphicon-eur:before {\r\n content: \"\\20ac\";\r\n }\r\n .glyphicon-minus:before {\r\n content: \"\\2212\";\r\n }\r\n .glyphicon-cloud:before {\r\n content: \"\\2601\";\r\n }\r\n .glyphicon-envelope:before {\r\n content: \"\\2709\";\r\n }\r\n .glyphicon-pencil:before {\r\n content: \"\\270f\";\r\n }\r\n .glyphicon-glass:before {\r\n content: \"\\e001\";\r\n }\r\n .glyphicon-music:before {\r\n content: \"\\e002\";\r\n }\r\n .glyphicon-search:before {\r\n content: \"\\e003\";\r\n }\r\n .glyphicon-heart:before {\r\n content: \"\\e005\";\r\n }\r\n .glyphicon-star:before {\r\n content: \"\\e006\";\r\n }\r\n .glyphicon-star-empty:before {\r\n content: \"\\e007\";\r\n }\r\n .glyphicon-user:before {\r\n content: \"\\e008\";\r\n }\r\n .glyphicon-film:before {\r\n content: \"\\e009\";\r\n }\r\n .glyphicon-th-large:before {\r\n content: \"\\e010\";\r\n }\r\n .glyphicon-th:before {\r\n content: \"\\e011\";\r\n }\r\n .glyphicon-th-list:before {\r\n content: \"\\e012\";\r\n }\r\n .glyphicon-ok:before {\r\n content: \"\\e013\";\r\n }\r\n .glyphicon-remove:before {\r\n content: \"\\e014\";\r\n }\r\n .glyphicon-zoom-in:before {\r\n content: \"\\e015\";\r\n }\r\n .glyphicon-zoom-out:before {\r\n content: \"\\e016\";\r\n }\r\n .glyphicon-off:before {\r\n content: \"\\e017\";\r\n }\r\n .glyphicon-signal:before {\r\n content: \"\\e018\";\r\n }\r\n .glyphicon-cog:before {\r\n content: \"\\e019\";\r\n }\r\n .glyphicon-trash:before {\r\n content: \"\\e020\";\r\n }\r\n .glyphicon-home:before {\r\n content: \"\\e021\";\r\n }\r\n .glyphicon-file:before {\r\n content: \"\\e022\";\r\n }\r\n .glyphicon-time:before {\r\n content: \"\\e023\";\r\n }\r\n .glyphicon-road:before {\r\n content: \"\\e024\";\r\n }\r\n .glyphicon-download-alt:before {\r\n content: \"\\e025\";\r\n }\r\n .glyphicon-download:before {\r\n content: \"\\e026\";\r\n }\r\n .glyphicon-upload:before {\r\n content: \"\\e027\";\r\n }\r\n .glyphicon-inbox:before {\r\n content: \"\\e028\";\r\n }\r\n .glyphicon-play-circle:before {\r\n content: \"\\e029\";\r\n }\r\n .glyphicon-repeat:before {\r\n content: \"\\e030\";\r\n }\r\n .glyphicon-refresh:before {\r\n content: \"\\e031\";\r\n }\r\n .glyphicon-list-alt:before {\r\n content: \"\\e032\";\r\n }\r\n .glyphicon-lock:before {\r\n content: \"\\e033\";\r\n }\r\n .glyphicon-flag:before {\r\n content: \"\\e034\";\r\n }\r\n .glyphicon-headphones:before {\r\n content: \"\\e035\";\r\n }\r\n .glyphicon-volume-off:before {\r\n content: \"\\e036\";\r\n }\r\n .glyphicon-volume-down:before {\r\n content: \"\\e037\";\r\n }\r\n .glyphicon-volume-up:before {\r\n content: \"\\e038\";\r\n }\r\n .glyphicon-qrcode:before {\r\n content: \"\\e039\";\r\n }\r\n .glyphicon-barcode:before {\r\n content: \"\\e040\";\r\n }\r\n .glyphicon-tag:before {\r\n content: \"\\e041\";\r\n }\r\n .glyphicon-tags:before {\r\n content: \"\\e042\";\r\n }\r\n .glyphicon-book:before {\r\n content: \"\\e043\";\r\n }\r\n .glyphicon-bookmark:before {\r\n content: \"\\e044\";\r\n }\r\n .glyphicon-print:before {\r\n content: \"\\e045\";\r\n }\r\n .glyphicon-camera:before {\r\n content: \"\\e046\";\r\n }\r\n .glyphicon-font:before {\r\n content: \"\\e047\";\r\n }\r\n .glyphicon-bold:before {\r\n content: \"\\e048\";\r\n }\r\n .glyphicon-italic:before {\r\n content: \"\\e049\";\r\n }\r\n .glyphicon-text-height:before {\r\n content: \"\\e050\";\r\n }\r\n .glyphicon-text-width:before {\r\n content: \"\\e051\";\r\n }\r\n .glyphicon-align-left:before {\r\n content: \"\\e052\";\r\n }\r\n .glyphicon-align-center:before {\r\n content: \"\\e053\";\r\n }\r\n .glyphicon-align-right:before {\r\n content: \"\\e054\";\r\n }\r\n .glyphicon-align-justify:before {\r\n content: \"\\e055\";\r\n }\r\n .glyphicon-list:before {\r\n content: \"\\e056\";\r\n }\r\n .glyphicon-indent-left:before {\r\n content: \"\\e057\";\r\n }\r\n .glyphicon-indent-right:before {\r\n content: \"\\e058\";\r\n }\r\n .glyphicon-facetime-video:before {\r\n content: \"\\e059\";\r\n }\r\n .glyphicon-picture:before {\r\n content: \"\\e060\";\r\n }\r\n .glyphicon-map-marker:before {\r\n content: \"\\e062\";\r\n }\r\n .glyphicon-adjust:before {\r\n content: \"\\e063\";\r\n }\r\n .glyphicon-tint:before {\r\n content: \"\\e064\";\r\n }\r\n .glyphicon-edit:before {\r\n content: \"\\e065\";\r\n }\r\n .glyphicon-share:before {\r\n content: \"\\e066\";\r\n }\r\n .glyphicon-check:before {\r\n content: \"\\e067\";\r\n }\r\n .glyphicon-move:before {\r\n content: \"\\e068\";\r\n }\r\n .glyphicon-step-backward:before {\r\n content: \"\\e069\";\r\n }\r\n .glyphicon-fast-backward:before {\r\n content: \"\\e070\";\r\n }\r\n .glyphicon-backward:before {\r\n content: \"\\e071\";\r\n }\r\n .glyphicon-play:before {\r\n content: \"\\e072\";\r\n }\r\n .glyphicon-pause:before {\r\n content: \"\\e073\";\r\n }\r\n .glyphicon-stop:before {\r\n content: \"\\e074\";\r\n }\r\n .glyphicon-forward:before {\r\n content: \"\\e075\";\r\n }\r\n .glyphicon-fast-forward:before {\r\n content: \"\\e076\";\r\n }\r\n .glyphicon-step-forward:before {\r\n content: \"\\e077\";\r\n }\r\n .glyphicon-eject:before {\r\n content: \"\\e078\";\r\n }\r\n .glyphicon-chevron-left:before {\r\n content: \"\\e079\";\r\n }\r\n .glyphicon-chevron-right:before {\r\n content: \"\\e080\";\r\n }\r\n .glyphicon-plus-sign:before {\r\n content: \"\\e081\";\r\n }\r\n .glyphicon-minus-sign:before {\r\n content: \"\\e082\";\r\n }\r\n .glyphicon-remove-sign:before {\r\n content: \"\\e083\";\r\n }\r\n .glyphicon-ok-sign:before {\r\n content: \"\\e084\";\r\n }\r\n .glyphicon-question-sign:before {\r\n content: \"\\e085\";\r\n }\r\n .glyphicon-info-sign:before {\r\n content: \"\\e086\";\r\n }\r\n .glyphicon-screenshot:before {\r\n content: \"\\e087\";\r\n }\r\n .glyphicon-remove-circle:before {\r\n content: \"\\e088\";\r\n }\r\n .glyphicon-ok-circle:before {\r\n content: \"\\e089\";\r\n }\r\n .glyphicon-ban-circle:before {\r\n content: \"\\e090\";\r\n }\r\n .glyphicon-arrow-left:before {\r\n content: \"\\e091\";\r\n }\r\n .glyphicon-arrow-right:before {\r\n content: \"\\e092\";\r\n }\r\n .glyphicon-arrow-up:before {\r\n content: \"\\e093\";\r\n }\r\n .glyphicon-arrow-down:before {\r\n content: \"\\e094\";\r\n }\r\n .glyphicon-share-alt:before {\r\n content: \"\\e095\";\r\n }\r\n .glyphicon-resize-full:before {\r\n content: \"\\e096\";\r\n }\r\n .glyphicon-resize-small:before {\r\n content: \"\\e097\";\r\n }\r\n .glyphicon-exclamation-sign:before {\r\n content: \"\\e101\";\r\n }\r\n .glyphicon-gift:before {\r\n content: \"\\e102\";\r\n }\r\n .glyphicon-leaf:before {\r\n content: \"\\e103\";\r\n }\r\n .glyphicon-fire:before {\r\n content: \"\\e104\";\r\n }\r\n .glyphicon-eye-open:before {\r\n content: \"\\e105\";\r\n }\r\n .glyphicon-eye-close:before {\r\n content: \"\\e106\";\r\n }\r\n .glyphicon-warning-sign:before {\r\n content: \"\\e107\";\r\n }\r\n .glyphicon-plane:before {\r\n content: \"\\e108\";\r\n }\r\n .glyphicon-calendar:before {\r\n content: \"\\e109\";\r\n }\r\n .glyphicon-random:before {\r\n content: \"\\e110\";\r\n }\r\n .glyphicon-comment:before {\r\n content: \"\\e111\";\r\n }\r\n .glyphicon-magnet:before {\r\n content: \"\\e112\";\r\n }\r\n .glyphicon-chevron-up:before {\r\n content: \"\\e113\";\r\n }\r\n .glyphicon-chevron-down:before {\r\n content: \"\\e114\";\r\n }\r\n .glyphicon-retweet:before {\r\n content: \"\\e115\";\r\n }\r\n .glyphicon-shopping-cart:before {\r\n content: \"\\e116\";\r\n }\r\n .glyphicon-folder-close:before {\r\n content: \"\\e117\";\r\n }\r\n .glyphicon-folder-open:before {\r\n content: \"\\e118\";\r\n }\r\n .glyphicon-resize-vertical:before {\r\n content: \"\\e119\";\r\n }\r\n .glyphicon-resize-horizontal:before {\r\n content: \"\\e120\";\r\n }\r\n .glyphicon-hdd:before {\r\n content: \"\\e121\";\r\n }\r\n .glyphicon-bullhorn:before {\r\n content: \"\\e122\";\r\n }\r\n .glyphicon-bell:before {\r\n content: \"\\e123\";\r\n }\r\n .glyphicon-certificate:before {\r\n content: \"\\e124\";\r\n }\r\n .glyphicon-thumbs-up:before {\r\n content: \"\\e125\";\r\n }\r\n .glyphicon-thumbs-down:before {\r\n content: \"\\e126\";\r\n }\r\n .glyphicon-hand-right:before {\r\n content: \"\\e127\";\r\n }\r\n .glyphicon-hand-left:before {\r\n content: \"\\e128\";\r\n }\r\n .glyphicon-hand-up:before {\r\n content: \"\\e129\";\r\n }\r\n .glyphicon-hand-down:before {\r\n content: \"\\e130\";\r\n }\r\n .glyphicon-circle-arrow-right:before {\r\n content: \"\\e131\";\r\n }\r\n .glyphicon-circle-arrow-left:before {\r\n content: \"\\e132\";\r\n }\r\n .glyphicon-circle-arrow-up:before {\r\n content: \"\\e133\";\r\n }\r\n .glyphicon-circle-arrow-down:before {\r\n content: \"\\e134\";\r\n }\r\n .glyphicon-globe:before {\r\n content: \"\\e135\";\r\n }\r\n .glyphicon-wrench:before {\r\n content: \"\\e136\";\r\n }\r\n .glyphicon-tasks:before {\r\n content: \"\\e137\";\r\n }\r\n .glyphicon-filter:before {\r\n content: \"\\e138\";\r\n }\r\n .glyphicon-briefcase:before {\r\n content: \"\\e139\";\r\n }\r\n .glyphicon-fullscreen:before {\r\n content: \"\\e140\";\r\n }\r\n .glyphicon-dashboard:before {\r\n content: \"\\e141\";\r\n }\r\n .glyphicon-paperclip:before {\r\n content: \"\\e142\";\r\n }\r\n .glyphicon-heart-empty:before {\r\n content: \"\\e143\";\r\n }\r\n .glyphicon-link:before {\r\n content: \"\\e144\";\r\n }\r\n .glyphicon-phone:before {\r\n content: \"\\e145\";\r\n }\r\n .glyphicon-pushpin:before {\r\n content: \"\\e146\";\r\n }\r\n .glyphicon-usd:before {\r\n content: \"\\e148\";\r\n }\r\n .glyphicon-gbp:before {\r\n content: \"\\e149\";\r\n }\r\n .glyphicon-sort:before {\r\n content: \"\\e150\";\r\n }\r\n .glyphicon-sort-by-alphabet:before {\r\n content: \"\\e151\";\r\n }\r\n .glyphicon-sort-by-alphabet-alt:before {\r\n content: \"\\e152\";\r\n }\r\n .glyphicon-sort-by-order:before {\r\n content: \"\\e153\";\r\n }\r\n .glyphicon-sort-by-order-alt:before {\r\n content: \"\\e154\";\r\n }\r\n .glyphicon-sort-by-attributes:before {\r\n content: \"\\e155\";\r\n }\r\n .glyphicon-sort-by-attributes-alt:before {\r\n content: \"\\e156\";\r\n }\r\n .glyphicon-unchecked:before {\r\n content: \"\\e157\";\r\n }\r\n .glyphicon-expand:before {\r\n content: \"\\e158\";\r\n }\r\n .glyphicon-collapse-down:before {\r\n content: \"\\e159\";\r\n }\r\n .glyphicon-collapse-up:before {\r\n content: \"\\e160\";\r\n }\r\n .glyphicon-log-in:before {\r\n content: \"\\e161\";\r\n }\r\n .glyphicon-flash:before {\r\n content: \"\\e162\";\r\n }\r\n .glyphicon-log-out:before {\r\n content: \"\\e163\";\r\n }\r\n .glyphicon-new-window:before {\r\n content: \"\\e164\";\r\n }\r\n .glyphicon-record:before {\r\n content: \"\\e165\";\r\n }\r\n .glyphicon-save:before {\r\n content: \"\\e166\";\r\n }\r\n .glyphicon-open:before {\r\n content: \"\\e167\";\r\n }\r\n .glyphicon-saved:before {\r\n content: \"\\e168\";\r\n }\r\n .glyphicon-import:before {\r\n content: \"\\e169\";\r\n }\r\n .glyphicon-export:before {\r\n content: \"\\e170\";\r\n }\r\n .glyphicon-send:before {\r\n content: \"\\e171\";\r\n }\r\n .glyphicon-floppy-disk:before {\r\n content: \"\\e172\";\r\n }\r\n .glyphicon-floppy-saved:before {\r\n content: \"\\e173\";\r\n }\r\n .glyphicon-floppy-remove:before {\r\n content: \"\\e174\";\r\n }\r\n .glyphicon-floppy-save:before {\r\n content: \"\\e175\";\r\n }\r\n .glyphicon-floppy-open:before {\r\n content: \"\\e176\";\r\n }\r\n .glyphicon-credit-card:before {\r\n content: \"\\e177\";\r\n }\r\n .glyphicon-transfer:before {\r\n content: \"\\e178\";\r\n }\r\n .glyphicon-cutlery:before {\r\n content: \"\\e179\";\r\n }\r\n .glyphicon-header:before {\r\n content: \"\\e180\";\r\n }\r\n .glyphicon-compressed:before {\r\n content: \"\\e181\";\r\n }\r\n .glyphicon-earphone:before {\r\n content: \"\\e182\";\r\n }\r\n .glyphicon-phone-alt:before {\r\n content: \"\\e183\";\r\n }\r\n .glyphicon-tower:before {\r\n content: \"\\e184\";\r\n }\r\n .glyphicon-stats:before {\r\n content: \"\\e185\";\r\n }\r\n .glyphicon-sd-video:before {\r\n content: \"\\e186\";\r\n }\r\n .glyphicon-hd-video:before {\r\n content: \"\\e187\";\r\n }\r\n .glyphicon-subtitles:before {\r\n content: \"\\e188\";\r\n }\r\n .glyphicon-sound-stereo:before {\r\n content: \"\\e189\";\r\n }\r\n .glyphicon-sound-dolby:before {\r\n content: \"\\e190\";\r\n }\r\n .glyphicon-sound-5-1:before {\r\n content: \"\\e191\";\r\n }\r\n .glyphicon-sound-6-1:before {\r\n content: \"\\e192\";\r\n }\r\n .glyphicon-sound-7-1:before {\r\n content: \"\\e193\";\r\n }\r\n .glyphicon-copyright-mark:before {\r\n content: \"\\e194\";\r\n }\r\n .glyphicon-registration-mark:before {\r\n content: \"\\e195\";\r\n }\r\n .glyphicon-cloud-download:before {\r\n content: \"\\e197\";\r\n }\r\n .glyphicon-cloud-upload:before {\r\n content: \"\\e198\";\r\n }\r\n .glyphicon-tree-conifer:before {\r\n content: \"\\e199\";\r\n }\r\n .glyphicon-tree-deciduous:before {\r\n content: \"\\e200\";\r\n }\r\n .glyphicon-cd:before {\r\n content: \"\\e201\";\r\n }\r\n .glyphicon-save-file:before {\r\n content: \"\\e202\";\r\n }\r\n .glyphicon-open-file:before {\r\n content: \"\\e203\";\r\n }\r\n .glyphicon-level-up:before {\r\n content: \"\\e204\";\r\n }\r\n .glyphicon-copy:before {\r\n content: \"\\e205\";\r\n }\r\n .glyphicon-paste:before {\r\n content: \"\\e206\";\r\n }\r\n .glyphicon-alert:before {\r\n content: \"\\e209\";\r\n }\r\n .glyphicon-equalizer:before {\r\n content: \"\\e210\";\r\n }\r\n .glyphicon-king:before {\r\n content: \"\\e211\";\r\n }\r\n .glyphicon-queen:before {\r\n content: \"\\e212\";\r\n }\r\n .glyphicon-pawn:before {\r\n content: \"\\e213\";\r\n }\r\n .glyphicon-bishop:before {\r\n content: \"\\e214\";\r\n }\r\n .glyphicon-knight:before {\r\n content: \"\\e215\";\r\n }\r\n .glyphicon-baby-formula:before {\r\n content: \"\\e216\";\r\n }\r\n .glyphicon-tent:before {\r\n content: \"\\26fa\";\r\n }\r\n .glyphicon-blackboard:before {\r\n content: \"\\e218\";\r\n }\r\n .glyphicon-bed:before {\r\n content: \"\\e219\";\r\n }\r\n .glyphicon-apple:before {\r\n content: \"\\f8ff\";\r\n }\r\n .glyphicon-erase:before {\r\n content: \"\\e221\";\r\n }\r\n .glyphicon-hourglass:before {\r\n content: \"\\231b\";\r\n }\r\n .glyphicon-lamp:before {\r\n content: \"\\e223\";\r\n }\r\n .glyphicon-duplicate:before {\r\n content: \"\\e224\";\r\n }\r\n .glyphicon-piggy-bank:before {\r\n content: \"\\e225\";\r\n }\r\n .glyphicon-scissors:before {\r\n content: \"\\e226\";\r\n }\r\n .glyphicon-bitcoin:before {\r\n content: \"\\e227\";\r\n }\r\n .glyphicon-btc:before {\r\n content: \"\\e227\";\r\n }\r\n .glyphicon-xbt:before {\r\n content: \"\\e227\";\r\n }\r\n .glyphicon-yen:before {\r\n content: \"\\00a5\";\r\n }\r\n .glyphicon-jpy:before {\r\n content: \"\\00a5\";\r\n }\r\n .glyphicon-ruble:before {\r\n content: \"\\20bd\";\r\n }\r\n .glyphicon-rub:before {\r\n content: \"\\20bd\";\r\n }\r\n .glyphicon-scale:before {\r\n content: \"\\e230\";\r\n }\r\n .glyphicon-ice-lolly:before {\r\n content: \"\\e231\";\r\n }\r\n .glyphicon-ice-lolly-tasted:before {\r\n content: \"\\e232\";\r\n }\r\n .glyphicon-education:before {\r\n content: \"\\e233\";\r\n }\r\n .glyphicon-option-horizontal:before {\r\n content: \"\\e234\";\r\n }\r\n .glyphicon-option-vertical:before {\r\n content: \"\\e235\";\r\n }\r\n .glyphicon-menu-hamburger:before {\r\n content: \"\\e236\";\r\n }\r\n .glyphicon-modal-window:before {\r\n content: \"\\e237\";\r\n }\r\n .glyphicon-oil:before {\r\n content: \"\\e238\";\r\n }\r\n .glyphicon-grain:before {\r\n content: \"\\e239\";\r\n }\r\n .glyphicon-sunglasses:before {\r\n content: \"\\e240\";\r\n }\r\n .glyphicon-text-size:before {\r\n content: \"\\e241\";\r\n }\r\n .glyphicon-text-color:before {\r\n content: \"\\e242\";\r\n }\r\n .glyphicon-text-background:before {\r\n content: \"\\e243\";\r\n }\r\n .glyphicon-object-align-top:before {\r\n content: \"\\e244\";\r\n }\r\n .glyphicon-object-align-bottom:before {\r\n content: \"\\e245\";\r\n }\r\n .glyphicon-object-align-horizontal:before {\r\n content: \"\\e246\";\r\n }\r\n .glyphicon-object-align-left:before {\r\n content: \"\\e247\";\r\n }\r\n .glyphicon-object-align-vertical:before {\r\n content: \"\\e248\";\r\n }\r\n .glyphicon-object-align-right:before {\r\n content: \"\\e249\";\r\n }\r\n .glyphicon-triangle-right:before {\r\n content: \"\\e250\";\r\n }\r\n .glyphicon-triangle-left:before {\r\n content: \"\\e251\";\r\n }\r\n .glyphicon-triangle-bottom:before {\r\n content: \"\\e252\";\r\n }\r\n .glyphicon-triangle-top:before {\r\n content: \"\\e253\";\r\n }\r\n .glyphicon-console:before {\r\n content: \"\\e254\";\r\n }\r\n .glyphicon-superscript:before {\r\n content: \"\\e255\";\r\n }\r\n .glyphicon-subscript:before {\r\n content: \"\\e256\";\r\n }\r\n .glyphicon-menu-left:before {\r\n content: \"\\e257\";\r\n }\r\n .glyphicon-menu-right:before {\r\n content: \"\\e258\";\r\n }\r\n .glyphicon-menu-down:before {\r\n content: \"\\e259\";\r\n }\r\n .glyphicon-menu-up:before {\r\n content: \"\\e260\";\r\n }\r\n * {\r\n -webkit-box-sizing: border-box;\r\n -moz-box-sizing: border-box;\r\n box-sizing: border-box;\r\n }\r\n *:before,\r\n *:after {\r\n -webkit-box-sizing: border-box;\r\n -moz-box-sizing: border-box;\r\n box-sizing: border-box;\r\n }\r\n html {\r\n font-size: 10px;\r\n\r\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\r\n }\r\n body {\r\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\r\n font-size: 14px;\r\n line-height: 1.42857143;\r\n color: #333;\r\n background-color: #fff;\r\n }\r\n input,\r\n button,\r\n select,\r\n textarea {\r\n font-family: inherit;\r\n font-size: inherit;\r\n line-height: inherit;\r\n }\r\n a {\r\n color: #337ab7;\r\n text-decoration: none;\r\n }\r\n a:hover,\r\n a:focus {\r\n color: #23527c;\r\n text-decoration: underline;\r\n }\r\n a:focus {\r\n outline: thin dotted;\r\n outline: 5px auto -webkit-focus-ring-color;\r\n outline-offset: -2px;\r\n }\r\n figure {\r\n margin: 0;\r\n }\r\n img {\r\n vertical-align: middle;\r\n }\r\n .img-responsive,\r\n .thumbnail > img,\r\n .thumbnail a > img,\r\n .carousel-inner > .item > img,\r\n .carousel-inner > .item > a > img {\r\n display: block;\r\n max-width: 100%;\r\n height: auto;\r\n }\r\n .img-rounded {\r\n border-radius: 6px;\r\n }\r\n .img-thumbnail {\r\n display: inline-block;\r\n max-width: 100%;\r\n height: auto;\r\n padding: 4px;\r\n line-height: 1.42857143;\r\n background-color: #fff;\r\n border: 1px solid #ddd;\r\n border-radius: 4px;\r\n -webkit-transition: all 0.2s ease-in-out;\r\n -o-transition: all 0.2s ease-in-out;\r\n transition: all 0.2s ease-in-out;\r\n }\r\n .img-circle {\r\n border-radius: 50%;\r\n }\r\n hr {\r\n margin-top: 20px;\r\n margin-bottom: 20px;\r\n border: 0;\r\n border-top: 1px solid #eee;\r\n }\r\n .sr-only {\r\n position: absolute;\r\n width: 1px;\r\n height: 1px;\r\n padding: 0;\r\n margin: -1px;\r\n overflow: hidden;\r\n clip: rect(0, 0, 0, 0);\r\n border: 0;\r\n }\r\n .sr-only-focusable:active,\r\n .sr-only-focusable:focus {\r\n position: static;\r\n width: auto;\r\n height: auto;\r\n margin: 0;\r\n overflow: visible;\r\n clip: auto;\r\n }\r\n [role=\"button\"] {\r\n cursor: pointer;\r\n }\r\n h1,\r\n h2,\r\n h3,\r\n h4,\r\n h5,\r\n h6,\r\n .h1,\r\n .h2,\r\n .h3,\r\n .h4,\r\n .h5,\r\n .h6 {\r\n font-family: inherit;\r\n font-weight: 500;\r\n line-height: 1.1;\r\n color: inherit;\r\n }\r\n h1 small,\r\n h2 small,\r\n h3 small,\r\n h4 small,\r\n h5 small,\r\n h6 small,\r\n .h1 small,\r\n .h2 small,\r\n .h3 small,\r\n .h4 small,\r\n .h5 small,\r\n .h6 small,\r\n h1 .small,\r\n h2 .small,\r\n h3 .small,\r\n h4 .small,\r\n h5 .small,\r\n h6 .small,\r\n .h1 .small,\r\n .h2 .small,\r\n .h3 .small,\r\n .h4 .small,\r\n .h5 .small,\r\n .h6 .small {\r\n font-weight: normal;\r\n line-height: 1;\r\n color: #777;\r\n }\r\n h1,\r\n .h1,\r\n h2,\r\n .h2,\r\n h3,\r\n .h3 {\r\n margin-top: 20px;\r\n margin-bottom: 10px;\r\n }\r\n h1 small,\r\n .h1 small,\r\n h2 small,\r\n .h2 small,\r\n h3 small,\r\n .h3 small,\r\n h1 .small,\r\n .h1 .small,\r\n h2 .small,\r\n .h2 .small,\r\n h3 .small,\r\n .h3 .small {\r\n font-size: 65%;\r\n }\r\n h4,\r\n .h4,\r\n h5,\r\n .h5,\r\n h6,\r\n .h6 {\r\n margin-top: 10px;\r\n margin-bottom: 10px;\r\n }\r\n h4 small,\r\n .h4 small,\r\n h5 small,\r\n .h5 small,\r\n h6 small,\r\n .h6 small,\r\n h4 .small,\r\n .h4 .small,\r\n h5 .small,\r\n .h5 .small,\r\n h6 .small,\r\n .h6 .small {\r\n font-size: 75%;\r\n }\r\n h1,\r\n .h1 {\r\n font-size: 36px;\r\n }\r\n h2,\r\n .h2 {\r\n font-size: 30px;\r\n }\r\n h3,\r\n .h3 {\r\n font-size: 24px;\r\n }\r\n h4,\r\n .h4 {\r\n font-size: 18px;\r\n }\r\n h5,\r\n .h5 {\r\n font-size: 14px;\r\n }\r\n h6,\r\n .h6 {\r\n font-size: 12px;\r\n }\r\n p {\r\n margin: 0 0 10px;\r\n }\r\n .lead {\r\n margin-bottom: 20px;\r\n font-size: 16px;\r\n font-weight: 300;\r\n line-height: 1.4;\r\n }\r\n @media (min-width: 768px) {\r\n .lead {\r\n font-size: 21px;\r\n }\r\n }\r\n small,\r\n .small {\r\n font-size: 85%;\r\n }\r\n mark,\r\n .mark {\r\n padding: 0.2em;\r\n background-color: #fcf8e3;\r\n }\r\n .text-left {\r\n text-align: left;\r\n }\r\n .text-right {\r\n text-align: right;\r\n }\r\n .text-center {\r\n text-align: center;\r\n }\r\n .text-justify {\r\n text-align: justify;\r\n }\r\n .text-nowrap {\r\n white-space: nowrap;\r\n }\r\n .text-lowercase {\r\n text-transform: lowercase;\r\n }\r\n .text-uppercase {\r\n text-transform: uppercase;\r\n }\r\n .text-capitalize {\r\n text-transform: capitalize;\r\n }\r\n .text-muted {\r\n color: #777;\r\n }\r\n .text-primary {\r\n color: #337ab7;\r\n }\r\n a.text-primary:hover {\r\n color: #286090;\r\n }\r\n .text-success {\r\n color: #3c763d;\r\n }\r\n a.text-success:hover {\r\n color: #2b542c;\r\n }\r\n .text-info {\r\n color: #31708f;\r\n }\r\n a.text-info:hover {\r\n color: #245269;\r\n }\r\n .text-warning {\r\n color: #8a6d3b;\r\n }\r\n a.text-warning:hover {\r\n color: #66512c;\r\n }\r\n .text-danger {\r\n color: #a94442;\r\n }\r\n a.text-danger:hover {\r\n color: #843534;\r\n }\r\n .bg-primary {\r\n color: #fff;\r\n background-color: #337ab7;\r\n }\r\n a.bg-primary:hover {\r\n background-color: #286090;\r\n }\r\n .bg-success {\r\n background-color: #dff0d8;\r\n }\r\n a.bg-success:hover {\r\n background-color: #c1e2b3;\r\n }\r\n .bg-info {\r\n background-color: #d9edf7;\r\n }\r\n a.bg-info:hover {\r\n background-color: #afd9ee;\r\n }\r\n .bg-warning {\r\n background-color: #fcf8e3;\r\n }\r\n a.bg-warning:hover {\r\n background-color: #f7ecb5;\r\n }\r\n .bg-danger {\r\n background-color: #f2dede;\r\n }\r\n a.bg-danger:hover {\r\n background-color: #e4b9b9;\r\n }\r\n .page-header {\r\n padding-bottom: 9px;\r\n margin: 40px 0 20px;\r\n border-bottom: 1px solid #eee;\r\n }\r\n ul,\r\n ol {\r\n margin-top: 0;\r\n margin-bottom: 10px;\r\n }\r\n ul ul,\r\n ol ul,\r\n ul ol,\r\n ol ol {\r\n margin-bottom: 0;\r\n }\r\n .list-unstyled {\r\n padding-left: 0;\r\n list-style: none;\r\n }\r\n .list-inline {\r\n padding-left: 0;\r\n margin-left: -5px;\r\n list-style: none;\r\n }\r\n .list-inline > li {\r\n display: inline-block;\r\n padding-right: 5px;\r\n padding-left: 5px;\r\n }\r\n dl {\r\n margin-top: 0;\r\n margin-bottom: 20px;\r\n }\r\n dt,\r\n dd {\r\n line-height: 1.42857143;\r\n }\r\n dt {\r\n font-weight: bold;\r\n }\r\n dd {\r\n margin-left: 0;\r\n }\r\n @media (min-width: 768px) {\r\n .dl-horizontal dt {\r\n float: left;\r\n width: 160px;\r\n overflow: hidden;\r\n clear: left;\r\n text-align: right;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n }\r\n .dl-horizontal dd {\r\n margin-left: 180px;\r\n }\r\n }\r\n abbr[title],\r\n abbr[data-original-title] {\r\n cursor: help;\r\n border-bottom: 1px dotted #777;\r\n }\r\n .initialism {\r\n font-size: 90%;\r\n text-transform: uppercase;\r\n }\r\n blockquote {\r\n padding: 10px 20px;\r\n margin: 0 0 20px;\r\n font-size: 17.5px;\r\n border-left: 5px solid #eee;\r\n }\r\n blockquote p:last-child,\r\n blockquote ul:last-child,\r\n blockquote ol:last-child {\r\n margin-bottom: 0;\r\n }\r\n blockquote footer,\r\n blockquote small,\r\n blockquote .small {\r\n display: block;\r\n font-size: 80%;\r\n line-height: 1.42857143;\r\n color: #777;\r\n }\r\n blockquote footer:before,\r\n blockquote small:before,\r\n blockquote .small:before {\r\n content: \"\\2014 \\00A0\";\r\n }\r\n .blockquote-reverse,\r\n blockquote.pull-right {\r\n padding-right: 15px;\r\n padding-left: 0;\r\n text-align: right;\r\n border-right: 5px solid #eee;\r\n border-left: 0;\r\n }\r\n .blockquote-reverse footer:before,\r\n blockquote.pull-right footer:before,\r\n .blockquote-reverse small:before,\r\n blockquote.pull-right small:before,\r\n .blockquote-reverse .small:before,\r\n blockquote.pull-right .small:before {\r\n content: \"\";\r\n }\r\n .blockquote-reverse footer:after,\r\n blockquote.pull-right footer:after,\r\n .blockquote-reverse small:after,\r\n blockquote.pull-right small:after,\r\n .blockquote-reverse .small:after,\r\n blockquote.pull-right .small:after {\r\n content: \"\\00A0 \\2014\";\r\n }\r\n address {\r\n margin-bottom: 20px;\r\n font-style: normal;\r\n line-height: 1.42857143;\r\n }\r\n code,\r\n kbd,\r\n pre,\r\n samp {\r\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\r\n }\r\n code {\r\n padding: 2px 4px;\r\n font-size: 90%;\r\n color: #c7254e;\r\n background-color: #f9f2f4;\r\n border-radius: 4px;\r\n }\r\n kbd {\r\n padding: 2px 4px;\r\n font-size: 90%;\r\n color: #fff;\r\n background-color: #333;\r\n border-radius: 3px;\r\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\r\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\r\n }\r\n kbd kbd {\r\n padding: 0;\r\n font-size: 100%;\r\n font-weight: bold;\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n }\r\n pre {\r\n display: block;\r\n padding: 9.5px;\r\n margin: 0 0 10px;\r\n font-size: 13px;\r\n line-height: 1.42857143;\r\n color: #333;\r\n word-break: break-all;\r\n word-wrap: break-word;\r\n background-color: #f5f5f5;\r\n border: 1px solid #ccc;\r\n border-radius: 4px;\r\n }\r\n pre code {\r\n padding: 0;\r\n font-size: inherit;\r\n color: inherit;\r\n white-space: pre-wrap;\r\n background-color: transparent;\r\n border-radius: 0;\r\n }\r\n .pre-scrollable {\r\n max-height: 340px;\r\n overflow-y: scroll;\r\n }\r\n .container {\r\n padding-right: 15px;\r\n padding-left: 15px;\r\n margin-right: auto;\r\n margin-left: auto;\r\n }\r\n @media (min-width: 768px) {\r\n .container {\r\n width: 750px;\r\n }\r\n }\r\n @media (min-width: 992px) {\r\n .container {\r\n width: 970px;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n .container {\r\n width: 1170px;\r\n }\r\n }\r\n .container-fluid {\r\n padding-right: 15px;\r\n padding-left: 15px;\r\n margin-right: auto;\r\n margin-left: auto;\r\n }\r\n .row {\r\n margin-right: -15px;\r\n margin-left: -15px;\r\n }\r\n //.col-xs-1,\r\n //.col-sm-1,\r\n //.col-md-1,\r\n //.col-lg-1,\r\n //.col-xs-2,\r\n //.col-sm-2,\r\n //.col-md-2,\r\n //.col-lg-2,\r\n //.col-xs-3,\r\n //.col-sm-3,\r\n //.col-md-3,\r\n //.col-lg-3,\r\n //.col-xs-4,\r\n //.col-sm-4,\r\n //.col-md-4,\r\n //.col-lg-4,\r\n //.col-xs-5,\r\n //.col-sm-5,\r\n //.col-md-5,\r\n //.col-lg-5,\r\n //.col-xs-6,\r\n //.col-sm-6,\r\n //.col-md-6,\r\n //.col-lg-6,\r\n //.col-xs-7,\r\n //.col-sm-7,\r\n //.col-md-7,\r\n //.col-lg-7,\r\n //.col-xs-8,\r\n //.col-sm-8,\r\n //.col-md-8,\r\n //.col-lg-8,\r\n //.col-xs-9,\r\n //.col-sm-9,\r\n //.col-md-9,\r\n //.col-lg-9,\r\n //.col-xs-10,\r\n //.col-sm-10,\r\n //.col-md-10,\r\n //.col-lg-10,\r\n //.col-xs-11,\r\n //.col-sm-11,\r\n //.col-md-11,\r\n //.col-lg-11,\r\n //.col-xs-12,\r\n //.col-sm-12,\r\n //.col-md-12,\r\n //.col-lg-12 {\r\n // position: relative;\r\n // min-height: 1px;\r\n // padding-right: 15px;\r\n // padding-left: 15px;\r\n //}\r\n //.col-xs-1,\r\n //.col-xs-2,\r\n //.col-xs-3,\r\n //.col-xs-4,\r\n //.col-xs-5,\r\n //.col-xs-6,\r\n //.col-xs-7,\r\n //.col-xs-8,\r\n //.col-xs-9,\r\n //.col-xs-10,\r\n //.col-xs-11,\r\n //.col-xs-12 {\r\n // float: left;\r\n //}\r\n //.col-xs-12 {\r\n // width: 100%;\r\n //}\r\n //.col-xs-11 {\r\n // width: 91.66666667%;\r\n //}\r\n //.col-xs-10 {\r\n // width: 83.33333333%;\r\n //}\r\n //.col-xs-9 {\r\n // width: 75%;\r\n //}\r\n //.col-xs-8 {\r\n // width: 66.66666667%;\r\n //}\r\n //.col-xs-7 {\r\n // width: 58.33333333%;\r\n //}\r\n //.col-xs-6 {\r\n // width: 50%;\r\n //}\r\n //.col-xs-5 {\r\n // width: 41.66666667%;\r\n //}\r\n //.col-xs-4 {\r\n // width: 33.33333333%;\r\n //}\r\n //.col-xs-3 {\r\n // width: 25%;\r\n //}\r\n //.col-xs-2 {\r\n // width: 16.66666667%;\r\n //}\r\n //.col-xs-1 {\r\n // width: 8.33333333%;\r\n //}\r\n //.col-xs-pull-12 {\r\n // right: 100%;\r\n //}\r\n //.col-xs-pull-11 {\r\n // right: 91.66666667%;\r\n //}\r\n //.col-xs-pull-10 {\r\n // right: 83.33333333%;\r\n //}\r\n //.col-xs-pull-9 {\r\n // right: 75%;\r\n //}\r\n //.col-xs-pull-8 {\r\n // right: 66.66666667%;\r\n //}\r\n //.col-xs-pull-7 {\r\n // right: 58.33333333%;\r\n //}\r\n //.col-xs-pull-6 {\r\n // right: 50%;\r\n //}\r\n //.col-xs-pull-5 {\r\n // right: 41.66666667%;\r\n //}\r\n //.col-xs-pull-4 {\r\n // right: 33.33333333%;\r\n //}\r\n //.col-xs-pull-3 {\r\n // right: 25%;\r\n //}\r\n //.col-xs-pull-2 {\r\n // right: 16.66666667%;\r\n //}\r\n //.col-xs-pull-1 {\r\n // right: 8.33333333%;\r\n //}\r\n //.col-xs-pull-0 {\r\n // right: auto;\r\n //}\r\n //.col-xs-push-12 {\r\n // left: 100%;\r\n //}\r\n //.col-xs-push-11 {\r\n // left: 91.66666667%;\r\n //}\r\n //.col-xs-push-10 {\r\n // left: 83.33333333%;\r\n //}\r\n //.col-xs-push-9 {\r\n // left: 75%;\r\n //}\r\n //.col-xs-push-8 {\r\n // left: 66.66666667%;\r\n //}\r\n //.col-xs-push-7 {\r\n // left: 58.33333333%;\r\n //}\r\n //.col-xs-push-6 {\r\n // left: 50%;\r\n //}\r\n //.col-xs-push-5 {\r\n // left: 41.66666667%;\r\n //}\r\n //.col-xs-push-4 {\r\n // left: 33.33333333%;\r\n //}\r\n //.col-xs-push-3 {\r\n // left: 25%;\r\n //}\r\n //.col-xs-push-2 {\r\n // left: 16.66666667%;\r\n //}\r\n //.col-xs-push-1 {\r\n // left: 8.33333333%;\r\n //}\r\n //.col-xs-push-0 {\r\n // left: auto;\r\n //}\r\n //.col-xs-offset-12 {\r\n // margin-left: 100%;\r\n //}\r\n //.col-xs-offset-11 {\r\n // margin-left: 91.66666667%;\r\n //}\r\n //.col-xs-offset-10 {\r\n // margin-left: 83.33333333%;\r\n //}\r\n //.col-xs-offset-9 {\r\n // margin-left: 75%;\r\n //}\r\n //.col-xs-offset-8 {\r\n // margin-left: 66.66666667%;\r\n //}\r\n //.col-xs-offset-7 {\r\n // margin-left: 58.33333333%;\r\n //}\r\n //.col-xs-offset-6 {\r\n // margin-left: 50%;\r\n //}\r\n //.col-xs-offset-5 {\r\n // margin-left: 41.66666667%;\r\n //}\r\n //.col-xs-offset-4 {\r\n // margin-left: 33.33333333%;\r\n //}\r\n //.col-xs-offset-3 {\r\n // margin-left: 25%;\r\n //}\r\n //.col-xs-offset-2 {\r\n // margin-left: 16.66666667%;\r\n //}\r\n //.col-xs-offset-1 {\r\n // margin-left: 8.33333333%;\r\n //}\r\n //.col-xs-offset-0 {\r\n // margin-left: 0;\r\n //}\r\n //@media (min-width: 768px) {\r\n // .col-sm-1,\r\n // .col-sm-2,\r\n // .col-sm-3,\r\n // .col-sm-4,\r\n // .col-sm-5,\r\n // .col-sm-6,\r\n // .col-sm-7,\r\n // .col-sm-8,\r\n // .col-sm-9,\r\n // .col-sm-10,\r\n // .col-sm-11,\r\n // .col-sm-12 {\r\n // float: left;\r\n // }\r\n // .col-sm-12 {\r\n // width: 100%;\r\n // }\r\n // .col-sm-11 {\r\n // width: 91.66666667%;\r\n // }\r\n // .col-sm-10 {\r\n // width: 83.33333333%;\r\n // }\r\n // .col-sm-9 {\r\n // width: 75%;\r\n // }\r\n // .col-sm-8 {\r\n // width: 66.66666667%;\r\n // }\r\n // .col-sm-7 {\r\n // width: 58.33333333%;\r\n // }\r\n // .col-sm-6 {\r\n // width: 50%;\r\n // }\r\n // .col-sm-5 {\r\n // width: 41.66666667%;\r\n // }\r\n // .col-sm-4 {\r\n // width: 33.33333333%;\r\n // }\r\n // .col-sm-3 {\r\n // width: 25%;\r\n // }\r\n // .col-sm-2 {\r\n // width: 16.66666667%;\r\n // }\r\n // .col-sm-1 {\r\n // width: 8.33333333%;\r\n // }\r\n // .col-sm-pull-12 {\r\n // right: 100%;\r\n // }\r\n // .col-sm-pull-11 {\r\n // right: 91.66666667%;\r\n // }\r\n // .col-sm-pull-10 {\r\n // right: 83.33333333%;\r\n // }\r\n // .col-sm-pull-9 {\r\n // right: 75%;\r\n // }\r\n // .col-sm-pull-8 {\r\n // right: 66.66666667%;\r\n // }\r\n // .col-sm-pull-7 {\r\n // right: 58.33333333%;\r\n // }\r\n // .col-sm-pull-6 {\r\n // right: 50%;\r\n // }\r\n // .col-sm-pull-5 {\r\n // right: 41.66666667%;\r\n // }\r\n // .col-sm-pull-4 {\r\n // right: 33.33333333%;\r\n // }\r\n // .col-sm-pull-3 {\r\n // right: 25%;\r\n // }\r\n // .col-sm-pull-2 {\r\n // right: 16.66666667%;\r\n // }\r\n // .col-sm-pull-1 {\r\n // right: 8.33333333%;\r\n // }\r\n // .col-sm-pull-0 {\r\n // right: auto;\r\n // }\r\n // .col-sm-push-12 {\r\n // left: 100%;\r\n // }\r\n // .col-sm-push-11 {\r\n // left: 91.66666667%;\r\n // }\r\n // .col-sm-push-10 {\r\n // left: 83.33333333%;\r\n // }\r\n // .col-sm-push-9 {\r\n // left: 75%;\r\n // }\r\n // .col-sm-push-8 {\r\n // left: 66.66666667%;\r\n // }\r\n // .col-sm-push-7 {\r\n // left: 58.33333333%;\r\n // }\r\n // .col-sm-push-6 {\r\n // left: 50%;\r\n // }\r\n // .col-sm-push-5 {\r\n // left: 41.66666667%;\r\n // }\r\n // .col-sm-push-4 {\r\n // left: 33.33333333%;\r\n // }\r\n // .col-sm-push-3 {\r\n // left: 25%;\r\n // }\r\n // .col-sm-push-2 {\r\n // left: 16.66666667%;\r\n // }\r\n // .col-sm-push-1 {\r\n // left: 8.33333333%;\r\n // }\r\n // .col-sm-push-0 {\r\n // left: auto;\r\n // }\r\n // .col-sm-offset-12 {\r\n // margin-left: 100%;\r\n // }\r\n // .col-sm-offset-11 {\r\n // margin-left: 91.66666667%;\r\n // }\r\n // .col-sm-offset-10 {\r\n // margin-left: 83.33333333%;\r\n // }\r\n // .col-sm-offset-9 {\r\n // margin-left: 75%;\r\n // }\r\n // .col-sm-offset-8 {\r\n // margin-left: 66.66666667%;\r\n // }\r\n // .col-sm-offset-7 {\r\n // margin-left: 58.33333333%;\r\n // }\r\n // .col-sm-offset-6 {\r\n // margin-left: 50%;\r\n // }\r\n // .col-sm-offset-5 {\r\n // margin-left: 41.66666667%;\r\n // }\r\n // .col-sm-offset-4 {\r\n // margin-left: 33.33333333%;\r\n // }\r\n // .col-sm-offset-3 {\r\n // margin-left: 25%;\r\n // }\r\n // .col-sm-offset-2 {\r\n // margin-left: 16.66666667%;\r\n // }\r\n // .col-sm-offset-1 {\r\n // margin-left: 8.33333333%;\r\n // }\r\n // .col-sm-offset-0 {\r\n // margin-left: 0;\r\n // }\r\n //}\r\n //@media (min-width: 992px) {\r\n // .col-md-1,\r\n // .col-md-2,\r\n // .col-md-3,\r\n // .col-md-4,\r\n // .col-md-5,\r\n // .col-md-6,\r\n // .col-md-7,\r\n // .col-md-8,\r\n // .col-md-9,\r\n // .col-md-10,\r\n // .col-md-11,\r\n // .col-md-12 {\r\n // float: left;\r\n // }\r\n // .col-md-12 {\r\n // width: 100%;\r\n // }\r\n // .col-md-11 {\r\n // width: 91.66666667%;\r\n // }\r\n // .col-md-10 {\r\n // width: 83.33333333%;\r\n // }\r\n // .col-md-9 {\r\n // width: 75%;\r\n // }\r\n // .col-md-8 {\r\n // width: 66.66666667%;\r\n // }\r\n // .col-md-7 {\r\n // width: 58.33333333%;\r\n // }\r\n // .col-md-6 {\r\n // width: 50%;\r\n // }\r\n // .col-md-5 {\r\n // width: 41.66666667%;\r\n // }\r\n // .col-md-4 {\r\n // width: 33.33333333%;\r\n // }\r\n // .col-md-3 {\r\n // width: 25%;\r\n // }\r\n // .col-md-2 {\r\n // width: 16.66666667%;\r\n // }\r\n // .col-md-1 {\r\n // width: 8.33333333%;\r\n // }\r\n // .col-md-pull-12 {\r\n // right: 100%;\r\n // }\r\n // .col-md-pull-11 {\r\n // right: 91.66666667%;\r\n // }\r\n // .col-md-pull-10 {\r\n // right: 83.33333333%;\r\n // }\r\n // .col-md-pull-9 {\r\n // right: 75%;\r\n // }\r\n // .col-md-pull-8 {\r\n // right: 66.66666667%;\r\n // }\r\n // .col-md-pull-7 {\r\n // right: 58.33333333%;\r\n // }\r\n // .col-md-pull-6 {\r\n // right: 50%;\r\n // }\r\n // .col-md-pull-5 {\r\n // right: 41.66666667%;\r\n // }\r\n // .col-md-pull-4 {\r\n // right: 33.33333333%;\r\n // }\r\n // .col-md-pull-3 {\r\n // right: 25%;\r\n // }\r\n // .col-md-pull-2 {\r\n // right: 16.66666667%;\r\n // }\r\n // .col-md-pull-1 {\r\n // right: 8.33333333%;\r\n // }\r\n // .col-md-pull-0 {\r\n // right: auto;\r\n // }\r\n // .col-md-push-12 {\r\n // left: 100%;\r\n // }\r\n // .col-md-push-11 {\r\n // left: 91.66666667%;\r\n // }\r\n // .col-md-push-10 {\r\n // left: 83.33333333%;\r\n // }\r\n // .col-md-push-9 {\r\n // left: 75%;\r\n // }\r\n // .col-md-push-8 {\r\n // left: 66.66666667%;\r\n // }\r\n // .col-md-push-7 {\r\n // left: 58.33333333%;\r\n // }\r\n // .col-md-push-6 {\r\n // left: 50%;\r\n // }\r\n // .col-md-push-5 {\r\n // left: 41.66666667%;\r\n // }\r\n // .col-md-push-4 {\r\n // left: 33.33333333%;\r\n // }\r\n // .col-md-push-3 {\r\n // left: 25%;\r\n // }\r\n // .col-md-push-2 {\r\n // left: 16.66666667%;\r\n // }\r\n // .col-md-push-1 {\r\n // left: 8.33333333%;\r\n // }\r\n // .col-md-push-0 {\r\n // left: auto;\r\n // }\r\n // .col-md-offset-12 {\r\n // margin-left: 100%;\r\n // }\r\n // .col-md-offset-11 {\r\n // margin-left: 91.66666667%;\r\n // }\r\n // .col-md-offset-10 {\r\n // margin-left: 83.33333333%;\r\n // }\r\n // .col-md-offset-9 {\r\n // margin-left: 75%;\r\n // }\r\n // .col-md-offset-8 {\r\n // margin-left: 66.66666667%;\r\n // }\r\n // .col-md-offset-7 {\r\n // margin-left: 58.33333333%;\r\n // }\r\n // .col-md-offset-6 {\r\n // margin-left: 50%;\r\n // }\r\n // .col-md-offset-5 {\r\n // margin-left: 41.66666667%;\r\n // }\r\n // .col-md-offset-4 {\r\n // margin-left: 33.33333333%;\r\n // }\r\n // .col-md-offset-3 {\r\n // margin-left: 25%;\r\n // }\r\n // .col-md-offset-2 {\r\n // margin-left: 16.66666667%;\r\n // }\r\n // .col-md-offset-1 {\r\n // margin-left: 8.33333333%;\r\n // }\r\n // .col-md-offset-0 {\r\n // margin-left: 0;\r\n // }\r\n //}\r\n //@media (min-width: 1200px) {\r\n // .col-lg-1,\r\n // .col-lg-2,\r\n // .col-lg-3,\r\n // .col-lg-4,\r\n // .col-lg-5,\r\n // .col-lg-6,\r\n // .col-lg-7,\r\n // .col-lg-8,\r\n // .col-lg-9,\r\n // .col-lg-10,\r\n // .col-lg-11,\r\n // .col-lg-12 {\r\n // float: left;\r\n // }\r\n // .col-lg-12 {\r\n // width: 100%;\r\n // }\r\n // .col-lg-11 {\r\n // width: 91.66666667%;\r\n // }\r\n // .col-lg-10 {\r\n // width: 83.33333333%;\r\n // }\r\n // .col-lg-9 {\r\n // width: 75%;\r\n // }\r\n // .col-lg-8 {\r\n // width: 66.66666667%;\r\n // }\r\n // .col-lg-7 {\r\n // width: 58.33333333%;\r\n // }\r\n // .col-lg-6 {\r\n // width: 50%;\r\n // }\r\n // .col-lg-5 {\r\n // width: 41.66666667%;\r\n // }\r\n // .col-lg-4 {\r\n // width: 33.33333333%;\r\n // }\r\n // .col-lg-3 {\r\n // width: 25%;\r\n // }\r\n // .col-lg-2 {\r\n // width: 16.66666667%;\r\n // }\r\n // .col-lg-1 {\r\n // width: 8.33333333%;\r\n // }\r\n // .col-lg-pull-12 {\r\n // right: 100%;\r\n // }\r\n // .col-lg-pull-11 {\r\n // right: 91.66666667%;\r\n // }\r\n // .col-lg-pull-10 {\r\n // right: 83.33333333%;\r\n // }\r\n // .col-lg-pull-9 {\r\n // right: 75%;\r\n // }\r\n // .col-lg-pull-8 {\r\n // right: 66.66666667%;\r\n // }\r\n // .col-lg-pull-7 {\r\n // right: 58.33333333%;\r\n // }\r\n // .col-lg-pull-6 {\r\n // right: 50%;\r\n // }\r\n // .col-lg-pull-5 {\r\n // right: 41.66666667%;\r\n // }\r\n // .col-lg-pull-4 {\r\n // right: 33.33333333%;\r\n // }\r\n // .col-lg-pull-3 {\r\n // right: 25%;\r\n // }\r\n // .col-lg-pull-2 {\r\n // right: 16.66666667%;\r\n // }\r\n // .col-lg-pull-1 {\r\n // right: 8.33333333%;\r\n // }\r\n // .col-lg-pull-0 {\r\n // right: auto;\r\n // }\r\n // .col-lg-push-12 {\r\n // left: 100%;\r\n // }\r\n // .col-lg-push-11 {\r\n // left: 91.66666667%;\r\n // }\r\n // .col-lg-push-10 {\r\n // left: 83.33333333%;\r\n // }\r\n // .col-lg-push-9 {\r\n // left: 75%;\r\n // }\r\n // .col-lg-push-8 {\r\n // left: 66.66666667%;\r\n // }\r\n // .col-lg-push-7 {\r\n // left: 58.33333333%;\r\n // }\r\n // .col-lg-push-6 {\r\n // left: 50%;\r\n // }\r\n // .col-lg-push-5 {\r\n // left: 41.66666667%;\r\n // }\r\n // .col-lg-push-4 {\r\n // left: 33.33333333%;\r\n // }\r\n // .col-lg-push-3 {\r\n // left: 25%;\r\n // }\r\n // .col-lg-push-2 {\r\n // left: 16.66666667%;\r\n // }\r\n // .col-lg-push-1 {\r\n // left: 8.33333333%;\r\n // }\r\n // .col-lg-push-0 {\r\n // left: auto;\r\n // }\r\n // .col-lg-offset-12 {\r\n // margin-left: 100%;\r\n // }\r\n // .col-lg-offset-11 {\r\n // margin-left: 91.66666667%;\r\n // }\r\n // .col-lg-offset-10 {\r\n // margin-left: 83.33333333%;\r\n // }\r\n // .col-lg-offset-9 {\r\n // margin-left: 75%;\r\n // }\r\n // .col-lg-offset-8 {\r\n // margin-left: 66.66666667%;\r\n // }\r\n // .col-lg-offset-7 {\r\n // margin-left: 58.33333333%;\r\n // }\r\n // .col-lg-offset-6 {\r\n // margin-left: 50%;\r\n // }\r\n // .col-lg-offset-5 {\r\n // margin-left: 41.66666667%;\r\n // }\r\n // .col-lg-offset-4 {\r\n // margin-left: 33.33333333%;\r\n // }\r\n // .col-lg-offset-3 {\r\n // margin-left: 25%;\r\n // }\r\n // .col-lg-offset-2 {\r\n // margin-left: 16.66666667%;\r\n // }\r\n // .col-lg-offset-1 {\r\n // margin-left: 8.33333333%;\r\n // }\r\n // .col-lg-offset-0 {\r\n // margin-left: 0;\r\n // }\r\n //}\r\n table {\r\n background-color: transparent;\r\n }\r\n caption {\r\n padding-top: 8px;\r\n padding-bottom: 8px;\r\n color: #777;\r\n text-align: left;\r\n }\r\n th {\r\n text-align: left;\r\n }\r\n .table {\r\n width: 100%;\r\n max-width: 100%;\r\n margin-bottom: 20px;\r\n }\r\n .table > thead > tr > th,\r\n .table > tbody > tr > th,\r\n .table > tfoot > tr > th,\r\n .table > thead > tr > td,\r\n .table > tbody > tr > td,\r\n .table > tfoot > tr > td {\r\n padding: 8px;\r\n line-height: 1.42857143;\r\n vertical-align: top;\r\n border-top: 1px solid #ddd;\r\n }\r\n .table > thead > tr > th {\r\n vertical-align: bottom;\r\n border-bottom: 2px solid #ddd;\r\n }\r\n .table > caption + thead > tr:first-child > th,\r\n .table > colgroup + thead > tr:first-child > th,\r\n .table > thead:first-child > tr:first-child > th,\r\n .table > caption + thead > tr:first-child > td,\r\n .table > colgroup + thead > tr:first-child > td,\r\n .table > thead:first-child > tr:first-child > td {\r\n border-top: 0;\r\n }\r\n .table > tbody + tbody {\r\n border-top: 2px solid #ddd;\r\n }\r\n .table .table {\r\n background-color: #fff;\r\n }\r\n .table-condensed > thead > tr > th,\r\n .table-condensed > tbody > tr > th,\r\n .table-condensed > tfoot > tr > th,\r\n .table-condensed > thead > tr > td,\r\n .table-condensed > tbody > tr > td,\r\n .table-condensed > tfoot > tr > td {\r\n padding: 5px;\r\n }\r\n .table-bordered {\r\n border: 1px solid #ddd;\r\n }\r\n .table-bordered > thead > tr > th,\r\n .table-bordered > tbody > tr > th,\r\n .table-bordered > tfoot > tr > th,\r\n .table-bordered > thead > tr > td,\r\n .table-bordered > tbody > tr > td,\r\n .table-bordered > tfoot > tr > td {\r\n border: 1px solid #ddd;\r\n }\r\n .table-bordered > thead > tr > th,\r\n .table-bordered > thead > tr > td {\r\n border-bottom-width: 2px;\r\n }\r\n .table-striped > tbody > tr:nth-of-type(odd) {\r\n background-color: #f9f9f9;\r\n }\r\n .table-hover > tbody > tr:hover {\r\n background-color: #f5f5f5;\r\n }\r\n table col[class*=\"col-\"] {\r\n position: static;\r\n display: table-column;\r\n float: none;\r\n }\r\n table td[class*=\"col-\"],\r\n table th[class*=\"col-\"] {\r\n position: static;\r\n display: table-cell;\r\n float: none;\r\n }\r\n .table > thead > tr > td.active,\r\n .table > tbody > tr > td.active,\r\n .table > tfoot > tr > td.active,\r\n .table > thead > tr > th.active,\r\n .table > tbody > tr > th.active,\r\n .table > tfoot > tr > th.active,\r\n .table > thead > tr.active > td,\r\n .table > tbody > tr.active > td,\r\n .table > tfoot > tr.active > td,\r\n .table > thead > tr.active > th,\r\n .table > tbody > tr.active > th,\r\n .table > tfoot > tr.active > th {\r\n background-color: #f5f5f5;\r\n }\r\n .table-hover > tbody > tr > td.active:hover,\r\n .table-hover > tbody > tr > th.active:hover,\r\n .table-hover > tbody > tr.active:hover > td,\r\n .table-hover > tbody > tr:hover > .active,\r\n .table-hover > tbody > tr.active:hover > th {\r\n background-color: #e8e8e8;\r\n }\r\n .table > thead > tr > td.success,\r\n .table > tbody > tr > td.success,\r\n .table > tfoot > tr > td.success,\r\n .table > thead > tr > th.success,\r\n .table > tbody > tr > th.success,\r\n .table > tfoot > tr > th.success,\r\n .table > thead > tr.success > td,\r\n .table > tbody > tr.success > td,\r\n .table > tfoot > tr.success > td,\r\n .table > thead > tr.success > th,\r\n .table > tbody > tr.success > th,\r\n .table > tfoot > tr.success > th {\r\n background-color: #dff0d8;\r\n }\r\n .table-hover > tbody > tr > td.success:hover,\r\n .table-hover > tbody > tr > th.success:hover,\r\n .table-hover > tbody > tr.success:hover > td,\r\n .table-hover > tbody > tr:hover > .success,\r\n .table-hover > tbody > tr.success:hover > th {\r\n background-color: #d0e9c6;\r\n }\r\n .table > thead > tr > td.info,\r\n .table > tbody > tr > td.info,\r\n .table > tfoot > tr > td.info,\r\n .table > thead > tr > th.info,\r\n .table > tbody > tr > th.info,\r\n .table > tfoot > tr > th.info,\r\n .table > thead > tr.info > td,\r\n .table > tbody > tr.info > td,\r\n .table > tfoot > tr.info > td,\r\n .table > thead > tr.info > th,\r\n .table > tbody > tr.info > th,\r\n .table > tfoot > tr.info > th {\r\n background-color: #d9edf7;\r\n }\r\n .table-hover > tbody > tr > td.info:hover,\r\n .table-hover > tbody > tr > th.info:hover,\r\n .table-hover > tbody > tr.info:hover > td,\r\n .table-hover > tbody > tr:hover > .info,\r\n .table-hover > tbody > tr.info:hover > th {\r\n background-color: #c4e3f3;\r\n }\r\n .table > thead > tr > td.warning,\r\n .table > tbody > tr > td.warning,\r\n .table > tfoot > tr > td.warning,\r\n .table > thead > tr > th.warning,\r\n .table > tbody > tr > th.warning,\r\n .table > tfoot > tr > th.warning,\r\n .table > thead > tr.warning > td,\r\n .table > tbody > tr.warning > td,\r\n .table > tfoot > tr.warning > td,\r\n .table > thead > tr.warning > th,\r\n .table > tbody > tr.warning > th,\r\n .table > tfoot > tr.warning > th {\r\n background-color: #fcf8e3;\r\n }\r\n .table-hover > tbody > tr > td.warning:hover,\r\n .table-hover > tbody > tr > th.warning:hover,\r\n .table-hover > tbody > tr.warning:hover > td,\r\n .table-hover > tbody > tr:hover > .warning,\r\n .table-hover > tbody > tr.warning:hover > th {\r\n background-color: #faf2cc;\r\n }\r\n .table > thead > tr > td.danger,\r\n .table > tbody > tr > td.danger,\r\n .table > tfoot > tr > td.danger,\r\n .table > thead > tr > th.danger,\r\n .table > tbody > tr > th.danger,\r\n .table > tfoot > tr > th.danger,\r\n .table > thead > tr.danger > td,\r\n .table > tbody > tr.danger > td,\r\n .table > tfoot > tr.danger > td,\r\n .table > thead > tr.danger > th,\r\n .table > tbody > tr.danger > th,\r\n .table > tfoot > tr.danger > th {\r\n background-color: #f2dede;\r\n }\r\n .table-hover > tbody > tr > td.danger:hover,\r\n .table-hover > tbody > tr > th.danger:hover,\r\n .table-hover > tbody > tr.danger:hover > td,\r\n .table-hover > tbody > tr:hover > .danger,\r\n .table-hover > tbody > tr.danger:hover > th {\r\n background-color: #ebcccc;\r\n }\r\n .table-responsive {\r\n min-height: 0.01%;\r\n overflow-x: auto;\r\n }\r\n @media screen and (max-width: 767px) {\r\n .table-responsive {\r\n width: 100%;\r\n margin-bottom: 15px;\r\n overflow-y: hidden;\r\n -ms-overflow-style: -ms-autohiding-scrollbar;\r\n border: 1px solid #ddd;\r\n }\r\n .table-responsive > .table {\r\n margin-bottom: 0;\r\n }\r\n .table-responsive > .table > thead > tr > th,\r\n .table-responsive > .table > tbody > tr > th,\r\n .table-responsive > .table > tfoot > tr > th,\r\n .table-responsive > .table > thead > tr > td,\r\n .table-responsive > .table > tbody > tr > td,\r\n .table-responsive > .table > tfoot > tr > td {\r\n white-space: nowrap;\r\n }\r\n .table-responsive > .table-bordered {\r\n border: 0;\r\n }\r\n .table-responsive > .table-bordered > thead > tr > th:first-child,\r\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\r\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\r\n .table-responsive > .table-bordered > thead > tr > td:first-child,\r\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\r\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\r\n border-left: 0;\r\n }\r\n .table-responsive > .table-bordered > thead > tr > th:last-child,\r\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\r\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\r\n .table-responsive > .table-bordered > thead > tr > td:last-child,\r\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\r\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\r\n border-right: 0;\r\n }\r\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\r\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\r\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\r\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\r\n border-bottom: 0;\r\n }\r\n }\r\n fieldset {\r\n min-width: 0;\r\n padding: 0;\r\n margin: 0;\r\n border: 0;\r\n }\r\n legend {\r\n display: block;\r\n width: 100%;\r\n padding: 0;\r\n margin-bottom: 20px;\r\n font-size: 21px;\r\n line-height: inherit;\r\n color: #333;\r\n border: 0;\r\n border-bottom: 1px solid #e5e5e5;\r\n }\r\n label {\r\n display: inline-block;\r\n max-width: 100%;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n }\r\n input[type=\"search\"] {\r\n -webkit-box-sizing: border-box;\r\n -moz-box-sizing: border-box;\r\n box-sizing: border-box;\r\n }\r\n input[type=\"radio\"],\r\n input[type=\"checkbox\"] {\r\n margin: 4px 0 0;\r\n margin-top: 1px \\9;\r\n line-height: normal;\r\n }\r\n input[type=\"file\"] {\r\n display: block;\r\n }\r\n input[type=\"range\"] {\r\n display: block;\r\n width: 100%;\r\n }\r\n select[multiple],\r\n select[size] {\r\n height: auto;\r\n }\r\n input[type=\"file\"]:focus,\r\n input[type=\"radio\"]:focus,\r\n input[type=\"checkbox\"]:focus {\r\n outline: thin dotted;\r\n outline: 5px auto -webkit-focus-ring-color;\r\n outline-offset: -2px;\r\n }\r\n output {\r\n display: block;\r\n padding-top: 7px;\r\n font-size: 14px;\r\n line-height: 1.42857143;\r\n color: #555;\r\n }\r\n //.form-control {\r\n // display: block;\r\n // width: 100%;\r\n // height: 34px;\r\n // padding: 6px 12px;\r\n // font-size: 14px;\r\n // line-height: 1.42857143;\r\n // color: #555;\r\n // background-color: #fff;\r\n // background-image: none;\r\n // border: 1px solid #ccc;\r\n // border-radius: 4px;\r\n // -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n // box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n // -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;\r\n // -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\r\n // transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\r\n //}\r\n //.form-control:focus {\r\n // border-color: #66afe9;\r\n // outline: 0;\r\n // -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\r\n // box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\r\n //}\r\n //.form-control::-moz-placeholder {\r\n // color: #999;\r\n // opacity: 1;\r\n //}\r\n //.form-control:-ms-input-placeholder {\r\n // color: #999;\r\n //}\r\n //.form-control::-webkit-input-placeholder {\r\n // color: #999;\r\n //}\r\n //.form-control[disabled],\r\n //.form-control[readonly],\r\n //fieldset[disabled] .form-control {\r\n // background-color: #eee;\r\n // opacity: 1;\r\n //}\r\n //.form-control[disabled],\r\n //fieldset[disabled] .form-control {\r\n // cursor: not-allowed;\r\n //}\r\n //textarea.form-control {\r\n // height: auto;\r\n //}\r\n //input[type='search'] {\r\n // -webkit-appearance: none;\r\n //}\r\n // @media screen and (-webkit-min-device-pixel-ratio: 0) {\r\n // input[type='date'],\r\n // input[type='time'],\r\n // input[type='datetime-local'],\r\n // input[type='month'] {\r\n // line-height: 34px;\r\n // }\r\n // input[type='date'].input-sm,\r\n // input[type='time'].input-sm,\r\n // input[type='datetime-local'].input-sm,\r\n // input[type='month'].input-sm,\r\n // .input-group-sm input[type='date'],\r\n // .input-group-sm input[type='time'],\r\n // .input-group-sm input[type='datetime-local'],\r\n // .input-group-sm input[type='month'] {\r\n // line-height: 30px;\r\n // }\r\n // input[type='date'].input-lg,\r\n // input[type='time'].input-lg,\r\n // input[type='datetime-local'].input-lg,\r\n // input[type='month'].input-lg,\r\n // .input-group-lg input[type='date'],\r\n // .input-group-lg input[type='time'],\r\n // .input-group-lg input[type='datetime-local'],\r\n // .input-group-lg input[type='month'] {\r\n // line-height: 46px;\r\n // }\r\n // }\r\n //.form-group {\r\n // margin-bottom: 15px;\r\n //}\r\n .radio,\r\n .checkbox {\r\n position: relative;\r\n display: block;\r\n margin-top: 10px;\r\n margin-bottom: 10px;\r\n }\r\n .radio label,\r\n .checkbox label {\r\n min-height: 20px;\r\n padding-left: 20px;\r\n margin-bottom: 0;\r\n font-weight: normal;\r\n cursor: pointer;\r\n }\r\n .radio input[type=\"radio\"],\r\n .radio-inline input[type=\"radio\"],\r\n .checkbox input[type=\"checkbox\"],\r\n .checkbox-inline input[type=\"checkbox\"] {\r\n position: absolute;\r\n margin-top: 4px \\9;\r\n margin-left: -20px;\r\n }\r\n .radio + .radio,\r\n .checkbox + .checkbox {\r\n margin-top: -5px;\r\n }\r\n .radio-inline,\r\n .checkbox-inline {\r\n position: relative;\r\n display: inline-block;\r\n padding-left: 20px;\r\n margin-bottom: 0;\r\n font-weight: normal;\r\n vertical-align: middle;\r\n cursor: pointer;\r\n }\r\n .radio-inline + .radio-inline,\r\n .checkbox-inline + .checkbox-inline {\r\n margin-top: 0;\r\n margin-left: 10px;\r\n }\r\n input[type=\"radio\"][disabled],\r\n input[type=\"checkbox\"][disabled],\r\n input[type=\"radio\"].disabled,\r\n input[type=\"checkbox\"].disabled,\r\n fieldset[disabled] input[type=\"radio\"],\r\n fieldset[disabled] input[type=\"checkbox\"] {\r\n cursor: not-allowed;\r\n }\r\n .radio-inline.disabled,\r\n .checkbox-inline.disabled,\r\n fieldset[disabled] .radio-inline,\r\n fieldset[disabled] .checkbox-inline {\r\n cursor: not-allowed;\r\n }\r\n .radio.disabled label,\r\n .checkbox.disabled label,\r\n fieldset[disabled] .radio label,\r\n fieldset[disabled] .checkbox label {\r\n cursor: not-allowed;\r\n }\r\n .form-control-static {\r\n min-height: 34px;\r\n padding-top: 7px;\r\n padding-bottom: 7px;\r\n margin-bottom: 0;\r\n }\r\n .form-control-static.input-lg,\r\n .form-control-static.input-sm {\r\n padding-right: 0;\r\n padding-left: 0;\r\n }\r\n .input-sm {\r\n height: 30px;\r\n padding: 5px 10px;\r\n font-size: 12px;\r\n line-height: 1.5;\r\n border-radius: 3px;\r\n }\r\n select.input-sm {\r\n height: 30px;\r\n line-height: 30px;\r\n }\r\n textarea.input-sm,\r\n select[multiple].input-sm {\r\n height: auto;\r\n }\r\n .form-group-sm .form-control {\r\n height: 30px;\r\n padding: 5px 10px;\r\n font-size: 12px;\r\n line-height: 1.5;\r\n border-radius: 3px;\r\n }\r\n select.form-group-sm .form-control {\r\n height: 30px;\r\n line-height: 30px;\r\n }\r\n textarea.form-group-sm .form-control,\r\n select[multiple].form-group-sm .form-control {\r\n height: auto;\r\n }\r\n .form-group-sm .form-control-static {\r\n height: 30px;\r\n min-height: 32px;\r\n padding: 5px 10px;\r\n font-size: 12px;\r\n line-height: 1.5;\r\n }\r\n .input-lg {\r\n height: 46px;\r\n padding: 10px 16px;\r\n font-size: 18px;\r\n line-height: 1.3333333;\r\n border-radius: 6px;\r\n }\r\n select.input-lg {\r\n height: 46px;\r\n line-height: 46px;\r\n }\r\n textarea.input-lg,\r\n select[multiple].input-lg {\r\n height: auto;\r\n }\r\n .form-group-lg .form-control {\r\n height: 46px;\r\n padding: 10px 16px;\r\n font-size: 18px;\r\n line-height: 1.3333333;\r\n border-radius: 6px;\r\n }\r\n select.form-group-lg .form-control {\r\n height: 46px;\r\n line-height: 46px;\r\n }\r\n textarea.form-group-lg .form-control,\r\n select[multiple].form-group-lg .form-control {\r\n height: auto;\r\n }\r\n .form-group-lg .form-control-static {\r\n height: 46px;\r\n min-height: 38px;\r\n padding: 10px 16px;\r\n font-size: 18px;\r\n line-height: 1.3333333;\r\n }\r\n .has-feedback {\r\n position: relative;\r\n }\r\n .has-feedback .form-control {\r\n padding-right: 42.5px;\r\n }\r\n .form-control-feedback {\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n z-index: 2;\r\n display: block;\r\n width: 34px;\r\n height: 34px;\r\n line-height: 34px;\r\n text-align: center;\r\n pointer-events: none;\r\n }\r\n .input-lg + .form-control-feedback {\r\n width: 46px;\r\n height: 46px;\r\n line-height: 46px;\r\n }\r\n .input-sm + .form-control-feedback {\r\n width: 30px;\r\n height: 30px;\r\n line-height: 30px;\r\n }\r\n .has-success .help-block,\r\n .has-success .control-label,\r\n .has-success .radio,\r\n .has-success .checkbox,\r\n .has-success .radio-inline,\r\n .has-success .checkbox-inline,\r\n .has-success.radio label,\r\n .has-success.checkbox label,\r\n .has-success.radio-inline label,\r\n .has-success.checkbox-inline label {\r\n color: #3c763d;\r\n }\r\n .has-success .form-control {\r\n border-color: #3c763d;\r\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n }\r\n .has-success .form-control:focus {\r\n border-color: #2b542c;\r\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\r\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\r\n }\r\n .has-success .input-group-addon {\r\n color: #3c763d;\r\n background-color: #dff0d8;\r\n border-color: #3c763d;\r\n }\r\n .has-success .form-control-feedback {\r\n color: #3c763d;\r\n }\r\n .has-warning .help-block,\r\n .has-warning .control-label,\r\n .has-warning .radio,\r\n .has-warning .checkbox,\r\n .has-warning .radio-inline,\r\n .has-warning .checkbox-inline,\r\n .has-warning.radio label,\r\n .has-warning.checkbox label,\r\n .has-warning.radio-inline label,\r\n .has-warning.checkbox-inline label {\r\n color: #8a6d3b;\r\n }\r\n .has-warning .form-control {\r\n border-color: #8a6d3b;\r\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n }\r\n .has-warning .form-control:focus {\r\n border-color: #66512c;\r\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\r\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\r\n }\r\n .has-warning .input-group-addon {\r\n color: #8a6d3b;\r\n background-color: #fcf8e3;\r\n border-color: #8a6d3b;\r\n }\r\n .has-warning .form-control-feedback {\r\n color: #8a6d3b;\r\n }\r\n .has-error .help-block,\r\n .has-error .control-label,\r\n .has-error .radio,\r\n .has-error .checkbox,\r\n .has-error .radio-inline,\r\n .has-error .checkbox-inline,\r\n .has-error.radio label,\r\n .has-error.checkbox label,\r\n .has-error.radio-inline label,\r\n .has-error.checkbox-inline label {\r\n color: #a94442;\r\n }\r\n .has-error .form-control {\r\n border-color: #a94442;\r\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\r\n }\r\n .has-error .form-control:focus {\r\n border-color: #843534;\r\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\r\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\r\n }\r\n .has-error .input-group-addon {\r\n color: #a94442;\r\n background-color: #f2dede;\r\n border-color: #a94442;\r\n }\r\n .has-error .form-control-feedback {\r\n color: #a94442;\r\n }\r\n .has-feedback label ~ .form-control-feedback {\r\n top: 25px;\r\n }\r\n .has-feedback label.sr-only ~ .form-control-feedback {\r\n top: 0;\r\n }\r\n .help-block {\r\n display: block;\r\n margin-top: 5px;\r\n margin-bottom: 10px;\r\n color: #737373;\r\n }\r\n @media (min-width: 768px) {\r\n .form-inline .form-group {\r\n display: inline-block;\r\n margin-bottom: 0;\r\n vertical-align: middle;\r\n }\r\n .form-inline .form-control {\r\n display: inline-block;\r\n width: auto;\r\n vertical-align: middle;\r\n }\r\n .form-inline .form-control-static {\r\n display: inline-block;\r\n }\r\n .form-inline .input-group {\r\n display: inline-table;\r\n vertical-align: middle;\r\n }\r\n .form-inline .input-group .input-group-addon,\r\n .form-inline .input-group .input-group-btn,\r\n .form-inline .input-group .form-control {\r\n width: auto;\r\n }\r\n .form-inline .input-group > .form-control {\r\n width: 100%;\r\n }\r\n .form-inline .control-label {\r\n margin-bottom: 0;\r\n vertical-align: middle;\r\n }\r\n .form-inline .radio,\r\n .form-inline .checkbox {\r\n display: inline-block;\r\n margin-top: 0;\r\n margin-bottom: 0;\r\n vertical-align: middle;\r\n }\r\n .form-inline .radio label,\r\n .form-inline .checkbox label {\r\n padding-left: 0;\r\n }\r\n .form-inline .radio input[type=\"radio\"],\r\n .form-inline .checkbox input[type=\"checkbox\"] {\r\n position: relative;\r\n margin-left: 0;\r\n }\r\n .form-inline .has-feedback .form-control-feedback {\r\n top: 0;\r\n }\r\n }\r\n .form-horizontal .radio,\r\n .form-horizontal .checkbox,\r\n .form-horizontal .radio-inline,\r\n .form-horizontal .checkbox-inline {\r\n padding-top: 7px;\r\n margin-top: 0;\r\n margin-bottom: 0;\r\n }\r\n .form-horizontal .radio,\r\n .form-horizontal .checkbox {\r\n min-height: 27px;\r\n }\r\n .form-horizontal .form-group {\r\n margin-right: -15px;\r\n margin-left: -15px;\r\n }\r\n @media (min-width: 768px) {\r\n .form-horizontal .control-label {\r\n padding-top: 7px;\r\n margin-bottom: 0;\r\n text-align: right;\r\n }\r\n }\r\n .form-horizontal .has-feedback .form-control-feedback {\r\n right: 15px;\r\n }\r\n @media (min-width: 768px) {\r\n .form-horizontal .form-group-lg .control-label {\r\n padding-top: 14.333333px;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .form-horizontal .form-group-sm .control-label {\r\n padding-top: 6px;\r\n }\r\n }\r\n .btn {\r\n display: inline-block;\r\n padding: 6px 12px;\r\n margin-bottom: 0;\r\n font-size: 14px;\r\n font-weight: normal;\r\n line-height: 1.42857143;\r\n text-align: center;\r\n white-space: nowrap;\r\n vertical-align: middle;\r\n -ms-touch-action: manipulation;\r\n touch-action: manipulation;\r\n cursor: pointer;\r\n -webkit-user-select: none;\r\n -moz-user-select: none;\r\n -ms-user-select: none;\r\n user-select: none;\r\n background-image: none;\r\n border: 1px solid transparent;\r\n border-radius: 4px;\r\n }\r\n .btn:focus,\r\n .btn:active:focus,\r\n .btn.active:focus,\r\n .btn.focus,\r\n .btn:active.focus,\r\n .btn.active.focus {\r\n outline: thin dotted;\r\n outline: 5px auto -webkit-focus-ring-color;\r\n outline-offset: -2px;\r\n }\r\n .btn:hover,\r\n .btn:focus,\r\n .btn.focus {\r\n color: #333;\r\n text-decoration: none;\r\n }\r\n .btn:active,\r\n .btn.active {\r\n background-image: none;\r\n outline: 0;\r\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\r\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\r\n }\r\n .btn.disabled,\r\n .btn[disabled],\r\n fieldset[disabled] .btn {\r\n pointer-events: none;\r\n cursor: not-allowed;\r\n filter: alpha(opacity=65);\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n opacity: 0.65;\r\n }\r\n .btn-default {\r\n color: #333;\r\n background-color: #fff;\r\n border-color: #ccc;\r\n }\r\n .btn-default:hover,\r\n .btn-default:focus,\r\n .btn-default.focus,\r\n .btn-default:active,\r\n .btn-default.active,\r\n .open > .dropdown-toggle.btn-default {\r\n color: #333;\r\n background-color: #e6e6e6;\r\n border-color: #adadad;\r\n }\r\n .btn-default:active,\r\n .btn-default.active,\r\n .open > .dropdown-toggle.btn-default {\r\n background-image: none;\r\n }\r\n .btn-default.disabled,\r\n .btn-default[disabled],\r\n fieldset[disabled] .btn-default,\r\n .btn-default.disabled:hover,\r\n .btn-default[disabled]:hover,\r\n fieldset[disabled] .btn-default:hover,\r\n .btn-default.disabled:focus,\r\n .btn-default[disabled]:focus,\r\n fieldset[disabled] .btn-default:focus,\r\n .btn-default.disabled.focus,\r\n .btn-default[disabled].focus,\r\n fieldset[disabled] .btn-default.focus,\r\n .btn-default.disabled:active,\r\n .btn-default[disabled]:active,\r\n fieldset[disabled] .btn-default:active,\r\n .btn-default.disabled.active,\r\n .btn-default[disabled].active,\r\n fieldset[disabled] .btn-default.active {\r\n background-color: #fff;\r\n border-color: #ccc;\r\n }\r\n .btn-default .badge {\r\n color: #fff;\r\n background-color: #333;\r\n }\r\n .btn-primary {\r\n color: #fff;\r\n background-color: #337ab7;\r\n border-color: #2e6da4;\r\n }\r\n .btn-primary:hover,\r\n .btn-primary:focus,\r\n .btn-primary.focus,\r\n .btn-primary:active,\r\n .btn-primary.active,\r\n .open > .dropdown-toggle.btn-primary {\r\n color: #fff;\r\n background-color: #286090;\r\n border-color: #204d74;\r\n }\r\n .btn-primary:active,\r\n .btn-primary.active,\r\n .open > .dropdown-toggle.btn-primary {\r\n background-image: none;\r\n }\r\n .btn-primary.disabled,\r\n .btn-primary[disabled],\r\n fieldset[disabled] .btn-primary,\r\n .btn-primary.disabled:hover,\r\n .btn-primary[disabled]:hover,\r\n fieldset[disabled] .btn-primary:hover,\r\n .btn-primary.disabled:focus,\r\n .btn-primary[disabled]:focus,\r\n fieldset[disabled] .btn-primary:focus,\r\n .btn-primary.disabled.focus,\r\n .btn-primary[disabled].focus,\r\n fieldset[disabled] .btn-primary.focus,\r\n .btn-primary.disabled:active,\r\n .btn-primary[disabled]:active,\r\n fieldset[disabled] .btn-primary:active,\r\n .btn-primary.disabled.active,\r\n .btn-primary[disabled].active,\r\n fieldset[disabled] .btn-primary.active {\r\n background-color: #337ab7;\r\n border-color: #2e6da4;\r\n }\r\n .btn-primary .badge {\r\n color: #337ab7;\r\n background-color: #fff;\r\n }\r\n .btn-success {\r\n color: #fff;\r\n background-color: #5cb85c;\r\n border-color: #4cae4c;\r\n }\r\n .btn-success:hover,\r\n .btn-success:focus,\r\n .btn-success.focus,\r\n .btn-success:active,\r\n .btn-success.active,\r\n .open > .dropdown-toggle.btn-success {\r\n color: #fff;\r\n background-color: #449d44;\r\n border-color: #398439;\r\n }\r\n .btn-success:active,\r\n .btn-success.active,\r\n .open > .dropdown-toggle.btn-success {\r\n background-image: none;\r\n }\r\n .btn-success.disabled,\r\n .btn-success[disabled],\r\n fieldset[disabled] .btn-success,\r\n .btn-success.disabled:hover,\r\n .btn-success[disabled]:hover,\r\n fieldset[disabled] .btn-success:hover,\r\n .btn-success.disabled:focus,\r\n .btn-success[disabled]:focus,\r\n fieldset[disabled] .btn-success:focus,\r\n .btn-success.disabled.focus,\r\n .btn-success[disabled].focus,\r\n fieldset[disabled] .btn-success.focus,\r\n .btn-success.disabled:active,\r\n .btn-success[disabled]:active,\r\n fieldset[disabled] .btn-success:active,\r\n .btn-success.disabled.active,\r\n .btn-success[disabled].active,\r\n fieldset[disabled] .btn-success.active {\r\n background-color: #5cb85c;\r\n border-color: #4cae4c;\r\n }\r\n .btn-success .badge {\r\n color: #5cb85c;\r\n background-color: #fff;\r\n }\r\n .btn-info {\r\n color: #fff;\r\n background-color: #5bc0de;\r\n border-color: #46b8da;\r\n }\r\n .btn-info:hover,\r\n .btn-info:focus,\r\n .btn-info.focus,\r\n .btn-info:active,\r\n .btn-info.active,\r\n .open > .dropdown-toggle.btn-info {\r\n color: #fff;\r\n background-color: #31b0d5;\r\n border-color: #269abc;\r\n }\r\n .btn-info:active,\r\n .btn-info.active,\r\n .open > .dropdown-toggle.btn-info {\r\n background-image: none;\r\n }\r\n .btn-info.disabled,\r\n .btn-info[disabled],\r\n fieldset[disabled] .btn-info,\r\n .btn-info.disabled:hover,\r\n .btn-info[disabled]:hover,\r\n fieldset[disabled] .btn-info:hover,\r\n .btn-info.disabled:focus,\r\n .btn-info[disabled]:focus,\r\n fieldset[disabled] .btn-info:focus,\r\n .btn-info.disabled.focus,\r\n .btn-info[disabled].focus,\r\n fieldset[disabled] .btn-info.focus,\r\n .btn-info.disabled:active,\r\n .btn-info[disabled]:active,\r\n fieldset[disabled] .btn-info:active,\r\n .btn-info.disabled.active,\r\n .btn-info[disabled].active,\r\n fieldset[disabled] .btn-info.active {\r\n background-color: #5bc0de;\r\n border-color: #46b8da;\r\n }\r\n .btn-info .badge {\r\n color: #5bc0de;\r\n background-color: #fff;\r\n }\r\n .btn-warning {\r\n color: #fff;\r\n background-color: #f0ad4e;\r\n border-color: #eea236;\r\n }\r\n .btn-warning:hover,\r\n .btn-warning:focus,\r\n .btn-warning.focus,\r\n .btn-warning:active,\r\n .btn-warning.active,\r\n .open > .dropdown-toggle.btn-warning {\r\n color: #fff;\r\n background-color: #ec971f;\r\n border-color: #d58512;\r\n }\r\n .btn-warning:active,\r\n .btn-warning.active,\r\n .open > .dropdown-toggle.btn-warning {\r\n background-image: none;\r\n }\r\n .btn-warning.disabled,\r\n .btn-warning[disabled],\r\n fieldset[disabled] .btn-warning,\r\n .btn-warning.disabled:hover,\r\n .btn-warning[disabled]:hover,\r\n fieldset[disabled] .btn-warning:hover,\r\n .btn-warning.disabled:focus,\r\n .btn-warning[disabled]:focus,\r\n fieldset[disabled] .btn-warning:focus,\r\n .btn-warning.disabled.focus,\r\n .btn-warning[disabled].focus,\r\n fieldset[disabled] .btn-warning.focus,\r\n .btn-warning.disabled:active,\r\n .btn-warning[disabled]:active,\r\n fieldset[disabled] .btn-warning:active,\r\n .btn-warning.disabled.active,\r\n .btn-warning[disabled].active,\r\n fieldset[disabled] .btn-warning.active {\r\n background-color: #f0ad4e;\r\n border-color: #eea236;\r\n }\r\n .btn-warning .badge {\r\n color: #f0ad4e;\r\n background-color: #fff;\r\n }\r\n .btn-danger {\r\n color: #fff;\r\n background-color: #d9534f;\r\n border-color: #d43f3a;\r\n }\r\n .btn-danger:hover,\r\n .btn-danger:focus,\r\n .btn-danger.focus,\r\n .btn-danger:active,\r\n .btn-danger.active,\r\n .open > .dropdown-toggle.btn-danger {\r\n color: #fff;\r\n background-color: #c9302c;\r\n border-color: #ac2925;\r\n }\r\n .btn-danger:active,\r\n .btn-danger.active,\r\n .open > .dropdown-toggle.btn-danger {\r\n background-image: none;\r\n }\r\n .btn-danger.disabled,\r\n .btn-danger[disabled],\r\n fieldset[disabled] .btn-danger,\r\n .btn-danger.disabled:hover,\r\n .btn-danger[disabled]:hover,\r\n fieldset[disabled] .btn-danger:hover,\r\n .btn-danger.disabled:focus,\r\n .btn-danger[disabled]:focus,\r\n fieldset[disabled] .btn-danger:focus,\r\n .btn-danger.disabled.focus,\r\n .btn-danger[disabled].focus,\r\n fieldset[disabled] .btn-danger.focus,\r\n .btn-danger.disabled:active,\r\n .btn-danger[disabled]:active,\r\n fieldset[disabled] .btn-danger:active,\r\n .btn-danger.disabled.active,\r\n .btn-danger[disabled].active,\r\n fieldset[disabled] .btn-danger.active {\r\n background-color: #d9534f;\r\n border-color: #d43f3a;\r\n }\r\n .btn-danger .badge {\r\n color: #d9534f;\r\n background-color: #fff;\r\n }\r\n .btn-link {\r\n font-weight: normal;\r\n color: #337ab7;\r\n border-radius: 0;\r\n }\r\n .btn-link,\r\n .btn-link:active,\r\n .btn-link.active,\r\n .btn-link[disabled],\r\n fieldset[disabled] .btn-link {\r\n background-color: transparent;\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n }\r\n .btn-link,\r\n .btn-link:hover,\r\n .btn-link:focus,\r\n .btn-link:active {\r\n border-color: transparent;\r\n }\r\n .btn-link:hover,\r\n .btn-link:focus {\r\n color: #23527c;\r\n text-decoration: underline;\r\n background-color: transparent;\r\n }\r\n .btn-link[disabled]:hover,\r\n fieldset[disabled] .btn-link:hover,\r\n .btn-link[disabled]:focus,\r\n fieldset[disabled] .btn-link:focus {\r\n color: #777;\r\n text-decoration: none;\r\n }\r\n .btn-lg,\r\n .btn-group-lg > .btn {\r\n padding: 10px 16px;\r\n font-size: 18px;\r\n line-height: 1.3333333;\r\n border-radius: 6px;\r\n }\r\n .btn-sm,\r\n .btn-group-sm > .btn {\r\n padding: 5px 10px;\r\n font-size: 12px;\r\n line-height: 1.5;\r\n border-radius: 3px;\r\n }\r\n .btn-xs,\r\n .btn-group-xs > .btn {\r\n padding: 1px 5px;\r\n font-size: 12px;\r\n line-height: 1.5;\r\n border-radius: 3px;\r\n }\r\n //.btn-block {\r\n // display: block;\r\n // width: 100%;\r\n //}\r\n //.btn-block + .btn-block {\r\n // margin-top: 5px;\r\n //}\r\n //input[type='submit'].btn-block,\r\n //input[type='reset'].btn-block,\r\n //input[type='button'].btn-block {\r\n // width: 100%;\r\n //}\r\n .fade {\r\n opacity: 0;\r\n -webkit-transition: opacity 0.15s linear;\r\n -o-transition: opacity 0.15s linear;\r\n transition: opacity 0.15s linear;\r\n }\r\n .fade.in {\r\n opacity: 1;\r\n }\r\n .collapse {\r\n display: none;\r\n }\r\n .collapse.in {\r\n display: block;\r\n }\r\n tr.collapse.in {\r\n display: table-row;\r\n }\r\n tbody.collapse.in {\r\n display: table-row-group;\r\n }\r\n .collapsing {\r\n position: relative;\r\n height: 0;\r\n overflow: hidden;\r\n -webkit-transition-timing-function: ease;\r\n -o-transition-timing-function: ease;\r\n transition-timing-function: ease;\r\n -webkit-transition-duration: 0.35s;\r\n -o-transition-duration: 0.35s;\r\n transition-duration: 0.35s;\r\n -webkit-transition-property: height, visibility;\r\n -o-transition-property: height, visibility;\r\n transition-property: height, visibility;\r\n }\r\n .caret {\r\n display: inline-block;\r\n width: 0;\r\n height: 0;\r\n margin-left: 2px;\r\n vertical-align: middle;\r\n border-top: 4px dashed;\r\n border-right: 4px solid transparent;\r\n border-left: 4px solid transparent;\r\n }\r\n .dropup,\r\n .dropdown {\r\n position: relative;\r\n }\r\n .dropdown-toggle:focus {\r\n outline: 0;\r\n }\r\n .dropdown-menu {\r\n position: absolute;\r\n top: 100%;\r\n left: 0;\r\n z-index: 1000;\r\n display: none;\r\n float: left;\r\n min-width: 160px;\r\n padding: 5px 0;\r\n margin: 2px 0 0;\r\n font-size: 14px;\r\n text-align: left;\r\n list-style: none;\r\n background-color: #fff;\r\n -webkit-background-clip: padding-box;\r\n background-clip: padding-box;\r\n border: 1px solid #ccc;\r\n border: 1px solid rgba(0, 0, 0, 0.15);\r\n border-radius: 4px;\r\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\r\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\r\n }\r\n .dropdown-menu.pull-right {\r\n right: 0;\r\n left: auto;\r\n }\r\n .dropdown-menu .divider {\r\n height: 1px;\r\n margin: 9px 0;\r\n overflow: hidden;\r\n background-color: #e5e5e5;\r\n }\r\n .dropdown-menu > li > a {\r\n display: block;\r\n padding: 3px 20px;\r\n clear: both;\r\n font-weight: normal;\r\n line-height: 1.42857143;\r\n color: #333;\r\n white-space: nowrap;\r\n }\r\n .dropdown-menu > li > a:hover,\r\n .dropdown-menu > li > a:focus {\r\n color: #262626;\r\n text-decoration: none;\r\n background-color: #f5f5f5;\r\n }\r\n .dropdown-menu > .active > a,\r\n .dropdown-menu > .active > a:hover,\r\n .dropdown-menu > .active > a:focus {\r\n color: #fff;\r\n text-decoration: none;\r\n background-color: #337ab7;\r\n outline: 0;\r\n }\r\n .dropdown-menu > .disabled > a,\r\n .dropdown-menu > .disabled > a:hover,\r\n .dropdown-menu > .disabled > a:focus {\r\n color: #777;\r\n }\r\n .dropdown-menu > .disabled > a:hover,\r\n .dropdown-menu > .disabled > a:focus {\r\n text-decoration: none;\r\n cursor: not-allowed;\r\n background-color: transparent;\r\n background-image: none;\r\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\r\n }\r\n .open > .dropdown-menu {\r\n display: block;\r\n }\r\n .open > a {\r\n outline: 0;\r\n }\r\n .dropdown-menu-right {\r\n right: 0;\r\n left: auto;\r\n }\r\n .dropdown-menu-left {\r\n right: auto;\r\n left: 0;\r\n }\r\n .dropdown-header {\r\n display: block;\r\n padding: 3px 20px;\r\n font-size: 12px;\r\n line-height: 1.42857143;\r\n color: #777;\r\n white-space: nowrap;\r\n }\r\n .dropdown-backdrop {\r\n position: fixed;\r\n top: 0;\r\n right: 0;\r\n bottom: 0;\r\n left: 0;\r\n z-index: 990;\r\n }\r\n .pull-right > .dropdown-menu {\r\n right: 0;\r\n left: auto;\r\n }\r\n .dropup .caret,\r\n .navbar-fixed-bottom .dropdown .caret {\r\n content: \"\";\r\n border-top: 0;\r\n border-bottom: 4px solid;\r\n }\r\n .dropup .dropdown-menu,\r\n .navbar-fixed-bottom .dropdown .dropdown-menu {\r\n top: auto;\r\n bottom: 100%;\r\n margin-bottom: 2px;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-right .dropdown-menu {\r\n right: 0;\r\n left: auto;\r\n }\r\n .navbar-right .dropdown-menu-left {\r\n right: auto;\r\n left: 0;\r\n }\r\n }\r\n .btn-group,\r\n .btn-group-vertical {\r\n position: relative;\r\n display: inline-block;\r\n vertical-align: middle;\r\n }\r\n .btn-group > .btn,\r\n .btn-group-vertical > .btn {\r\n position: relative;\r\n float: left;\r\n }\r\n .btn-group > .btn:hover,\r\n .btn-group-vertical > .btn:hover,\r\n .btn-group > .btn:focus,\r\n .btn-group-vertical > .btn:focus,\r\n .btn-group > .btn:active,\r\n .btn-group-vertical > .btn:active,\r\n .btn-group > .btn.active,\r\n .btn-group-vertical > .btn.active {\r\n z-index: 2;\r\n }\r\n .btn-group .btn + .btn,\r\n .btn-group .btn + .btn-group,\r\n .btn-group .btn-group + .btn,\r\n .btn-group .btn-group + .btn-group {\r\n margin-left: -1px;\r\n }\r\n .btn-toolbar {\r\n margin-left: -5px;\r\n }\r\n .btn-toolbar .btn-group,\r\n .btn-toolbar .input-group {\r\n float: left;\r\n }\r\n .btn-toolbar > .btn,\r\n .btn-toolbar > .btn-group,\r\n .btn-toolbar > .input-group {\r\n margin-left: 5px;\r\n }\r\n .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\r\n border-radius: 0;\r\n }\r\n .btn-group > .btn:first-child {\r\n margin-left: 0;\r\n }\r\n .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\r\n border-top-right-radius: 0;\r\n border-bottom-right-radius: 0;\r\n }\r\n .btn-group > .btn:last-child:not(:first-child),\r\n .btn-group > .dropdown-toggle:not(:first-child) {\r\n border-top-left-radius: 0;\r\n border-bottom-left-radius: 0;\r\n }\r\n .btn-group > .btn-group {\r\n float: left;\r\n }\r\n .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\r\n border-radius: 0;\r\n }\r\n .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\r\n .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\r\n border-top-right-radius: 0;\r\n border-bottom-right-radius: 0;\r\n }\r\n .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\r\n border-top-left-radius: 0;\r\n border-bottom-left-radius: 0;\r\n }\r\n .btn-group .dropdown-toggle:active,\r\n .btn-group.open .dropdown-toggle {\r\n outline: 0;\r\n }\r\n .btn-group > .btn + .dropdown-toggle {\r\n padding-right: 8px;\r\n padding-left: 8px;\r\n }\r\n .btn-group > .btn-lg + .dropdown-toggle {\r\n padding-right: 12px;\r\n padding-left: 12px;\r\n }\r\n .btn-group.open .dropdown-toggle {\r\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\r\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\r\n }\r\n .btn-group.open .dropdown-toggle.btn-link {\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n }\r\n .btn .caret {\r\n margin-left: 0;\r\n }\r\n .btn-lg .caret {\r\n border-width: 5px 5px 0;\r\n border-bottom-width: 0;\r\n }\r\n .dropup .btn-lg .caret {\r\n border-width: 0 5px 5px;\r\n }\r\n .btn-group-vertical > .btn,\r\n .btn-group-vertical > .btn-group,\r\n .btn-group-vertical > .btn-group > .btn {\r\n display: block;\r\n float: none;\r\n width: 100%;\r\n max-width: 100%;\r\n }\r\n .btn-group-vertical > .btn-group > .btn {\r\n float: none;\r\n }\r\n .btn-group-vertical > .btn + .btn,\r\n .btn-group-vertical > .btn + .btn-group,\r\n .btn-group-vertical > .btn-group + .btn,\r\n .btn-group-vertical > .btn-group + .btn-group {\r\n margin-top: -1px;\r\n margin-left: 0;\r\n }\r\n .btn-group-vertical > .btn:not(:first-child):not(:last-child) {\r\n border-radius: 0;\r\n }\r\n .btn-group-vertical > .btn:first-child:not(:last-child) {\r\n border-top-right-radius: 4px;\r\n border-bottom-right-radius: 0;\r\n border-bottom-left-radius: 0;\r\n }\r\n .btn-group-vertical > .btn:last-child:not(:first-child) {\r\n border-top-left-radius: 0;\r\n border-top-right-radius: 0;\r\n border-bottom-left-radius: 4px;\r\n }\r\n .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\r\n border-radius: 0;\r\n }\r\n .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\r\n .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\r\n border-bottom-right-radius: 0;\r\n border-bottom-left-radius: 0;\r\n }\r\n .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\r\n border-top-left-radius: 0;\r\n border-top-right-radius: 0;\r\n }\r\n .btn-group-justified {\r\n display: table;\r\n width: 100%;\r\n table-layout: fixed;\r\n border-collapse: separate;\r\n }\r\n .btn-group-justified > .btn,\r\n .btn-group-justified > .btn-group {\r\n display: table-cell;\r\n float: none;\r\n width: 1%;\r\n }\r\n .btn-group-justified > .btn-group .btn {\r\n width: 100%;\r\n }\r\n .btn-group-justified > .btn-group .dropdown-menu {\r\n left: auto;\r\n }\r\n [data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\r\n [data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\r\n [data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\r\n [data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\r\n position: absolute;\r\n clip: rect(0, 0, 0, 0);\r\n pointer-events: none;\r\n }\r\n .input-group {\r\n position: relative;\r\n display: table;\r\n border-collapse: separate;\r\n }\r\n .input-group[class*=\"col-\"] {\r\n float: none;\r\n padding-right: 0;\r\n padding-left: 0;\r\n }\r\n .input-group .form-control {\r\n position: relative;\r\n z-index: 2;\r\n float: left;\r\n width: 100%;\r\n margin-bottom: 0;\r\n }\r\n .input-group-lg > .form-control,\r\n .input-group-lg > .input-group-addon,\r\n .input-group-lg > .input-group-btn > .btn {\r\n height: 46px;\r\n padding: 10px 16px;\r\n font-size: 18px;\r\n line-height: 1.3333333;\r\n border-radius: 6px;\r\n }\r\n select.input-group-lg > .form-control,\r\n select.input-group-lg > .input-group-addon,\r\n select.input-group-lg > .input-group-btn > .btn {\r\n height: 46px;\r\n line-height: 46px;\r\n }\r\n textarea.input-group-lg > .form-control,\r\n textarea.input-group-lg > .input-group-addon,\r\n textarea.input-group-lg > .input-group-btn > .btn,\r\n select[multiple].input-group-lg > .form-control,\r\n select[multiple].input-group-lg > .input-group-addon,\r\n select[multiple].input-group-lg > .input-group-btn > .btn {\r\n height: auto;\r\n }\r\n .input-group-sm > .form-control,\r\n .input-group-sm > .input-group-addon,\r\n .input-group-sm > .input-group-btn > .btn {\r\n height: 30px;\r\n padding: 5px 10px;\r\n font-size: 12px;\r\n line-height: 1.5;\r\n border-radius: 3px;\r\n }\r\n select.input-group-sm > .form-control,\r\n select.input-group-sm > .input-group-addon,\r\n select.input-group-sm > .input-group-btn > .btn {\r\n height: 30px;\r\n line-height: 30px;\r\n }\r\n textarea.input-group-sm > .form-control,\r\n textarea.input-group-sm > .input-group-addon,\r\n textarea.input-group-sm > .input-group-btn > .btn,\r\n select[multiple].input-group-sm > .form-control,\r\n select[multiple].input-group-sm > .input-group-addon,\r\n select[multiple].input-group-sm > .input-group-btn > .btn {\r\n height: auto;\r\n }\r\n .input-group-addon,\r\n .input-group-btn,\r\n .input-group .form-control {\r\n display: table-cell;\r\n }\r\n .input-group-addon:not(:first-child):not(:last-child),\r\n .input-group-btn:not(:first-child):not(:last-child),\r\n .input-group .form-control:not(:first-child):not(:last-child) {\r\n border-radius: 0;\r\n }\r\n .input-group-addon,\r\n .input-group-btn {\r\n width: 1%;\r\n white-space: nowrap;\r\n vertical-align: middle;\r\n }\r\n .input-group-addon {\r\n padding: 6px 12px;\r\n font-size: 14px;\r\n font-weight: normal;\r\n line-height: 1;\r\n color: #555;\r\n text-align: center;\r\n background-color: #eee;\r\n border: 1px solid #ccc;\r\n border-radius: 4px;\r\n }\r\n .input-group-addon.input-sm {\r\n padding: 5px 10px;\r\n font-size: 12px;\r\n border-radius: 3px;\r\n }\r\n .input-group-addon.input-lg {\r\n padding: 10px 16px;\r\n font-size: 18px;\r\n border-radius: 6px;\r\n }\r\n .input-group-addon input[type=\"radio\"],\r\n .input-group-addon input[type=\"checkbox\"] {\r\n margin-top: 0;\r\n }\r\n .input-group .form-control:first-child,\r\n .input-group-addon:first-child,\r\n .input-group-btn:first-child > .btn,\r\n .input-group-btn:first-child > .btn-group > .btn,\r\n .input-group-btn:first-child > .dropdown-toggle,\r\n .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\r\n .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\r\n border-top-right-radius: 0;\r\n border-bottom-right-radius: 0;\r\n }\r\n .input-group-addon:first-child {\r\n border-right: 0;\r\n }\r\n .input-group .form-control:last-child,\r\n .input-group-addon:last-child,\r\n .input-group-btn:last-child > .btn,\r\n .input-group-btn:last-child > .btn-group > .btn,\r\n .input-group-btn:last-child > .dropdown-toggle,\r\n .input-group-btn:first-child > .btn:not(:first-child),\r\n .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\r\n border-top-left-radius: 0;\r\n border-bottom-left-radius: 0;\r\n }\r\n .input-group-addon:last-child {\r\n border-left: 0;\r\n }\r\n .input-group-btn {\r\n position: relative;\r\n font-size: 0;\r\n white-space: nowrap;\r\n }\r\n .input-group-btn > .btn {\r\n position: relative;\r\n }\r\n .input-group-btn > .btn + .btn {\r\n margin-left: -1px;\r\n }\r\n .input-group-btn > .btn:hover,\r\n .input-group-btn > .btn:focus,\r\n .input-group-btn > .btn:active {\r\n z-index: 2;\r\n }\r\n .input-group-btn:first-child > .btn,\r\n .input-group-btn:first-child > .btn-group {\r\n margin-right: -1px;\r\n }\r\n .input-group-btn:last-child > .btn,\r\n .input-group-btn:last-child > .btn-group {\r\n margin-left: -1px;\r\n }\r\n .nav {\r\n padding-left: 0;\r\n margin-bottom: 0;\r\n list-style: none;\r\n }\r\n .nav > li {\r\n position: relative;\r\n display: block;\r\n }\r\n .nav > li > a {\r\n position: relative;\r\n display: block;\r\n padding: 10px 15px;\r\n }\r\n .nav > li > a:hover,\r\n .nav > li > a:focus {\r\n text-decoration: none;\r\n background-color: #eee;\r\n }\r\n .nav > li.disabled > a {\r\n color: #777;\r\n }\r\n .nav > li.disabled > a:hover,\r\n .nav > li.disabled > a:focus {\r\n color: #777;\r\n text-decoration: none;\r\n cursor: not-allowed;\r\n background-color: transparent;\r\n }\r\n .nav .open > a,\r\n .nav .open > a:hover,\r\n .nav .open > a:focus {\r\n background-color: #eee;\r\n border-color: #337ab7;\r\n }\r\n .nav .nav-divider {\r\n height: 1px;\r\n margin: 9px 0;\r\n overflow: hidden;\r\n background-color: #e5e5e5;\r\n }\r\n .nav > li > a > img {\r\n max-width: none;\r\n }\r\n .nav-tabs {\r\n border-bottom: 1px solid #ddd;\r\n }\r\n .nav-tabs > li {\r\n float: left;\r\n margin-bottom: -1px;\r\n }\r\n .nav-tabs > li > a {\r\n margin-right: 2px;\r\n line-height: 1.42857143;\r\n border: 1px solid transparent;\r\n border-radius: 4px 4px 0 0;\r\n }\r\n .nav-tabs > li > a:hover {\r\n border-color: #eee #eee #ddd;\r\n }\r\n .nav-tabs > li.active > a,\r\n .nav-tabs > li.active > a:hover,\r\n .nav-tabs > li.active > a:focus {\r\n color: #555;\r\n cursor: default;\r\n background-color: #fff;\r\n border: 1px solid #ddd;\r\n border-bottom-color: transparent;\r\n }\r\n .nav-tabs.nav-justified {\r\n width: 100%;\r\n border-bottom: 0;\r\n }\r\n .nav-tabs.nav-justified > li {\r\n float: none;\r\n }\r\n .nav-tabs.nav-justified > li > a {\r\n margin-bottom: 5px;\r\n text-align: center;\r\n }\r\n .nav-tabs.nav-justified > .dropdown .dropdown-menu {\r\n top: auto;\r\n left: auto;\r\n }\r\n @media (min-width: 768px) {\r\n .nav-tabs.nav-justified > li {\r\n display: table-cell;\r\n width: 1%;\r\n }\r\n .nav-tabs.nav-justified > li > a {\r\n margin-bottom: 0;\r\n }\r\n }\r\n .nav-tabs.nav-justified > li > a {\r\n margin-right: 0;\r\n border-radius: 4px;\r\n }\r\n .nav-tabs.nav-justified > .active > a,\r\n .nav-tabs.nav-justified > .active > a:hover,\r\n .nav-tabs.nav-justified > .active > a:focus {\r\n border: 1px solid #ddd;\r\n }\r\n @media (min-width: 768px) {\r\n .nav-tabs.nav-justified > li > a {\r\n border-bottom: 1px solid #ddd;\r\n border-radius: 4px 4px 0 0;\r\n }\r\n .nav-tabs.nav-justified > .active > a,\r\n .nav-tabs.nav-justified > .active > a:hover,\r\n .nav-tabs.nav-justified > .active > a:focus {\r\n border-bottom-color: #fff;\r\n }\r\n }\r\n .nav-pills > li {\r\n float: left;\r\n }\r\n .nav-pills > li > a {\r\n border-radius: 4px;\r\n }\r\n .nav-pills > li + li {\r\n margin-left: 2px;\r\n }\r\n .nav-pills > li.active > a,\r\n .nav-pills > li.active > a:hover,\r\n .nav-pills > li.active > a:focus {\r\n color: #fff;\r\n background-color: #337ab7;\r\n }\r\n .nav-stacked > li {\r\n float: none;\r\n }\r\n .nav-stacked > li + li {\r\n margin-top: 2px;\r\n margin-left: 0;\r\n }\r\n .nav-justified {\r\n width: 100%;\r\n }\r\n .nav-justified > li {\r\n float: none;\r\n }\r\n .nav-justified > li > a {\r\n margin-bottom: 5px;\r\n text-align: center;\r\n }\r\n .nav-justified > .dropdown .dropdown-menu {\r\n top: auto;\r\n left: auto;\r\n }\r\n @media (min-width: 768px) {\r\n .nav-justified > li {\r\n display: table-cell;\r\n width: 1%;\r\n }\r\n .nav-justified > li > a {\r\n margin-bottom: 0;\r\n }\r\n }\r\n .nav-tabs-justified {\r\n border-bottom: 0;\r\n }\r\n .nav-tabs-justified > li > a {\r\n margin-right: 0;\r\n border-radius: 4px;\r\n }\r\n .nav-tabs-justified > .active > a,\r\n .nav-tabs-justified > .active > a:hover,\r\n .nav-tabs-justified > .active > a:focus {\r\n border: 1px solid #ddd;\r\n }\r\n @media (min-width: 768px) {\r\n .nav-tabs-justified > li > a {\r\n border-bottom: 1px solid #ddd;\r\n border-radius: 4px 4px 0 0;\r\n }\r\n .nav-tabs-justified > .active > a,\r\n .nav-tabs-justified > .active > a:hover,\r\n .nav-tabs-justified > .active > a:focus {\r\n border-bottom-color: #fff;\r\n }\r\n }\r\n .tab-content > .tab-pane {\r\n display: none;\r\n }\r\n .tab-content > .active {\r\n display: block;\r\n }\r\n .nav-tabs .dropdown-menu {\r\n margin-top: -1px;\r\n border-top-left-radius: 0;\r\n border-top-right-radius: 0;\r\n }\r\n .navbar {\r\n position: relative;\r\n min-height: 50px;\r\n margin-bottom: 20px;\r\n border: 1px solid transparent;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar {\r\n border-radius: 4px;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-header {\r\n float: left;\r\n }\r\n }\r\n .navbar-collapse {\r\n padding-right: 15px;\r\n padding-left: 15px;\r\n overflow-x: visible;\r\n -webkit-overflow-scrolling: touch;\r\n border-top: 1px solid transparent;\r\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\r\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\r\n }\r\n .navbar-collapse.in {\r\n overflow-y: auto;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-collapse {\r\n width: auto;\r\n border-top: 0;\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n }\r\n .navbar-collapse.collapse {\r\n display: block !important;\r\n height: auto !important;\r\n padding-bottom: 0;\r\n overflow: visible !important;\r\n }\r\n .navbar-collapse.in {\r\n overflow-y: visible;\r\n }\r\n .navbar-fixed-top .navbar-collapse,\r\n .navbar-static-top .navbar-collapse,\r\n .navbar-fixed-bottom .navbar-collapse {\r\n padding-right: 0;\r\n padding-left: 0;\r\n }\r\n }\r\n .navbar-fixed-top .navbar-collapse,\r\n .navbar-fixed-bottom .navbar-collapse {\r\n max-height: 340px;\r\n }\r\n @media (max-device-width: 480px) and (orientation: landscape) {\r\n .navbar-fixed-top .navbar-collapse,\r\n .navbar-fixed-bottom .navbar-collapse {\r\n max-height: 200px;\r\n }\r\n }\r\n .container > .navbar-header,\r\n .container-fluid > .navbar-header,\r\n .container > .navbar-collapse,\r\n .container-fluid > .navbar-collapse {\r\n margin-right: -15px;\r\n margin-left: -15px;\r\n }\r\n @media (min-width: 768px) {\r\n .container > .navbar-header,\r\n .container-fluid > .navbar-header,\r\n .container > .navbar-collapse,\r\n .container-fluid > .navbar-collapse {\r\n margin-right: 0;\r\n margin-left: 0;\r\n }\r\n }\r\n .navbar-static-top {\r\n z-index: 1000;\r\n border-width: 0 0 1px;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-static-top {\r\n border-radius: 0;\r\n }\r\n }\r\n .navbar-fixed-top,\r\n .navbar-fixed-bottom {\r\n position: fixed;\r\n right: 0;\r\n left: 0;\r\n z-index: 1030;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-fixed-top,\r\n .navbar-fixed-bottom {\r\n border-radius: 0;\r\n }\r\n }\r\n .navbar-fixed-top {\r\n top: 0;\r\n border-width: 0 0 1px;\r\n }\r\n .navbar-fixed-bottom {\r\n bottom: 0;\r\n margin-bottom: 0;\r\n border-width: 1px 0 0;\r\n }\r\n .navbar-brand {\r\n float: left;\r\n height: 50px;\r\n padding: 15px 15px;\r\n font-size: 18px;\r\n line-height: 20px;\r\n }\r\n .navbar-brand:hover,\r\n .navbar-brand:focus {\r\n text-decoration: none;\r\n }\r\n .navbar-brand > img {\r\n display: block;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar > .container .navbar-brand,\r\n .navbar > .container-fluid .navbar-brand {\r\n margin-left: -15px;\r\n }\r\n }\r\n .navbar-toggle {\r\n position: relative;\r\n float: right;\r\n padding: 9px 10px;\r\n margin-top: 8px;\r\n margin-right: 15px;\r\n margin-bottom: 8px;\r\n background-color: transparent;\r\n background-image: none;\r\n border: 1px solid transparent;\r\n border-radius: 4px;\r\n }\r\n .navbar-toggle:focus {\r\n outline: 0;\r\n }\r\n .navbar-toggle .icon-bar {\r\n display: block;\r\n width: 22px;\r\n height: 2px;\r\n border-radius: 1px;\r\n }\r\n .navbar-toggle .icon-bar + .icon-bar {\r\n margin-top: 4px;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-toggle {\r\n display: none;\r\n }\r\n }\r\n .navbar-nav {\r\n margin: 7.5px -15px;\r\n }\r\n .navbar-nav > li > a {\r\n padding-top: 10px;\r\n padding-bottom: 10px;\r\n line-height: 20px;\r\n }\r\n @media (max-width: 767px) {\r\n .navbar-nav .open .dropdown-menu {\r\n position: static;\r\n float: none;\r\n width: auto;\r\n margin-top: 0;\r\n background-color: transparent;\r\n border: 0;\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n }\r\n .navbar-nav .open .dropdown-menu > li > a,\r\n .navbar-nav .open .dropdown-menu .dropdown-header {\r\n padding: 5px 15px 5px 25px;\r\n }\r\n .navbar-nav .open .dropdown-menu > li > a {\r\n line-height: 20px;\r\n }\r\n .navbar-nav .open .dropdown-menu > li > a:hover,\r\n .navbar-nav .open .dropdown-menu > li > a:focus {\r\n background-image: none;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-nav {\r\n float: left;\r\n margin: 0;\r\n }\r\n .navbar-nav > li {\r\n float: left;\r\n }\r\n .navbar-nav > li > a {\r\n padding-top: 15px;\r\n padding-bottom: 15px;\r\n }\r\n }\r\n .navbar-form {\r\n padding: 10px 15px;\r\n margin-top: 8px;\r\n margin-right: -15px;\r\n margin-bottom: 8px;\r\n margin-left: -15px;\r\n border-top: 1px solid transparent;\r\n border-bottom: 1px solid transparent;\r\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\r\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-form .form-group {\r\n display: inline-block;\r\n margin-bottom: 0;\r\n vertical-align: middle;\r\n }\r\n .navbar-form .form-control {\r\n display: inline-block;\r\n width: auto;\r\n vertical-align: middle;\r\n }\r\n .navbar-form .form-control-static {\r\n display: inline-block;\r\n }\r\n .navbar-form .input-group {\r\n display: inline-table;\r\n vertical-align: middle;\r\n }\r\n .navbar-form .input-group .input-group-addon,\r\n .navbar-form .input-group .input-group-btn,\r\n .navbar-form .input-group .form-control {\r\n width: auto;\r\n }\r\n .navbar-form .input-group > .form-control {\r\n width: 100%;\r\n }\r\n .navbar-form .control-label {\r\n margin-bottom: 0;\r\n vertical-align: middle;\r\n }\r\n .navbar-form .radio,\r\n .navbar-form .checkbox {\r\n display: inline-block;\r\n margin-top: 0;\r\n margin-bottom: 0;\r\n vertical-align: middle;\r\n }\r\n .navbar-form .radio label,\r\n .navbar-form .checkbox label {\r\n padding-left: 0;\r\n }\r\n .navbar-form .radio input[type=\"radio\"],\r\n .navbar-form .checkbox input[type=\"checkbox\"] {\r\n position: relative;\r\n margin-left: 0;\r\n }\r\n .navbar-form .has-feedback .form-control-feedback {\r\n top: 0;\r\n }\r\n }\r\n @media (max-width: 767px) {\r\n .navbar-form .form-group {\r\n margin-bottom: 5px;\r\n }\r\n .navbar-form .form-group:last-child {\r\n margin-bottom: 0;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-form {\r\n width: auto;\r\n padding-top: 0;\r\n padding-bottom: 0;\r\n margin-right: 0;\r\n margin-left: 0;\r\n border: 0;\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n }\r\n }\r\n .navbar-nav > li > .dropdown-menu {\r\n margin-top: 0;\r\n border-top-left-radius: 0;\r\n border-top-right-radius: 0;\r\n }\r\n .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\r\n margin-bottom: 0;\r\n border-top-left-radius: 4px;\r\n border-top-right-radius: 4px;\r\n border-bottom-right-radius: 0;\r\n border-bottom-left-radius: 0;\r\n }\r\n .navbar-btn {\r\n margin-top: 8px;\r\n margin-bottom: 8px;\r\n }\r\n .navbar-btn.btn-sm {\r\n margin-top: 10px;\r\n margin-bottom: 10px;\r\n }\r\n .navbar-btn.btn-xs {\r\n margin-top: 14px;\r\n margin-bottom: 14px;\r\n }\r\n .navbar-text {\r\n margin-top: 15px;\r\n margin-bottom: 15px;\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-text {\r\n float: left;\r\n margin-right: 15px;\r\n margin-left: 15px;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-left {\r\n float: left !important;\r\n }\r\n .navbar-right {\r\n float: right !important;\r\n margin-right: -15px;\r\n }\r\n .navbar-right ~ .navbar-right {\r\n margin-right: 0;\r\n }\r\n }\r\n .navbar-default {\r\n background-color: #f8f8f8;\r\n border-color: #e7e7e7;\r\n }\r\n .navbar-default .navbar-brand {\r\n color: #777;\r\n }\r\n .navbar-default .navbar-brand:hover,\r\n .navbar-default .navbar-brand:focus {\r\n color: #5e5e5e;\r\n background-color: transparent;\r\n }\r\n .navbar-default .navbar-text {\r\n color: #777;\r\n }\r\n .navbar-default .navbar-nav > li > a {\r\n color: #777;\r\n }\r\n .navbar-default .navbar-nav > li > a:hover,\r\n .navbar-default .navbar-nav > li > a:focus {\r\n color: #333;\r\n background-color: transparent;\r\n }\r\n .navbar-default .navbar-nav > .active > a,\r\n .navbar-default .navbar-nav > .active > a:hover,\r\n .navbar-default .navbar-nav > .active > a:focus {\r\n color: #555;\r\n background-color: #e7e7e7;\r\n }\r\n .navbar-default .navbar-nav > .disabled > a,\r\n .navbar-default .navbar-nav > .disabled > a:hover,\r\n .navbar-default .navbar-nav > .disabled > a:focus {\r\n color: #ccc;\r\n background-color: transparent;\r\n }\r\n .navbar-default .navbar-toggle {\r\n border-color: #ddd;\r\n }\r\n .navbar-default .navbar-toggle:hover,\r\n .navbar-default .navbar-toggle:focus {\r\n background-color: #ddd;\r\n }\r\n .navbar-default .navbar-toggle .icon-bar {\r\n background-color: #888;\r\n }\r\n .navbar-default .navbar-collapse,\r\n .navbar-default .navbar-form {\r\n border-color: #e7e7e7;\r\n }\r\n .navbar-default .navbar-nav > .open > a,\r\n .navbar-default .navbar-nav > .open > a:hover,\r\n .navbar-default .navbar-nav > .open > a:focus {\r\n color: #555;\r\n background-color: #e7e7e7;\r\n }\r\n @media (max-width: 767px) {\r\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\r\n color: #777;\r\n }\r\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\r\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\r\n color: #333;\r\n background-color: transparent;\r\n }\r\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\r\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\r\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\r\n color: #555;\r\n background-color: #e7e7e7;\r\n }\r\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\r\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\r\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\r\n color: #ccc;\r\n background-color: transparent;\r\n }\r\n }\r\n .navbar-default .navbar-link {\r\n color: #777;\r\n }\r\n .navbar-default .navbar-link:hover {\r\n color: #333;\r\n }\r\n .navbar-default .btn-link {\r\n color: #777;\r\n }\r\n .navbar-default .btn-link:hover,\r\n .navbar-default .btn-link:focus {\r\n color: #333;\r\n }\r\n .navbar-default .btn-link[disabled]:hover,\r\n fieldset[disabled] .navbar-default .btn-link:hover,\r\n .navbar-default .btn-link[disabled]:focus,\r\n fieldset[disabled] .navbar-default .btn-link:focus {\r\n color: #ccc;\r\n }\r\n .navbar-inverse {\r\n background-color: #222;\r\n border-color: #080808;\r\n }\r\n .navbar-inverse .navbar-brand {\r\n color: #9d9d9d;\r\n }\r\n .navbar-inverse .navbar-brand:hover,\r\n .navbar-inverse .navbar-brand:focus {\r\n color: #fff;\r\n background-color: transparent;\r\n }\r\n .navbar-inverse .navbar-text {\r\n color: #9d9d9d;\r\n }\r\n .navbar-inverse .navbar-nav > li > a {\r\n color: #9d9d9d;\r\n }\r\n .navbar-inverse .navbar-nav > li > a:hover,\r\n .navbar-inverse .navbar-nav > li > a:focus {\r\n color: #fff;\r\n background-color: transparent;\r\n }\r\n .navbar-inverse .navbar-nav > .active > a,\r\n .navbar-inverse .navbar-nav > .active > a:hover,\r\n .navbar-inverse .navbar-nav > .active > a:focus {\r\n color: #fff;\r\n background-color: #080808;\r\n }\r\n .navbar-inverse .navbar-nav > .disabled > a,\r\n .navbar-inverse .navbar-nav > .disabled > a:hover,\r\n .navbar-inverse .navbar-nav > .disabled > a:focus {\r\n color: #444;\r\n background-color: transparent;\r\n }\r\n .navbar-inverse .navbar-toggle {\r\n border-color: #333;\r\n }\r\n .navbar-inverse .navbar-toggle:hover,\r\n .navbar-inverse .navbar-toggle:focus {\r\n background-color: #333;\r\n }\r\n .navbar-inverse .navbar-toggle .icon-bar {\r\n background-color: #fff;\r\n }\r\n .navbar-inverse .navbar-collapse,\r\n .navbar-inverse .navbar-form {\r\n border-color: #101010;\r\n }\r\n .navbar-inverse .navbar-nav > .open > a,\r\n .navbar-inverse .navbar-nav > .open > a:hover,\r\n .navbar-inverse .navbar-nav > .open > a:focus {\r\n color: #fff;\r\n background-color: #080808;\r\n }\r\n @media (max-width: 767px) {\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\r\n border-color: #080808;\r\n }\r\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\r\n background-color: #080808;\r\n }\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\r\n color: #9d9d9d;\r\n }\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\r\n color: #fff;\r\n background-color: transparent;\r\n }\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\r\n color: #fff;\r\n background-color: #080808;\r\n }\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\r\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\r\n color: #444;\r\n background-color: transparent;\r\n }\r\n }\r\n .navbar-inverse .navbar-link {\r\n color: #9d9d9d;\r\n }\r\n .navbar-inverse .navbar-link:hover {\r\n color: #fff;\r\n }\r\n .navbar-inverse .btn-link {\r\n color: #9d9d9d;\r\n }\r\n .navbar-inverse .btn-link:hover,\r\n .navbar-inverse .btn-link:focus {\r\n color: #fff;\r\n }\r\n .navbar-inverse .btn-link[disabled]:hover,\r\n fieldset[disabled] .navbar-inverse .btn-link:hover,\r\n .navbar-inverse .btn-link[disabled]:focus,\r\n fieldset[disabled] .navbar-inverse .btn-link:focus {\r\n color: #444;\r\n }\r\n .breadcrumb {\r\n padding: 8px 15px;\r\n margin-bottom: 20px;\r\n list-style: none;\r\n background-color: #f5f5f5;\r\n border-radius: 4px;\r\n }\r\n .breadcrumb > li {\r\n display: inline-block;\r\n }\r\n .breadcrumb > li + li:before {\r\n padding: 0 5px;\r\n color: #ccc;\r\n content: \"/\\00a0\";\r\n }\r\n .breadcrumb > .active {\r\n color: #777;\r\n }\r\n .pagination {\r\n display: inline-block;\r\n padding-left: 0;\r\n margin: 20px 0;\r\n border-radius: 4px;\r\n }\r\n .pagination > li {\r\n display: inline;\r\n }\r\n .pagination > li > a,\r\n .pagination > li > span {\r\n position: relative;\r\n float: left;\r\n padding: 6px 12px;\r\n margin-left: -1px;\r\n line-height: 1.42857143;\r\n color: #337ab7;\r\n text-decoration: none;\r\n background-color: #fff;\r\n border: 1px solid #ddd;\r\n }\r\n .pagination > li:first-child > a,\r\n .pagination > li:first-child > span {\r\n margin-left: 0;\r\n border-top-left-radius: 4px;\r\n border-bottom-left-radius: 4px;\r\n }\r\n .pagination > li:last-child > a,\r\n .pagination > li:last-child > span {\r\n border-top-right-radius: 4px;\r\n border-bottom-right-radius: 4px;\r\n }\r\n .pagination > li > a:hover,\r\n .pagination > li > span:hover,\r\n .pagination > li > a:focus,\r\n .pagination > li > span:focus {\r\n color: #23527c;\r\n background-color: #eee;\r\n border-color: #ddd;\r\n }\r\n .pagination > .active > a,\r\n .pagination > .active > span,\r\n .pagination > .active > a:hover,\r\n .pagination > .active > span:hover,\r\n .pagination > .active > a:focus,\r\n .pagination > .active > span:focus {\r\n z-index: 2;\r\n color: #fff;\r\n cursor: default;\r\n background-color: #337ab7;\r\n border-color: #337ab7;\r\n }\r\n .pagination > .disabled > span,\r\n .pagination > .disabled > span:hover,\r\n .pagination > .disabled > span:focus,\r\n .pagination > .disabled > a,\r\n .pagination > .disabled > a:hover,\r\n .pagination > .disabled > a:focus {\r\n color: #777;\r\n cursor: not-allowed;\r\n background-color: #fff;\r\n border-color: #ddd;\r\n }\r\n .pagination-lg > li > a,\r\n .pagination-lg > li > span {\r\n padding: 10px 16px;\r\n font-size: 18px;\r\n }\r\n .pagination-lg > li:first-child > a,\r\n .pagination-lg > li:first-child > span {\r\n border-top-left-radius: 6px;\r\n border-bottom-left-radius: 6px;\r\n }\r\n .pagination-lg > li:last-child > a,\r\n .pagination-lg > li:last-child > span {\r\n border-top-right-radius: 6px;\r\n border-bottom-right-radius: 6px;\r\n }\r\n .pagination-sm > li > a,\r\n .pagination-sm > li > span {\r\n padding: 5px 10px;\r\n font-size: 12px;\r\n }\r\n .pagination-sm > li:first-child > a,\r\n .pagination-sm > li:first-child > span {\r\n border-top-left-radius: 3px;\r\n border-bottom-left-radius: 3px;\r\n }\r\n .pagination-sm > li:last-child > a,\r\n .pagination-sm > li:last-child > span {\r\n border-top-right-radius: 3px;\r\n border-bottom-right-radius: 3px;\r\n }\r\n .pager {\r\n padding-left: 0;\r\n margin: 20px 0;\r\n text-align: center;\r\n list-style: none;\r\n }\r\n .pager li {\r\n display: inline;\r\n }\r\n .pager li > a,\r\n .pager li > span {\r\n display: inline-block;\r\n padding: 5px 14px;\r\n background-color: #fff;\r\n border: 1px solid #ddd;\r\n border-radius: 15px;\r\n }\r\n .pager li > a:hover,\r\n .pager li > a:focus {\r\n text-decoration: none;\r\n background-color: #eee;\r\n }\r\n .pager .next > a,\r\n .pager .next > span {\r\n float: right;\r\n }\r\n .pager .previous > a,\r\n .pager .previous > span {\r\n float: left;\r\n }\r\n .pager .disabled > a,\r\n .pager .disabled > a:hover,\r\n .pager .disabled > a:focus,\r\n .pager .disabled > span {\r\n color: #777;\r\n cursor: not-allowed;\r\n background-color: #fff;\r\n }\r\n .label {\r\n display: inline;\r\n padding: 0.2em 0.6em 0.3em;\r\n font-size: 75%;\r\n font-weight: bold;\r\n line-height: 1;\r\n color: #fff;\r\n text-align: center;\r\n white-space: nowrap;\r\n vertical-align: baseline;\r\n border-radius: 0.25em;\r\n }\r\n a.label:hover,\r\n a.label:focus {\r\n color: #fff;\r\n text-decoration: none;\r\n cursor: pointer;\r\n }\r\n .label:empty {\r\n display: none;\r\n }\r\n .btn .label {\r\n position: relative;\r\n top: -1px;\r\n }\r\n .label-default {\r\n background-color: #777;\r\n }\r\n .label-default[href]:hover,\r\n .label-default[href]:focus {\r\n background-color: #5e5e5e;\r\n }\r\n .label-primary {\r\n background-color: #337ab7;\r\n }\r\n .label-primary[href]:hover,\r\n .label-primary[href]:focus {\r\n background-color: #286090;\r\n }\r\n .label-success {\r\n background-color: #5cb85c;\r\n }\r\n .label-success[href]:hover,\r\n .label-success[href]:focus {\r\n background-color: #449d44;\r\n }\r\n .label-info {\r\n background-color: #5bc0de;\r\n }\r\n .label-info[href]:hover,\r\n .label-info[href]:focus {\r\n background-color: #31b0d5;\r\n }\r\n .label-warning {\r\n background-color: #f0ad4e;\r\n }\r\n .label-warning[href]:hover,\r\n .label-warning[href]:focus {\r\n background-color: #ec971f;\r\n }\r\n .label-danger {\r\n background-color: #d9534f;\r\n }\r\n .label-danger[href]:hover,\r\n .label-danger[href]:focus {\r\n background-color: #c9302c;\r\n }\r\n .badge {\r\n display: inline-block;\r\n min-width: 10px;\r\n padding: 3px 7px;\r\n font-size: 12px;\r\n font-weight: bold;\r\n line-height: 1;\r\n color: #fff;\r\n text-align: center;\r\n white-space: nowrap;\r\n vertical-align: baseline;\r\n background-color: #777;\r\n border-radius: 10px;\r\n }\r\n .badge:empty {\r\n display: none;\r\n }\r\n .btn .badge {\r\n position: relative;\r\n top: -1px;\r\n }\r\n .btn-xs .badge,\r\n .btn-group-xs > .btn .badge {\r\n top: 0;\r\n padding: 1px 5px;\r\n }\r\n a.badge:hover,\r\n a.badge:focus {\r\n color: #fff;\r\n text-decoration: none;\r\n cursor: pointer;\r\n }\r\n .list-group-item.active > .badge,\r\n .nav-pills > .active > a > .badge {\r\n color: #337ab7;\r\n background-color: #fff;\r\n }\r\n .list-group-item > .badge {\r\n float: right;\r\n }\r\n .list-group-item > .badge + .badge {\r\n margin-right: 5px;\r\n }\r\n .nav-pills > li > a > .badge {\r\n margin-left: 3px;\r\n }\r\n .jumbotron {\r\n padding: 30px 15px;\r\n margin-bottom: 30px;\r\n color: inherit;\r\n background-color: #eee;\r\n }\r\n .jumbotron h1,\r\n .jumbotron .h1 {\r\n color: inherit;\r\n }\r\n .jumbotron p {\r\n margin-bottom: 15px;\r\n font-size: 21px;\r\n font-weight: 200;\r\n }\r\n .jumbotron > hr {\r\n border-top-color: #d5d5d5;\r\n }\r\n .container .jumbotron,\r\n .container-fluid .jumbotron {\r\n border-radius: 6px;\r\n }\r\n .jumbotron .container {\r\n max-width: 100%;\r\n }\r\n @media screen and (min-width: 768px) {\r\n .jumbotron {\r\n padding: 48px 0;\r\n }\r\n .container .jumbotron,\r\n .container-fluid .jumbotron {\r\n padding-right: 60px;\r\n padding-left: 60px;\r\n }\r\n .jumbotron h1,\r\n .jumbotron .h1 {\r\n font-size: 63px;\r\n }\r\n }\r\n .thumbnail {\r\n display: block;\r\n padding: 4px;\r\n margin-bottom: 20px;\r\n line-height: 1.42857143;\r\n background-color: #fff;\r\n border: 1px solid #ddd;\r\n border-radius: 4px;\r\n -webkit-transition: border 0.2s ease-in-out;\r\n -o-transition: border 0.2s ease-in-out;\r\n transition: border 0.2s ease-in-out;\r\n }\r\n .thumbnail > img,\r\n .thumbnail a > img {\r\n margin-right: auto;\r\n margin-left: auto;\r\n }\r\n a.thumbnail:hover,\r\n a.thumbnail:focus,\r\n a.thumbnail.active {\r\n border-color: #337ab7;\r\n }\r\n .thumbnail .caption {\r\n padding: 9px;\r\n color: #333;\r\n }\r\n .alert {\r\n padding: 15px;\r\n margin-bottom: 20px;\r\n border: 1px solid transparent;\r\n border-radius: 4px;\r\n }\r\n .alert h4 {\r\n margin-top: 0;\r\n color: inherit;\r\n }\r\n .alert .alert-link {\r\n font-weight: bold;\r\n }\r\n .alert > p,\r\n .alert > ul {\r\n margin-bottom: 0;\r\n }\r\n .alert > p + p {\r\n margin-top: 5px;\r\n }\r\n .alert-dismissable,\r\n .alert-dismissible {\r\n padding-right: 35px;\r\n }\r\n .alert-dismissable .close,\r\n .alert-dismissible .close {\r\n position: relative;\r\n top: -2px;\r\n right: -21px;\r\n color: inherit;\r\n }\r\n .alert-success {\r\n color: #3c763d;\r\n background-color: #dff0d8;\r\n border-color: #d6e9c6;\r\n }\r\n .alert-success hr {\r\n border-top-color: #c9e2b3;\r\n }\r\n .alert-success .alert-link {\r\n color: #2b542c;\r\n }\r\n .alert-info {\r\n color: #31708f;\r\n background-color: #d9edf7;\r\n border-color: #bce8f1;\r\n }\r\n .alert-info hr {\r\n border-top-color: #a6e1ec;\r\n }\r\n .alert-info .alert-link {\r\n color: #245269;\r\n }\r\n .alert-warning {\r\n color: #8a6d3b;\r\n background-color: #fcf8e3;\r\n border-color: #faebcc;\r\n }\r\n .alert-warning hr {\r\n border-top-color: #f7e1b5;\r\n }\r\n .alert-warning .alert-link {\r\n color: #66512c;\r\n }\r\n .alert-danger {\r\n color: #a94442;\r\n background-color: #f2dede;\r\n border-color: #ebccd1;\r\n }\r\n .alert-danger hr {\r\n border-top-color: #e4b9c0;\r\n }\r\n .alert-danger .alert-link {\r\n color: #843534;\r\n }\r\n //@-webkit-keyframes progress-bar-stripes {\r\n // from {\r\n // background-position: 40px 0;\r\n // }\r\n // to {\r\n // background-position: 0 0;\r\n // }\r\n //}\r\n //@-o-keyframes progress-bar-stripes {\r\n // from {\r\n // background-position: 40px 0;\r\n // }\r\n // to {\r\n // background-position: 0 0;\r\n // }\r\n //}\r\n //@keyframes progress-bar-stripes {\r\n // from {\r\n // background-position: 40px 0;\r\n // }\r\n // to {\r\n // background-position: 0 0;\r\n // }\r\n //}\r\n //.progress {\r\n // height: 20px;\r\n // margin-bottom: 20px;\r\n // overflow: hidden;\r\n // background-color: #f5f5f5;\r\n // border-radius: 4px;\r\n // -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\r\n // box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\r\n //}\r\n //.progress-bar {\r\n // float: left;\r\n // width: 0;\r\n // height: 100%;\r\n // font-size: 12px;\r\n // line-height: 20px;\r\n // color: #fff;\r\n // text-align: center;\r\n // background-color: #337ab7;\r\n // -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\r\n // box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\r\n // -webkit-transition: width 0.6s ease;\r\n // -o-transition: width 0.6s ease;\r\n // transition: width 0.6s ease;\r\n //}\r\n //.progress-striped .progress-bar,\r\n //.progress-bar-striped {\r\n // background-image: -webkit-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: -o-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // -webkit-background-size: 40px 40px;\r\n // background-size: 40px 40px;\r\n //}\r\n //.progress.active .progress-bar,\r\n //.progress-bar.active {\r\n // -webkit-animation: progress-bar-stripes 2s linear infinite;\r\n // -o-animation: progress-bar-stripes 2s linear infinite;\r\n // animation: progress-bar-stripes 2s linear infinite;\r\n //}\r\n //.progress-bar-success {\r\n // background-color: #5cb85c;\r\n //}\r\n //.progress-striped .progress-bar-success {\r\n // background-image: -webkit-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: -o-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n //}\r\n //.progress-bar-info {\r\n // background-color: #5bc0de;\r\n //}\r\n //.progress-striped .progress-bar-info {\r\n // background-image: -webkit-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: -o-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n //}\r\n //.progress-bar-warning {\r\n // background-color: #f0ad4e;\r\n //}\r\n //.progress-striped .progress-bar-warning {\r\n // background-image: -webkit-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: -o-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n //}\r\n //.progress-bar-danger {\r\n // background-color: #d9534f;\r\n //}\r\n //.progress-striped .progress-bar-danger {\r\n // background-image: -webkit-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: -o-linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n // background-image: linear-gradient(\r\n // 45deg,\r\n // rgba(255, 255, 255, 0.15) 25%,\r\n // transparent 25%,\r\n // transparent 50%,\r\n // rgba(255, 255, 255, 0.15) 50%,\r\n // rgba(255, 255, 255, 0.15) 75%,\r\n // transparent 75%,\r\n // transparent\r\n // );\r\n //}\r\n .media {\r\n margin-top: 15px;\r\n }\r\n .media:first-child {\r\n margin-top: 0;\r\n }\r\n .media,\r\n .media-body {\r\n overflow: hidden;\r\n zoom: 1;\r\n }\r\n .media-body {\r\n width: 10000px;\r\n }\r\n .media-object {\r\n display: block;\r\n }\r\n .media-right,\r\n .media > .pull-right {\r\n padding-left: 10px;\r\n }\r\n .media-left,\r\n .media > .pull-left {\r\n padding-right: 10px;\r\n }\r\n .media-left,\r\n .media-right,\r\n .media-body {\r\n display: table-cell;\r\n vertical-align: top;\r\n }\r\n .media-middle {\r\n vertical-align: middle;\r\n }\r\n .media-bottom {\r\n vertical-align: bottom;\r\n }\r\n .media-heading {\r\n margin-top: 0;\r\n margin-bottom: 5px;\r\n }\r\n .media-list {\r\n padding-left: 0;\r\n list-style: none;\r\n }\r\n .list-group {\r\n padding-left: 0;\r\n margin-bottom: 20px;\r\n }\r\n .list-group-item {\r\n position: relative;\r\n display: block;\r\n padding: 10px 15px;\r\n margin-bottom: -1px;\r\n background-color: #fff;\r\n border: 1px solid #ddd;\r\n }\r\n .list-group-item:first-child {\r\n border-top-left-radius: 4px;\r\n border-top-right-radius: 4px;\r\n }\r\n .list-group-item:last-child {\r\n margin-bottom: 0;\r\n border-bottom-right-radius: 4px;\r\n border-bottom-left-radius: 4px;\r\n }\r\n a.list-group-item {\r\n color: #555;\r\n }\r\n a.list-group-item .list-group-item-heading {\r\n color: #333;\r\n }\r\n a.list-group-item:hover,\r\n a.list-group-item:focus {\r\n color: #555;\r\n text-decoration: none;\r\n background-color: #f5f5f5;\r\n }\r\n .list-group-item.disabled,\r\n .list-group-item.disabled:hover,\r\n .list-group-item.disabled:focus {\r\n color: #777;\r\n cursor: not-allowed;\r\n background-color: #eee;\r\n }\r\n .list-group-item.disabled .list-group-item-heading,\r\n .list-group-item.disabled:hover .list-group-item-heading,\r\n .list-group-item.disabled:focus .list-group-item-heading {\r\n color: inherit;\r\n }\r\n .list-group-item.disabled .list-group-item-text,\r\n .list-group-item.disabled:hover .list-group-item-text,\r\n .list-group-item.disabled:focus .list-group-item-text {\r\n color: #777;\r\n }\r\n .list-group-item.active,\r\n .list-group-item.active:hover,\r\n .list-group-item.active:focus {\r\n z-index: 2;\r\n color: #fff;\r\n background-color: #337ab7;\r\n border-color: #337ab7;\r\n }\r\n .list-group-item.active .list-group-item-heading,\r\n .list-group-item.active:hover .list-group-item-heading,\r\n .list-group-item.active:focus .list-group-item-heading,\r\n .list-group-item.active .list-group-item-heading > small,\r\n .list-group-item.active:hover .list-group-item-heading > small,\r\n .list-group-item.active:focus .list-group-item-heading > small,\r\n .list-group-item.active .list-group-item-heading > .small,\r\n .list-group-item.active:hover .list-group-item-heading > .small,\r\n .list-group-item.active:focus .list-group-item-heading > .small {\r\n color: inherit;\r\n }\r\n .list-group-item.active .list-group-item-text,\r\n .list-group-item.active:hover .list-group-item-text,\r\n .list-group-item.active:focus .list-group-item-text {\r\n color: #c7ddef;\r\n }\r\n .list-group-item-success {\r\n color: #3c763d;\r\n background-color: #dff0d8;\r\n }\r\n a.list-group-item-success {\r\n color: #3c763d;\r\n }\r\n a.list-group-item-success .list-group-item-heading {\r\n color: inherit;\r\n }\r\n a.list-group-item-success:hover,\r\n a.list-group-item-success:focus {\r\n color: #3c763d;\r\n background-color: #d0e9c6;\r\n }\r\n a.list-group-item-success.active,\r\n a.list-group-item-success.active:hover,\r\n a.list-group-item-success.active:focus {\r\n color: #fff;\r\n background-color: #3c763d;\r\n border-color: #3c763d;\r\n }\r\n .list-group-item-info {\r\n color: #31708f;\r\n background-color: #d9edf7;\r\n }\r\n a.list-group-item-info {\r\n color: #31708f;\r\n }\r\n a.list-group-item-info .list-group-item-heading {\r\n color: inherit;\r\n }\r\n a.list-group-item-info:hover,\r\n a.list-group-item-info:focus {\r\n color: #31708f;\r\n background-color: #c4e3f3;\r\n }\r\n a.list-group-item-info.active,\r\n a.list-group-item-info.active:hover,\r\n a.list-group-item-info.active:focus {\r\n color: #fff;\r\n background-color: #31708f;\r\n border-color: #31708f;\r\n }\r\n .list-group-item-warning {\r\n color: #8a6d3b;\r\n background-color: #fcf8e3;\r\n }\r\n a.list-group-item-warning {\r\n color: #8a6d3b;\r\n }\r\n a.list-group-item-warning .list-group-item-heading {\r\n color: inherit;\r\n }\r\n a.list-group-item-warning:hover,\r\n a.list-group-item-warning:focus {\r\n color: #8a6d3b;\r\n background-color: #faf2cc;\r\n }\r\n a.list-group-item-warning.active,\r\n a.list-group-item-warning.active:hover,\r\n a.list-group-item-warning.active:focus {\r\n color: #fff;\r\n background-color: #8a6d3b;\r\n border-color: #8a6d3b;\r\n }\r\n .list-group-item-danger {\r\n color: #a94442;\r\n background-color: #f2dede;\r\n }\r\n a.list-group-item-danger {\r\n color: #a94442;\r\n }\r\n a.list-group-item-danger .list-group-item-heading {\r\n color: inherit;\r\n }\r\n a.list-group-item-danger:hover,\r\n a.list-group-item-danger:focus {\r\n color: #a94442;\r\n background-color: #ebcccc;\r\n }\r\n a.list-group-item-danger.active,\r\n a.list-group-item-danger.active:hover,\r\n a.list-group-item-danger.active:focus {\r\n color: #fff;\r\n background-color: #a94442;\r\n border-color: #a94442;\r\n }\r\n .list-group-item-heading {\r\n margin-top: 0;\r\n margin-bottom: 5px;\r\n }\r\n .list-group-item-text {\r\n margin-bottom: 0;\r\n line-height: 1.3;\r\n }\r\n .panel {\r\n margin-bottom: 20px;\r\n background-color: #fff;\r\n border: 1px solid transparent;\r\n border-radius: 4px;\r\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\r\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\r\n }\r\n .panel-body {\r\n padding: 15px;\r\n }\r\n .panel-heading {\r\n padding: 10px 15px;\r\n border-bottom: 1px solid transparent;\r\n border-top-left-radius: 3px;\r\n border-top-right-radius: 3px;\r\n }\r\n .panel-heading > .dropdown .dropdown-toggle {\r\n color: inherit;\r\n }\r\n .panel-title {\r\n margin-top: 0;\r\n margin-bottom: 0;\r\n font-size: 16px;\r\n color: inherit;\r\n }\r\n .panel-title > a,\r\n .panel-title > small,\r\n .panel-title > .small,\r\n .panel-title > small > a,\r\n .panel-title > .small > a {\r\n color: inherit;\r\n }\r\n .panel-footer {\r\n padding: 10px 15px;\r\n background-color: #f5f5f5;\r\n border-top: 1px solid #ddd;\r\n border-bottom-right-radius: 3px;\r\n border-bottom-left-radius: 3px;\r\n }\r\n .panel > .list-group,\r\n .panel > .panel-collapse > .list-group {\r\n margin-bottom: 0;\r\n }\r\n .panel > .list-group .list-group-item,\r\n .panel > .panel-collapse > .list-group .list-group-item {\r\n border-width: 1px 0;\r\n border-radius: 0;\r\n }\r\n .panel > .list-group:first-child .list-group-item:first-child,\r\n .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\r\n border-top: 0;\r\n border-top-left-radius: 3px;\r\n border-top-right-radius: 3px;\r\n }\r\n .panel > .list-group:last-child .list-group-item:last-child,\r\n .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\r\n border-bottom: 0;\r\n border-bottom-right-radius: 3px;\r\n border-bottom-left-radius: 3px;\r\n }\r\n .panel-heading + .list-group .list-group-item:first-child {\r\n border-top-width: 0;\r\n }\r\n .list-group + .panel-footer {\r\n border-top-width: 0;\r\n }\r\n .panel > .table,\r\n .panel > .table-responsive > .table,\r\n .panel > .panel-collapse > .table {\r\n margin-bottom: 0;\r\n }\r\n .panel > .table caption,\r\n .panel > .table-responsive > .table caption,\r\n .panel > .panel-collapse > .table caption {\r\n padding-right: 15px;\r\n padding-left: 15px;\r\n }\r\n .panel > .table:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child {\r\n border-top-left-radius: 3px;\r\n border-top-right-radius: 3px;\r\n }\r\n .panel > .table:first-child > thead:first-child > tr:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\r\n border-top-left-radius: 3px;\r\n border-top-right-radius: 3px;\r\n }\r\n .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\r\n .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\r\n border-top-left-radius: 3px;\r\n }\r\n .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\r\n .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\r\n border-top-right-radius: 3px;\r\n }\r\n .panel > .table:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child {\r\n border-bottom-right-radius: 3px;\r\n border-bottom-left-radius: 3px;\r\n }\r\n .panel > .table:last-child > tbody:last-child > tr:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\r\n border-bottom-right-radius: 3px;\r\n border-bottom-left-radius: 3px;\r\n }\r\n .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\r\n .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\r\n border-bottom-left-radius: 3px;\r\n }\r\n .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\r\n .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\r\n border-bottom-right-radius: 3px;\r\n }\r\n .panel > .panel-body + .table,\r\n .panel > .panel-body + .table-responsive,\r\n .panel > .table + .panel-body,\r\n .panel > .table-responsive + .panel-body {\r\n border-top: 1px solid #ddd;\r\n }\r\n .panel > .table > tbody:first-child > tr:first-child th,\r\n .panel > .table > tbody:first-child > tr:first-child td {\r\n border-top: 0;\r\n }\r\n .panel > .table-bordered,\r\n .panel > .table-responsive > .table-bordered {\r\n border: 0;\r\n }\r\n .panel > .table-bordered > thead > tr > th:first-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\r\n .panel > .table-bordered > tbody > tr > th:first-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\r\n .panel > .table-bordered > tfoot > tr > th:first-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\r\n .panel > .table-bordered > thead > tr > td:first-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\r\n .panel > .table-bordered > tbody > tr > td:first-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\r\n .panel > .table-bordered > tfoot > tr > td:first-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\r\n border-left: 0;\r\n }\r\n .panel > .table-bordered > thead > tr > th:last-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\r\n .panel > .table-bordered > tbody > tr > th:last-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\r\n .panel > .table-bordered > tfoot > tr > th:last-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\r\n .panel > .table-bordered > thead > tr > td:last-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\r\n .panel > .table-bordered > tbody > tr > td:last-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\r\n .panel > .table-bordered > tfoot > tr > td:last-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\r\n border-right: 0;\r\n }\r\n .panel > .table-bordered > thead > tr:first-child > td,\r\n .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\r\n .panel > .table-bordered > tbody > tr:first-child > td,\r\n .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\r\n .panel > .table-bordered > thead > tr:first-child > th,\r\n .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\r\n .panel > .table-bordered > tbody > tr:first-child > th,\r\n .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\r\n border-bottom: 0;\r\n }\r\n .panel > .table-bordered > tbody > tr:last-child > td,\r\n .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\r\n .panel > .table-bordered > tfoot > tr:last-child > td,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\r\n .panel > .table-bordered > tbody > tr:last-child > th,\r\n .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\r\n .panel > .table-bordered > tfoot > tr:last-child > th,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\r\n border-bottom: 0;\r\n }\r\n .panel > .table-responsive {\r\n margin-bottom: 0;\r\n border: 0;\r\n }\r\n .panel-group {\r\n margin-bottom: 20px;\r\n }\r\n .panel-group .panel {\r\n margin-bottom: 0;\r\n border-radius: 4px;\r\n }\r\n .panel-group .panel + .panel {\r\n margin-top: 5px;\r\n }\r\n .panel-group .panel-heading {\r\n border-bottom: 0;\r\n }\r\n .panel-group .panel-heading + .panel-collapse > .panel-body,\r\n .panel-group .panel-heading + .panel-collapse > .list-group {\r\n border-top: 1px solid #ddd;\r\n }\r\n .panel-group .panel-footer {\r\n border-top: 0;\r\n }\r\n .panel-group .panel-footer + .panel-collapse .panel-body {\r\n border-bottom: 1px solid #ddd;\r\n }\r\n .panel-default {\r\n border-color: #ddd;\r\n }\r\n .panel-default > .panel-heading {\r\n color: #333;\r\n background-color: #f5f5f5;\r\n border-color: #ddd;\r\n }\r\n .panel-default > .panel-heading + .panel-collapse > .panel-body {\r\n border-top-color: #ddd;\r\n }\r\n .panel-default > .panel-heading .badge {\r\n color: #f5f5f5;\r\n background-color: #333;\r\n }\r\n .panel-default > .panel-footer + .panel-collapse > .panel-body {\r\n border-bottom-color: #ddd;\r\n }\r\n .panel-primary {\r\n border-color: #337ab7;\r\n }\r\n .panel-primary > .panel-heading {\r\n color: #fff;\r\n background-color: #337ab7;\r\n border-color: #337ab7;\r\n }\r\n .panel-primary > .panel-heading + .panel-collapse > .panel-body {\r\n border-top-color: #337ab7;\r\n }\r\n .panel-primary > .panel-heading .badge {\r\n color: #337ab7;\r\n background-color: #fff;\r\n }\r\n .panel-primary > .panel-footer + .panel-collapse > .panel-body {\r\n border-bottom-color: #337ab7;\r\n }\r\n .panel-success {\r\n border-color: #d6e9c6;\r\n }\r\n .panel-success > .panel-heading {\r\n color: #3c763d;\r\n background-color: #dff0d8;\r\n border-color: #d6e9c6;\r\n }\r\n .panel-success > .panel-heading + .panel-collapse > .panel-body {\r\n border-top-color: #d6e9c6;\r\n }\r\n .panel-success > .panel-heading .badge {\r\n color: #dff0d8;\r\n background-color: #3c763d;\r\n }\r\n .panel-success > .panel-footer + .panel-collapse > .panel-body {\r\n border-bottom-color: #d6e9c6;\r\n }\r\n .panel-info {\r\n border-color: #bce8f1;\r\n }\r\n .panel-info > .panel-heading {\r\n color: #31708f;\r\n background-color: #d9edf7;\r\n border-color: #bce8f1;\r\n }\r\n .panel-info > .panel-heading + .panel-collapse > .panel-body {\r\n border-top-color: #bce8f1;\r\n }\r\n .panel-info > .panel-heading .badge {\r\n color: #d9edf7;\r\n background-color: #31708f;\r\n }\r\n .panel-info > .panel-footer + .panel-collapse > .panel-body {\r\n border-bottom-color: #bce8f1;\r\n }\r\n .panel-warning {\r\n border-color: #faebcc;\r\n }\r\n .panel-warning > .panel-heading {\r\n color: #8a6d3b;\r\n background-color: #fcf8e3;\r\n border-color: #faebcc;\r\n }\r\n .panel-warning > .panel-heading + .panel-collapse > .panel-body {\r\n border-top-color: #faebcc;\r\n }\r\n .panel-warning > .panel-heading .badge {\r\n color: #fcf8e3;\r\n background-color: #8a6d3b;\r\n }\r\n .panel-warning > .panel-footer + .panel-collapse > .panel-body {\r\n border-bottom-color: #faebcc;\r\n }\r\n .panel-danger {\r\n border-color: #ebccd1;\r\n }\r\n .panel-danger > .panel-heading {\r\n color: #a94442;\r\n background-color: #f2dede;\r\n border-color: #ebccd1;\r\n }\r\n .panel-danger > .panel-heading + .panel-collapse > .panel-body {\r\n border-top-color: #ebccd1;\r\n }\r\n .panel-danger > .panel-heading .badge {\r\n color: #f2dede;\r\n background-color: #a94442;\r\n }\r\n .panel-danger > .panel-footer + .panel-collapse > .panel-body {\r\n border-bottom-color: #ebccd1;\r\n }\r\n .embed-responsive {\r\n position: relative;\r\n display: block;\r\n height: 0;\r\n padding: 0;\r\n overflow: hidden;\r\n }\r\n .embed-responsive .embed-responsive-item,\r\n .embed-responsive iframe,\r\n .embed-responsive embed,\r\n .embed-responsive object,\r\n .embed-responsive video {\r\n position: absolute;\r\n top: 0;\r\n bottom: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n border: 0;\r\n }\r\n .embed-responsive-16by9 {\r\n padding-bottom: 56.25%;\r\n }\r\n .embed-responsive-4by3 {\r\n padding-bottom: 75%;\r\n }\r\n .well {\r\n min-height: 20px;\r\n padding: 19px;\r\n margin-bottom: 20px;\r\n background-color: #f5f5f5;\r\n border: 1px solid #e3e3e3;\r\n border-radius: 4px;\r\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\r\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\r\n }\r\n .well blockquote {\r\n border-color: #ddd;\r\n border-color: rgba(0, 0, 0, 0.15);\r\n }\r\n .well-lg {\r\n padding: 24px;\r\n border-radius: 6px;\r\n }\r\n .well-sm {\r\n padding: 9px;\r\n border-radius: 3px;\r\n }\r\n .close {\r\n float: right;\r\n font-size: 21px;\r\n font-weight: bold;\r\n line-height: 1;\r\n color: #000;\r\n text-shadow: 0 1px 0 #fff;\r\n filter: alpha(opacity=20);\r\n opacity: 0.2;\r\n }\r\n .close:hover,\r\n .close:focus {\r\n color: #000;\r\n text-decoration: none;\r\n cursor: pointer;\r\n filter: alpha(opacity=50);\r\n opacity: 0.5;\r\n }\r\n button.close {\r\n -webkit-appearance: none;\r\n padding: 0;\r\n cursor: pointer;\r\n background: transparent;\r\n border: 0;\r\n }\r\n .modal-open {\r\n overflow: hidden;\r\n }\r\n .modal {\r\n position: fixed;\r\n top: 0;\r\n right: 0;\r\n bottom: 0;\r\n left: 0;\r\n z-index: 1050;\r\n display: none;\r\n overflow: hidden;\r\n -webkit-overflow-scrolling: touch;\r\n outline: 0;\r\n }\r\n .modal.fade .modal-dialog {\r\n -webkit-transition: -webkit-transform 0.3s ease-out;\r\n -o-transition: -o-transform 0.3s ease-out;\r\n transition: transform 0.3s ease-out;\r\n -webkit-transform: translate(0, -25%);\r\n -ms-transform: translate(0, -25%);\r\n -o-transform: translate(0, -25%);\r\n transform: translate(0, -25%);\r\n }\r\n .modal.in .modal-dialog {\r\n -webkit-transform: translate(0, 0);\r\n -ms-transform: translate(0, 0);\r\n -o-transform: translate(0, 0);\r\n transform: translate(0, 0);\r\n }\r\n .modal-open .modal {\r\n overflow-x: hidden;\r\n overflow-y: auto;\r\n }\r\n .modal-dialog {\r\n position: relative;\r\n width: auto;\r\n margin: 10px;\r\n }\r\n .modal-content {\r\n position: relative;\r\n background-color: #fff;\r\n -webkit-background-clip: padding-box;\r\n background-clip: padding-box;\r\n border: 1px solid #999;\r\n border: 1px solid rgba(0, 0, 0, 0.2);\r\n border-radius: 6px;\r\n outline: 0;\r\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\r\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\r\n }\r\n .modal-backdrop {\r\n position: fixed;\r\n top: 0;\r\n right: 0;\r\n bottom: 0;\r\n left: 0;\r\n z-index: 1040;\r\n background-color: #000;\r\n }\r\n .modal-backdrop.fade {\r\n filter: alpha(opacity=0);\r\n opacity: 0;\r\n }\r\n .modal-backdrop.in {\r\n filter: alpha(opacity=50);\r\n opacity: 0.5;\r\n }\r\n .modal-header {\r\n min-height: 16.42857143px;\r\n padding: 15px;\r\n border-bottom: 1px solid #e5e5e5;\r\n }\r\n .modal-header .close {\r\n margin-top: -2px;\r\n }\r\n .modal-title {\r\n margin: 0;\r\n line-height: 1.42857143;\r\n }\r\n //.modal-body {\r\n // position: relative;\r\n // padding: 15px;\r\n //}\r\n .modal-footer {\r\n padding: 15px;\r\n text-align: right;\r\n border-top: 1px solid #e5e5e5;\r\n }\r\n .modal-footer .btn + .btn {\r\n margin-bottom: 0;\r\n margin-left: 5px;\r\n }\r\n .modal-footer .btn-group .btn + .btn {\r\n margin-left: -1px;\r\n }\r\n .modal-footer .btn-block + .btn-block {\r\n margin-left: 0;\r\n }\r\n .modal-scrollbar-measure {\r\n position: absolute;\r\n top: -9999px;\r\n width: 50px;\r\n height: 50px;\r\n overflow: scroll;\r\n }\r\n @media (min-width: 768px) {\r\n .modal-dialog {\r\n width: 600px;\r\n margin: 30px auto;\r\n }\r\n .modal-content {\r\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\r\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\r\n }\r\n .modal-sm {\r\n width: 300px;\r\n }\r\n }\r\n @media (min-width: 992px) {\r\n .modal-lg {\r\n width: 900px;\r\n }\r\n }\r\n .tooltip {\r\n position: absolute;\r\n z-index: 1070;\r\n display: block;\r\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\r\n font-size: 12px;\r\n font-weight: normal;\r\n line-height: 1.4;\r\n filter: alpha(opacity=0);\r\n opacity: 0;\r\n }\r\n .tooltip.in {\r\n filter: alpha(opacity=90);\r\n opacity: 0.9;\r\n }\r\n .tooltip.top {\r\n padding: 5px 0;\r\n margin-top: -3px;\r\n }\r\n .tooltip.right {\r\n padding: 0 5px;\r\n margin-left: 3px;\r\n }\r\n .tooltip.bottom {\r\n padding: 5px 0;\r\n margin-top: 3px;\r\n }\r\n .tooltip.left {\r\n padding: 0 5px;\r\n margin-left: -3px;\r\n }\r\n .tooltip-inner {\r\n max-width: 200px;\r\n padding: 3px 8px;\r\n color: #fff;\r\n text-align: center;\r\n text-decoration: none;\r\n background-color: #000;\r\n border-radius: 4px;\r\n }\r\n .tooltip-arrow {\r\n position: absolute;\r\n width: 0;\r\n height: 0;\r\n border-color: transparent;\r\n border-style: solid;\r\n }\r\n .tooltip.top .tooltip-arrow {\r\n bottom: 0;\r\n left: 50%;\r\n margin-left: -5px;\r\n border-width: 5px 5px 0;\r\n border-top-color: #000;\r\n }\r\n .tooltip.top-left .tooltip-arrow {\r\n right: 5px;\r\n bottom: 0;\r\n margin-bottom: -5px;\r\n border-width: 5px 5px 0;\r\n border-top-color: #000;\r\n }\r\n .tooltip.top-right .tooltip-arrow {\r\n bottom: 0;\r\n left: 5px;\r\n margin-bottom: -5px;\r\n border-width: 5px 5px 0;\r\n border-top-color: #000;\r\n }\r\n .tooltip.right .tooltip-arrow {\r\n top: 50%;\r\n left: 0;\r\n margin-top: -5px;\r\n border-width: 5px 5px 5px 0;\r\n border-right-color: #000;\r\n }\r\n .tooltip.left .tooltip-arrow {\r\n top: 50%;\r\n right: 0;\r\n margin-top: -5px;\r\n border-width: 5px 0 5px 5px;\r\n border-left-color: #000;\r\n }\r\n .tooltip.bottom .tooltip-arrow {\r\n top: 0;\r\n left: 50%;\r\n margin-left: -5px;\r\n border-width: 0 5px 5px;\r\n border-bottom-color: #000;\r\n }\r\n .tooltip.bottom-left .tooltip-arrow {\r\n top: 0;\r\n right: 5px;\r\n margin-top: -5px;\r\n border-width: 0 5px 5px;\r\n border-bottom-color: #000;\r\n }\r\n .tooltip.bottom-right .tooltip-arrow {\r\n top: 0;\r\n left: 5px;\r\n margin-top: -5px;\r\n border-width: 0 5px 5px;\r\n border-bottom-color: #000;\r\n }\r\n .popover {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n z-index: 1060;\r\n display: none;\r\n max-width: 276px;\r\n padding: 1px;\r\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\r\n font-size: 14px;\r\n font-weight: normal;\r\n line-height: 1.42857143;\r\n text-align: left;\r\n white-space: normal;\r\n background-color: #fff;\r\n -webkit-background-clip: padding-box;\r\n background-clip: padding-box;\r\n border: 1px solid #ccc;\r\n border: 1px solid rgba(0, 0, 0, 0.2);\r\n border-radius: 6px;\r\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\r\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\r\n }\r\n .popover.top {\r\n margin-top: -10px;\r\n }\r\n .popover.right {\r\n margin-left: 10px;\r\n }\r\n .popover.bottom {\r\n margin-top: 10px;\r\n }\r\n .popover.left {\r\n margin-left: -10px;\r\n }\r\n .popover-title {\r\n padding: 8px 14px;\r\n margin: 0;\r\n font-size: 14px;\r\n background-color: #f7f7f7;\r\n border-bottom: 1px solid #ebebeb;\r\n border-radius: 5px 5px 0 0;\r\n }\r\n .popover-content {\r\n padding: 9px 14px;\r\n }\r\n .popover > .arrow,\r\n .popover > .arrow:after {\r\n position: absolute;\r\n display: block;\r\n width: 0;\r\n height: 0;\r\n border-color: transparent;\r\n border-style: solid;\r\n }\r\n .popover > .arrow {\r\n border-width: 11px;\r\n }\r\n .popover > .arrow:after {\r\n content: \"\";\r\n border-width: 10px;\r\n }\r\n .popover.top > .arrow {\r\n bottom: -11px;\r\n left: 50%;\r\n margin-left: -11px;\r\n border-top-color: #999;\r\n border-top-color: rgba(0, 0, 0, 0.25);\r\n border-bottom-width: 0;\r\n }\r\n .popover.top > .arrow:after {\r\n bottom: 1px;\r\n margin-left: -10px;\r\n content: \" \";\r\n border-top-color: #fff;\r\n border-bottom-width: 0;\r\n }\r\n .popover.right > .arrow {\r\n top: 50%;\r\n left: -11px;\r\n margin-top: -11px;\r\n border-right-color: #999;\r\n border-right-color: rgba(0, 0, 0, 0.25);\r\n border-left-width: 0;\r\n }\r\n .popover.right > .arrow:after {\r\n bottom: -10px;\r\n left: 1px;\r\n content: \" \";\r\n border-right-color: #fff;\r\n border-left-width: 0;\r\n }\r\n .popover.bottom > .arrow {\r\n top: -11px;\r\n left: 50%;\r\n margin-left: -11px;\r\n border-top-width: 0;\r\n border-bottom-color: #999;\r\n border-bottom-color: rgba(0, 0, 0, 0.25);\r\n }\r\n .popover.bottom > .arrow:after {\r\n top: 1px;\r\n margin-left: -10px;\r\n content: \" \";\r\n border-top-width: 0;\r\n border-bottom-color: #fff;\r\n }\r\n .popover.left > .arrow {\r\n top: 50%;\r\n right: -11px;\r\n margin-top: -11px;\r\n border-right-width: 0;\r\n border-left-color: #999;\r\n border-left-color: rgba(0, 0, 0, 0.25);\r\n }\r\n .popover.left > .arrow:after {\r\n right: 1px;\r\n bottom: -10px;\r\n content: \" \";\r\n border-right-width: 0;\r\n border-left-color: #fff;\r\n }\r\n .carousel {\r\n position: relative;\r\n }\r\n .carousel-inner {\r\n position: relative;\r\n width: 100%;\r\n overflow: hidden;\r\n }\r\n .carousel-inner > .item {\r\n position: relative;\r\n display: none;\r\n -webkit-transition: 0.6s ease-in-out left;\r\n -o-transition: 0.6s ease-in-out left;\r\n transition: 0.6s ease-in-out left;\r\n }\r\n .carousel-inner > .item > img,\r\n .carousel-inner > .item > a > img {\r\n line-height: 1;\r\n }\r\n @media all and (transform-3d), (-webkit-transform-3d) {\r\n .carousel-inner > .item {\r\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\r\n -o-transition: -o-transform 0.6s ease-in-out;\r\n transition: transform 0.6s ease-in-out;\r\n\r\n -webkit-backface-visibility: hidden;\r\n backface-visibility: hidden;\r\n -webkit-perspective: 1000;\r\n perspective: 1000;\r\n }\r\n .carousel-inner > .item.next,\r\n .carousel-inner > .item.active.right {\r\n left: 0;\r\n -webkit-transform: translate3d(100%, 0, 0);\r\n transform: translate3d(100%, 0, 0);\r\n }\r\n .carousel-inner > .item.prev,\r\n .carousel-inner > .item.active.left {\r\n left: 0;\r\n -webkit-transform: translate3d(-100%, 0, 0);\r\n transform: translate3d(-100%, 0, 0);\r\n }\r\n .carousel-inner > .item.next.left,\r\n .carousel-inner > .item.prev.right,\r\n .carousel-inner > .item.active {\r\n left: 0;\r\n -webkit-transform: translate3d(0, 0, 0);\r\n transform: translate3d(0, 0, 0);\r\n }\r\n }\r\n .carousel-inner > .active,\r\n .carousel-inner > .next,\r\n .carousel-inner > .prev {\r\n display: block;\r\n }\r\n .carousel-inner > .active {\r\n left: 0;\r\n }\r\n .carousel-inner > .next,\r\n .carousel-inner > .prev {\r\n position: absolute;\r\n top: 0;\r\n width: 100%;\r\n }\r\n .carousel-inner > .next {\r\n left: 100%;\r\n }\r\n .carousel-inner > .prev {\r\n left: -100%;\r\n }\r\n .carousel-inner > .next.left,\r\n .carousel-inner > .prev.right {\r\n left: 0;\r\n }\r\n .carousel-inner > .active.left {\r\n left: -100%;\r\n }\r\n .carousel-inner > .active.right {\r\n left: 100%;\r\n }\r\n .carousel-control {\r\n position: absolute;\r\n top: 0;\r\n bottom: 0;\r\n left: 0;\r\n width: 15%;\r\n font-size: 20px;\r\n color: #fff;\r\n text-align: center;\r\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\r\n filter: alpha(opacity=50);\r\n opacity: 0.5;\r\n }\r\n .carousel-control.left {\r\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\r\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\r\n background-image: -webkit-gradient(\r\n linear,\r\n left top,\r\n right top,\r\n from(rgba(0, 0, 0, 0.5)),\r\n to(rgba(0, 0, 0, 0.0001))\r\n );\r\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\r\n background-repeat: repeat-x;\r\n }\r\n .carousel-control.right {\r\n right: 0;\r\n left: auto;\r\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\r\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\r\n background-image: -webkit-gradient(\r\n linear,\r\n left top,\r\n right top,\r\n from(rgba(0, 0, 0, 0.0001)),\r\n to(rgba(0, 0, 0, 0.5))\r\n );\r\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\r\n background-repeat: repeat-x;\r\n }\r\n .carousel-control:hover,\r\n .carousel-control:focus {\r\n color: #fff;\r\n text-decoration: none;\r\n filter: alpha(opacity=90);\r\n outline: 0;\r\n opacity: 0.9;\r\n }\r\n .carousel-control .icon-prev,\r\n .carousel-control .icon-next,\r\n .carousel-control .glyphicon-chevron-left,\r\n .carousel-control .glyphicon-chevron-right {\r\n position: absolute;\r\n top: 50%;\r\n z-index: 5;\r\n display: inline-block;\r\n }\r\n .carousel-control .icon-prev,\r\n .carousel-control .glyphicon-chevron-left {\r\n left: 50%;\r\n margin-left: -10px;\r\n }\r\n .carousel-control .icon-next,\r\n .carousel-control .glyphicon-chevron-right {\r\n right: 50%;\r\n margin-right: -10px;\r\n }\r\n .carousel-control .icon-prev,\r\n .carousel-control .icon-next {\r\n width: 20px;\r\n height: 20px;\r\n margin-top: -10px;\r\n font-family: serif;\r\n line-height: 1;\r\n }\r\n .carousel-control .icon-prev:before {\r\n content: \"\\2039\";\r\n }\r\n .carousel-control .icon-next:before {\r\n content: \"\\203a\";\r\n }\r\n .carousel-indicators {\r\n position: absolute;\r\n bottom: 10px;\r\n left: 50%;\r\n z-index: 15;\r\n width: 60%;\r\n padding-left: 0;\r\n margin-left: -30%;\r\n text-align: center;\r\n list-style: none;\r\n }\r\n .carousel-indicators li {\r\n display: inline-block;\r\n width: 10px;\r\n height: 10px;\r\n margin: 1px;\r\n text-indent: -999px;\r\n cursor: pointer;\r\n background-color: #000 \\9;\r\n background-color: rgba(0, 0, 0, 0);\r\n border: 1px solid #fff;\r\n border-radius: 10px;\r\n }\r\n .carousel-indicators .active {\r\n width: 12px;\r\n height: 12px;\r\n margin: 0;\r\n background-color: #fff;\r\n }\r\n .carousel-caption {\r\n position: absolute;\r\n right: 15%;\r\n bottom: 20px;\r\n left: 15%;\r\n z-index: 10;\r\n padding-top: 20px;\r\n padding-bottom: 20px;\r\n color: #fff;\r\n text-align: center;\r\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\r\n }\r\n .carousel-caption .btn {\r\n text-shadow: none;\r\n }\r\n @media screen and (min-width: 768px) {\r\n .carousel-control .glyphicon-chevron-left,\r\n .carousel-control .glyphicon-chevron-right,\r\n .carousel-control .icon-prev,\r\n .carousel-control .icon-next {\r\n width: 30px;\r\n height: 30px;\r\n margin-top: -15px;\r\n font-size: 30px;\r\n }\r\n .carousel-control .glyphicon-chevron-left,\r\n .carousel-control .icon-prev {\r\n margin-left: -15px;\r\n }\r\n .carousel-control .glyphicon-chevron-right,\r\n .carousel-control .icon-next {\r\n margin-right: -15px;\r\n }\r\n .carousel-caption {\r\n right: 20%;\r\n left: 20%;\r\n padding-bottom: 30px;\r\n }\r\n .carousel-indicators {\r\n bottom: 20px;\r\n }\r\n }\r\n .clearfix:before,\r\n .clearfix:after,\r\n .dl-horizontal dd:before,\r\n .dl-horizontal dd:after,\r\n .container:before,\r\n .container:after,\r\n .container-fluid:before,\r\n .container-fluid:after,\r\n .row:before,\r\n .row:after,\r\n .form-horizontal .form-group:before,\r\n .form-horizontal .form-group:after,\r\n .btn-toolbar:before,\r\n .btn-toolbar:after,\r\n .btn-group-vertical > .btn-group:before,\r\n .btn-group-vertical > .btn-group:after,\r\n .nav:before,\r\n .nav:after,\r\n .navbar:before,\r\n .navbar:after,\r\n .navbar-header:before,\r\n .navbar-header:after,\r\n .navbar-collapse:before,\r\n .navbar-collapse:after,\r\n .pager:before,\r\n .pager:after,\r\n .panel-body:before,\r\n .panel-body:after,\r\n .modal-footer:before,\r\n .modal-footer:after {\r\n display: table;\r\n content: \" \";\r\n }\r\n .clearfix:after,\r\n .dl-horizontal dd:after,\r\n .container:after,\r\n .container-fluid:after,\r\n .row:after,\r\n .form-horizontal .form-group:after,\r\n .btn-toolbar:after,\r\n .btn-group-vertical > .btn-group:after,\r\n .nav:after,\r\n .navbar:after,\r\n .navbar-header:after,\r\n .navbar-collapse:after,\r\n .pager:after,\r\n .panel-body:after,\r\n .modal-footer:after {\r\n clear: both;\r\n }\r\n .center-block {\r\n display: block;\r\n margin-right: auto;\r\n margin-left: auto;\r\n }\r\n .pull-right {\r\n float: right !important;\r\n }\r\n .pull-left {\r\n float: left !important;\r\n }\r\n .hide {\r\n display: none !important;\r\n }\r\n .show {\r\n display: block !important;\r\n }\r\n .invisible {\r\n visibility: hidden;\r\n }\r\n .text-hide {\r\n font: 0/0 a;\r\n color: transparent;\r\n text-shadow: none;\r\n background-color: transparent;\r\n border: 0;\r\n }\r\n .hidden {\r\n display: none !important;\r\n }\r\n .affix {\r\n position: fixed;\r\n }\r\n @-ms-viewport {\r\n width: device-width;\r\n }\r\n .visible-xs,\r\n .visible-sm,\r\n .visible-md,\r\n .visible-lg {\r\n display: none !important;\r\n }\r\n .visible-xs-block,\r\n .visible-xs-inline,\r\n .visible-xs-inline-block,\r\n .visible-sm-block,\r\n .visible-sm-inline,\r\n .visible-sm-inline-block,\r\n .visible-md-block,\r\n .visible-md-inline,\r\n .visible-md-inline-block,\r\n .visible-lg-block,\r\n .visible-lg-inline,\r\n .visible-lg-inline-block {\r\n display: none !important;\r\n }\r\n @media (max-width: 767px) {\r\n .visible-xs {\r\n display: block !important;\r\n }\r\n table.visible-xs {\r\n display: table;\r\n }\r\n tr.visible-xs {\r\n display: table-row !important;\r\n }\r\n th.visible-xs,\r\n td.visible-xs {\r\n display: table-cell !important;\r\n }\r\n }\r\n @media (max-width: 767px) {\r\n .visible-xs-block {\r\n display: block !important;\r\n }\r\n }\r\n @media (max-width: 767px) {\r\n .visible-xs-inline {\r\n display: inline !important;\r\n }\r\n }\r\n @media (max-width: 767px) {\r\n .visible-xs-inline-block {\r\n display: inline-block !important;\r\n }\r\n }\r\n @media (min-width: 768px) and (max-width: 991px) {\r\n .visible-sm {\r\n display: block !important;\r\n }\r\n table.visible-sm {\r\n display: table;\r\n }\r\n tr.visible-sm {\r\n display: table-row !important;\r\n }\r\n th.visible-sm,\r\n td.visible-sm {\r\n display: table-cell !important;\r\n }\r\n }\r\n @media (min-width: 768px) and (max-width: 991px) {\r\n .visible-sm-block {\r\n display: block !important;\r\n }\r\n }\r\n @media (min-width: 768px) and (max-width: 991px) {\r\n .visible-sm-inline {\r\n display: inline !important;\r\n }\r\n }\r\n @media (min-width: 768px) and (max-width: 991px) {\r\n .visible-sm-inline-block {\r\n display: inline-block !important;\r\n }\r\n }\r\n @media (min-width: 992px) and (max-width: 1199px) {\r\n .visible-md {\r\n display: block !important;\r\n }\r\n table.visible-md {\r\n display: table;\r\n }\r\n tr.visible-md {\r\n display: table-row !important;\r\n }\r\n th.visible-md,\r\n td.visible-md {\r\n display: table-cell !important;\r\n }\r\n }\r\n @media (min-width: 992px) and (max-width: 1199px) {\r\n .visible-md-block {\r\n display: block !important;\r\n }\r\n }\r\n @media (min-width: 992px) and (max-width: 1199px) {\r\n .visible-md-inline {\r\n display: inline !important;\r\n }\r\n }\r\n @media (min-width: 992px) and (max-width: 1199px) {\r\n .visible-md-inline-block {\r\n display: inline-block !important;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n .visible-lg {\r\n display: block !important;\r\n }\r\n table.visible-lg {\r\n display: table;\r\n }\r\n tr.visible-lg {\r\n display: table-row !important;\r\n }\r\n th.visible-lg,\r\n td.visible-lg {\r\n display: table-cell !important;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n .visible-lg-block {\r\n display: block !important;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n .visible-lg-inline {\r\n display: inline !important;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n .visible-lg-inline-block {\r\n display: inline-block !important;\r\n }\r\n }\r\n @media (max-width: 767px) {\r\n .hidden-xs {\r\n display: none !important;\r\n }\r\n }\r\n @media (min-width: 768px) and (max-width: 991px) {\r\n .hidden-sm {\r\n display: none !important;\r\n }\r\n }\r\n @media (min-width: 992px) and (max-width: 1199px) {\r\n .hidden-md {\r\n display: none !important;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n .hidden-lg {\r\n display: none !important;\r\n }\r\n }\r\n .visible-print {\r\n display: none !important;\r\n }\r\n @media print {\r\n .visible-print {\r\n display: block !important;\r\n }\r\n table.visible-print {\r\n display: table;\r\n }\r\n tr.visible-print {\r\n display: table-row !important;\r\n }\r\n th.visible-print,\r\n td.visible-print {\r\n display: table-cell !important;\r\n }\r\n }\r\n .visible-print-block {\r\n display: none !important;\r\n }\r\n @media print {\r\n .visible-print-block {\r\n display: block !important;\r\n }\r\n }\r\n .visible-print-inline {\r\n display: none !important;\r\n }\r\n @media print {\r\n .visible-print-inline {\r\n display: inline !important;\r\n }\r\n }\r\n .visible-print-inline-block {\r\n display: none !important;\r\n }\r\n @media print {\r\n .visible-print-inline-block {\r\n display: inline-block !important;\r\n }\r\n }\r\n @media print {\r\n .hidden-print {\r\n display: none !important;\r\n }\r\n }\r\n}\r\n","/*******************************************************************************\r\n * bootstrap-rtl (version 3.3.4)\r\n * Author: Morteza Ansarinia (http://github.com/morteza)\r\n * Created on: August 13,2015\r\n * Project: bootstrap-rtl\r\n * Copyright: Unlicensed Public Domain\r\n *******************************************************************************/\r\n@mixin bootstrap-rtl() {\r\n [dir=\"rtl\"] {\r\n .flip.text-left {\r\n text-align: right;\r\n }\r\n\r\n .flip.text-right {\r\n text-align: left;\r\n }\r\n\r\n .list-unstyled {\r\n padding-right: 0;\r\n padding-left: initial;\r\n }\r\n\r\n .list-inline {\r\n padding-right: 0;\r\n padding-left: initial;\r\n margin-right: -5px;\r\n margin-left: 0;\r\n }\r\n\r\n dd {\r\n margin-right: 0;\r\n margin-left: initial;\r\n }\r\n\r\n @media (min-width: 768px) {\r\n .dl-horizontal dt {\r\n float: right;\r\n clear: right;\r\n text-align: left;\r\n }\r\n .dl-horizontal dd {\r\n margin-right: 180px;\r\n margin-left: 0;\r\n }\r\n }\r\n\r\n blockquote {\r\n border-right: 5px solid #eeeeee;\r\n border-left: 0;\r\n }\r\n\r\n .blockquote-reverse,\r\n blockquote.pull-left {\r\n padding-left: 15px;\r\n padding-right: 0;\r\n border-left: 5px solid #eeeeee;\r\n border-right: 0;\r\n text-align: left;\r\n }\r\n\r\n .col-xs-1,\r\n .col-sm-1,\r\n .col-md-1,\r\n .col-lg-1,\r\n .col-xs-2,\r\n .col-sm-2,\r\n .col-md-2,\r\n .col-lg-2,\r\n .col-xs-3,\r\n .col-sm-3,\r\n .col-md-3,\r\n .col-lg-3,\r\n .col-xs-4,\r\n .col-sm-4,\r\n .col-md-4,\r\n .col-lg-4,\r\n .col-xs-5,\r\n .col-sm-5,\r\n .col-md-5,\r\n .col-lg-5,\r\n .col-xs-6,\r\n .col-sm-6,\r\n .col-md-6,\r\n .col-lg-6,\r\n .col-xs-7,\r\n .col-sm-7,\r\n .col-md-7,\r\n .col-lg-7,\r\n .col-xs-8,\r\n .col-sm-8,\r\n .col-md-8,\r\n .col-lg-8,\r\n .col-xs-9,\r\n .col-sm-9,\r\n .col-md-9,\r\n .col-lg-9,\r\n .col-xs-10,\r\n .col-sm-10,\r\n .col-md-10,\r\n .col-lg-10,\r\n .col-xs-11,\r\n .col-sm-11,\r\n .col-md-11,\r\n .col-lg-11,\r\n .col-xs-12,\r\n .col-sm-12,\r\n .col-md-12,\r\n .col-lg-12 {\r\n position: relative;\r\n min-height: 1px;\r\n padding-left: 15px;\r\n padding-right: 15px;\r\n }\r\n\r\n .col-xs-1,\r\n .col-xs-2,\r\n .col-xs-3,\r\n .col-xs-4,\r\n .col-xs-5,\r\n .col-xs-6,\r\n .col-xs-7,\r\n .col-xs-8,\r\n .col-xs-9,\r\n .col-xs-10,\r\n .col-xs-11,\r\n .col-xs-12 {\r\n float: right;\r\n }\r\n\r\n .col-xs-12 {\r\n width: 100%;\r\n }\r\n\r\n .col-xs-11 {\r\n width: 91.66666667%;\r\n }\r\n\r\n .col-xs-10 {\r\n width: 83.33333333%;\r\n }\r\n\r\n .col-xs-9 {\r\n width: 75%;\r\n }\r\n\r\n .col-xs-8 {\r\n width: 66.66666667%;\r\n }\r\n\r\n .col-xs-7 {\r\n width: 58.33333333%;\r\n }\r\n\r\n .col-xs-6 {\r\n width: 50%;\r\n }\r\n\r\n .col-xs-5 {\r\n width: 41.66666667%;\r\n }\r\n\r\n .col-xs-4 {\r\n width: 33.33333333%;\r\n }\r\n\r\n .col-xs-3 {\r\n width: 25%;\r\n }\r\n\r\n .col-xs-2 {\r\n width: 16.66666667%;\r\n }\r\n\r\n .col-xs-1 {\r\n width: 8.33333333%;\r\n }\r\n\r\n .col-xs-pull-12 {\r\n left: 100%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-11 {\r\n left: 91.66666667%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-10 {\r\n left: 83.33333333%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-9 {\r\n left: 75%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-8 {\r\n left: 66.66666667%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-7 {\r\n left: 58.33333333%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-6 {\r\n left: 50%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-5 {\r\n left: 41.66666667%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-4 {\r\n left: 33.33333333%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-3 {\r\n left: 25%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-2 {\r\n left: 16.66666667%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-1 {\r\n left: 8.33333333%;\r\n right: auto;\r\n }\r\n\r\n .col-xs-pull-0 {\r\n left: auto;\r\n right: auto;\r\n }\r\n\r\n .col-xs-push-12 {\r\n right: 100%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-11 {\r\n right: 91.66666667%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-10 {\r\n right: 83.33333333%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-9 {\r\n right: 75%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-8 {\r\n right: 66.66666667%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-7 {\r\n right: 58.33333333%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-6 {\r\n right: 50%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-5 {\r\n right: 41.66666667%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-4 {\r\n right: 33.33333333%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-3 {\r\n right: 25%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-2 {\r\n right: 16.66666667%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-1 {\r\n right: 8.33333333%;\r\n left: 0;\r\n }\r\n\r\n .col-xs-push-0 {\r\n right: auto;\r\n left: 0;\r\n }\r\n\r\n .col-xs-offset-12 {\r\n margin-right: 100%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-11 {\r\n margin-right: 91.66666667%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-10 {\r\n margin-right: 83.33333333%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-9 {\r\n margin-right: 75%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-8 {\r\n margin-right: 66.66666667%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-7 {\r\n margin-right: 58.33333333%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-6 {\r\n margin-right: 50%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-5 {\r\n margin-right: 41.66666667%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-4 {\r\n margin-right: 33.33333333%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-3 {\r\n margin-right: 25%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-2 {\r\n margin-right: 16.66666667%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-1 {\r\n margin-right: 8.33333333%;\r\n margin-left: 0;\r\n }\r\n\r\n .col-xs-offset-0 {\r\n margin-right: 0%;\r\n margin-left: 0;\r\n }\r\n\r\n @media (min-width: 768px) {\r\n .col-sm-1,\r\n .col-sm-2,\r\n .col-sm-3,\r\n .col-sm-4,\r\n .col-sm-5,\r\n .col-sm-6,\r\n .col-sm-7,\r\n .col-sm-8,\r\n .col-sm-9,\r\n .col-sm-10,\r\n .col-sm-11,\r\n .col-sm-12 {\r\n float: right;\r\n }\r\n .col-sm-12 {\r\n width: 100%;\r\n }\r\n .col-sm-11 {\r\n width: 91.66666667%;\r\n }\r\n .col-sm-10 {\r\n width: 83.33333333%;\r\n }\r\n .col-sm-9 {\r\n width: 75%;\r\n }\r\n .col-sm-8 {\r\n width: 66.66666667%;\r\n }\r\n .col-sm-7 {\r\n width: 58.33333333%;\r\n }\r\n .col-sm-6 {\r\n width: 50%;\r\n }\r\n .col-sm-5 {\r\n width: 41.66666667%;\r\n }\r\n .col-sm-4 {\r\n width: 33.33333333%;\r\n }\r\n .col-sm-3 {\r\n width: 25%;\r\n }\r\n .col-sm-2 {\r\n width: 16.66666667%;\r\n }\r\n .col-sm-1 {\r\n width: 8.33333333%;\r\n }\r\n .col-sm-pull-12 {\r\n left: 100%;\r\n right: auto;\r\n }\r\n .col-sm-pull-11 {\r\n left: 91.66666667%;\r\n right: auto;\r\n }\r\n .col-sm-pull-10 {\r\n left: 83.33333333%;\r\n right: auto;\r\n }\r\n .col-sm-pull-9 {\r\n left: 75%;\r\n right: auto;\r\n }\r\n .col-sm-pull-8 {\r\n left: 66.66666667%;\r\n right: auto;\r\n }\r\n .col-sm-pull-7 {\r\n left: 58.33333333%;\r\n right: auto;\r\n }\r\n .col-sm-pull-6 {\r\n left: 50%;\r\n right: auto;\r\n }\r\n .col-sm-pull-5 {\r\n left: 41.66666667%;\r\n right: auto;\r\n }\r\n .col-sm-pull-4 {\r\n left: 33.33333333%;\r\n right: auto;\r\n }\r\n .col-sm-pull-3 {\r\n left: 25%;\r\n right: auto;\r\n }\r\n .col-sm-pull-2 {\r\n left: 16.66666667%;\r\n right: auto;\r\n }\r\n .col-sm-pull-1 {\r\n left: 8.33333333%;\r\n right: auto;\r\n }\r\n .col-sm-pull-0 {\r\n left: auto;\r\n right: auto;\r\n }\r\n .col-sm-push-12 {\r\n right: 100%;\r\n left: 0;\r\n }\r\n .col-sm-push-11 {\r\n right: 91.66666667%;\r\n left: 0;\r\n }\r\n .col-sm-push-10 {\r\n right: 83.33333333%;\r\n left: 0;\r\n }\r\n .col-sm-push-9 {\r\n right: 75%;\r\n left: 0;\r\n }\r\n .col-sm-push-8 {\r\n right: 66.66666667%;\r\n left: 0;\r\n }\r\n .col-sm-push-7 {\r\n right: 58.33333333%;\r\n left: 0;\r\n }\r\n .col-sm-push-6 {\r\n right: 50%;\r\n left: 0;\r\n }\r\n .col-sm-push-5 {\r\n right: 41.66666667%;\r\n left: 0;\r\n }\r\n .col-sm-push-4 {\r\n right: 33.33333333%;\r\n left: 0;\r\n }\r\n .col-sm-push-3 {\r\n right: 25%;\r\n left: 0;\r\n }\r\n .col-sm-push-2 {\r\n right: 16.66666667%;\r\n left: 0;\r\n }\r\n .col-sm-push-1 {\r\n right: 8.33333333%;\r\n left: 0;\r\n }\r\n .col-sm-push-0 {\r\n right: auto;\r\n left: 0;\r\n }\r\n .col-sm-offset-12 {\r\n margin-right: 100%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-11 {\r\n margin-right: 91.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-10 {\r\n margin-right: 83.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-9 {\r\n margin-right: 75%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-8 {\r\n margin-right: 66.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-7 {\r\n margin-right: 58.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-6 {\r\n margin-right: 50%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-5 {\r\n margin-right: 41.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-4 {\r\n margin-right: 33.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-3 {\r\n margin-right: 25%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-2 {\r\n margin-right: 16.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-1 {\r\n margin-right: 8.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-sm-offset-0 {\r\n margin-right: 0%;\r\n margin-left: 0;\r\n }\r\n }\r\n @media (min-width: 992px) {\r\n .col-md-1,\r\n .col-md-2,\r\n .col-md-3,\r\n .col-md-4,\r\n .col-md-5,\r\n .col-md-6,\r\n .col-md-7,\r\n .col-md-8,\r\n .col-md-9,\r\n .col-md-10,\r\n .col-md-11,\r\n .col-md-12 {\r\n float: right;\r\n }\r\n .col-md-12 {\r\n width: 100%;\r\n }\r\n .col-md-11 {\r\n width: 91.66666667%;\r\n }\r\n .col-md-10 {\r\n width: 83.33333333%;\r\n }\r\n .col-md-9 {\r\n width: 75%;\r\n }\r\n .col-md-8 {\r\n width: 66.66666667%;\r\n }\r\n .col-md-7 {\r\n width: 58.33333333%;\r\n }\r\n .col-md-6 {\r\n width: 50%;\r\n }\r\n .col-md-5 {\r\n width: 41.66666667%;\r\n }\r\n .col-md-4 {\r\n width: 33.33333333%;\r\n }\r\n .col-md-3 {\r\n width: 25%;\r\n }\r\n .col-md-2 {\r\n width: 16.66666667%;\r\n }\r\n .col-md-1 {\r\n width: 8.33333333%;\r\n }\r\n .col-md-pull-12 {\r\n left: 100%;\r\n right: auto;\r\n }\r\n .col-md-pull-11 {\r\n left: 91.66666667%;\r\n right: auto;\r\n }\r\n .col-md-pull-10 {\r\n left: 83.33333333%;\r\n right: auto;\r\n }\r\n .col-md-pull-9 {\r\n left: 75%;\r\n right: auto;\r\n }\r\n .col-md-pull-8 {\r\n left: 66.66666667%;\r\n right: auto;\r\n }\r\n .col-md-pull-7 {\r\n left: 58.33333333%;\r\n right: auto;\r\n }\r\n .col-md-pull-6 {\r\n left: 50%;\r\n right: auto;\r\n }\r\n .col-md-pull-5 {\r\n left: 41.66666667%;\r\n right: auto;\r\n }\r\n .col-md-pull-4 {\r\n left: 33.33333333%;\r\n right: auto;\r\n }\r\n .col-md-pull-3 {\r\n left: 25%;\r\n right: auto;\r\n }\r\n .col-md-pull-2 {\r\n left: 16.66666667%;\r\n right: auto;\r\n }\r\n .col-md-pull-1 {\r\n left: 8.33333333%;\r\n right: auto;\r\n }\r\n .col-md-pull-0 {\r\n left: auto;\r\n right: auto;\r\n }\r\n .col-md-push-12 {\r\n right: 100%;\r\n left: 0;\r\n }\r\n .col-md-push-11 {\r\n right: 91.66666667%;\r\n left: 0;\r\n }\r\n .col-md-push-10 {\r\n right: 83.33333333%;\r\n left: 0;\r\n }\r\n .col-md-push-9 {\r\n right: 75%;\r\n left: 0;\r\n }\r\n .col-md-push-8 {\r\n right: 66.66666667%;\r\n left: 0;\r\n }\r\n .col-md-push-7 {\r\n right: 58.33333333%;\r\n left: 0;\r\n }\r\n .col-md-push-6 {\r\n right: 50%;\r\n left: 0;\r\n }\r\n .col-md-push-5 {\r\n right: 41.66666667%;\r\n left: 0;\r\n }\r\n .col-md-push-4 {\r\n right: 33.33333333%;\r\n left: 0;\r\n }\r\n .col-md-push-3 {\r\n right: 25%;\r\n left: 0;\r\n }\r\n .col-md-push-2 {\r\n right: 16.66666667%;\r\n left: 0;\r\n }\r\n .col-md-push-1 {\r\n right: 8.33333333%;\r\n left: 0;\r\n }\r\n .col-md-push-0 {\r\n right: auto;\r\n left: 0;\r\n }\r\n .col-md-offset-12 {\r\n margin-right: 100%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-11 {\r\n margin-right: 91.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-10 {\r\n margin-right: 83.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-9 {\r\n margin-right: 75%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-8 {\r\n margin-right: 66.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-7 {\r\n margin-right: 58.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-6 {\r\n margin-right: 50%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-5 {\r\n margin-right: 41.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-4 {\r\n margin-right: 33.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-3 {\r\n margin-right: 25%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-2 {\r\n margin-right: 16.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-1 {\r\n margin-right: 8.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-md-offset-0 {\r\n margin-right: 0%;\r\n margin-left: 0;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n .col-lg-1,\r\n .col-lg-2,\r\n .col-lg-3,\r\n .col-lg-4,\r\n .col-lg-5,\r\n .col-lg-6,\r\n .col-lg-7,\r\n .col-lg-8,\r\n .col-lg-9,\r\n .col-lg-10,\r\n .col-lg-11,\r\n .col-lg-12 {\r\n float: right;\r\n }\r\n .col-lg-12 {\r\n width: 100%;\r\n }\r\n .col-lg-11 {\r\n width: 91.66666667%;\r\n }\r\n .col-lg-10 {\r\n width: 83.33333333%;\r\n }\r\n .col-lg-9 {\r\n width: 75%;\r\n }\r\n .col-lg-8 {\r\n width: 66.66666667%;\r\n }\r\n .col-lg-7 {\r\n width: 58.33333333%;\r\n }\r\n .col-lg-6 {\r\n width: 50%;\r\n }\r\n .col-lg-5 {\r\n width: 41.66666667%;\r\n }\r\n .col-lg-4 {\r\n width: 33.33333333%;\r\n }\r\n .col-lg-3 {\r\n width: 25%;\r\n }\r\n .col-lg-2 {\r\n width: 16.66666667%;\r\n }\r\n .col-lg-1 {\r\n width: 8.33333333%;\r\n }\r\n .col-lg-pull-12 {\r\n left: 100%;\r\n right: auto;\r\n }\r\n .col-lg-pull-11 {\r\n left: 91.66666667%;\r\n right: auto;\r\n }\r\n .col-lg-pull-10 {\r\n left: 83.33333333%;\r\n right: auto;\r\n }\r\n .col-lg-pull-9 {\r\n left: 75%;\r\n right: auto;\r\n }\r\n .col-lg-pull-8 {\r\n left: 66.66666667%;\r\n right: auto;\r\n }\r\n .col-lg-pull-7 {\r\n left: 58.33333333%;\r\n right: auto;\r\n }\r\n .col-lg-pull-6 {\r\n left: 50%;\r\n right: auto;\r\n }\r\n .col-lg-pull-5 {\r\n left: 41.66666667%;\r\n right: auto;\r\n }\r\n .col-lg-pull-4 {\r\n left: 33.33333333%;\r\n right: auto;\r\n }\r\n .col-lg-pull-3 {\r\n left: 25%;\r\n right: auto;\r\n }\r\n .col-lg-pull-2 {\r\n left: 16.66666667%;\r\n right: auto;\r\n }\r\n .col-lg-pull-1 {\r\n left: 8.33333333%;\r\n right: auto;\r\n }\r\n .col-lg-pull-0 {\r\n left: auto;\r\n right: auto;\r\n }\r\n .col-lg-push-12 {\r\n right: 100%;\r\n left: 0;\r\n }\r\n .col-lg-push-11 {\r\n right: 91.66666667%;\r\n left: 0;\r\n }\r\n .col-lg-push-10 {\r\n right: 83.33333333%;\r\n left: 0;\r\n }\r\n .col-lg-push-9 {\r\n right: 75%;\r\n left: 0;\r\n }\r\n .col-lg-push-8 {\r\n right: 66.66666667%;\r\n left: 0;\r\n }\r\n .col-lg-push-7 {\r\n right: 58.33333333%;\r\n left: 0;\r\n }\r\n .col-lg-push-6 {\r\n right: 50%;\r\n left: 0;\r\n }\r\n .col-lg-push-5 {\r\n right: 41.66666667%;\r\n left: 0;\r\n }\r\n .col-lg-push-4 {\r\n right: 33.33333333%;\r\n left: 0;\r\n }\r\n .col-lg-push-3 {\r\n right: 25%;\r\n left: 0;\r\n }\r\n .col-lg-push-2 {\r\n right: 16.66666667%;\r\n left: 0;\r\n }\r\n .col-lg-push-1 {\r\n right: 8.33333333%;\r\n left: 0;\r\n }\r\n .col-lg-push-0 {\r\n right: auto;\r\n left: 0;\r\n }\r\n .col-lg-offset-12 {\r\n margin-right: 100%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-11 {\r\n margin-right: 91.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-10 {\r\n margin-right: 83.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-9 {\r\n margin-right: 75%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-8 {\r\n margin-right: 66.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-7 {\r\n margin-right: 58.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-6 {\r\n margin-right: 50%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-5 {\r\n margin-right: 41.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-4 {\r\n margin-right: 33.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-3 {\r\n margin-right: 25%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-2 {\r\n margin-right: 16.66666667%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-1 {\r\n margin-right: 8.33333333%;\r\n margin-left: 0;\r\n }\r\n .col-lg-offset-0 {\r\n margin-right: 0%;\r\n margin-left: 0;\r\n }\r\n }\r\n\r\n caption {\r\n text-align: right;\r\n }\r\n\r\n th:not(.mx-left-aligned) {\r\n text-align: right;\r\n }\r\n\r\n @media screen and (max-width: 767px) {\r\n .table-responsive > .table-bordered {\r\n border: 0;\r\n }\r\n .table-responsive > .table-bordered > thead > tr > th:first-child,\r\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\r\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\r\n .table-responsive > .table-bordered > thead > tr > td:first-child,\r\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\r\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\r\n border-right: 0;\r\n border-left: initial;\r\n }\r\n .table-responsive > .table-bordered > thead > tr > th:last-child,\r\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\r\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\r\n .table-responsive > .table-bordered > thead > tr > td:last-child,\r\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\r\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\r\n border-left: 0;\r\n border-right: initial;\r\n }\r\n }\r\n\r\n .radio label,\r\n .checkbox label {\r\n padding-right: 20px;\r\n padding-left: initial;\r\n }\r\n\r\n .radio input[type=\"radio\"],\r\n .radio-inline input[type=\"radio\"],\r\n .checkbox input[type=\"checkbox\"],\r\n .checkbox-inline input[type=\"checkbox\"] {\r\n margin-right: -20px;\r\n margin-left: auto;\r\n }\r\n\r\n .radio-inline,\r\n .checkbox-inline {\r\n padding-right: 20px;\r\n padding-left: 0;\r\n }\r\n\r\n .radio-inline + .radio-inline,\r\n .checkbox-inline + .checkbox-inline {\r\n margin-right: 10px;\r\n margin-left: 0;\r\n }\r\n\r\n .has-feedback .form-control {\r\n padding-left: 42.5px;\r\n padding-right: 12px;\r\n }\r\n\r\n .form-control-feedback {\r\n left: 0;\r\n right: auto;\r\n }\r\n\r\n @media (min-width: 768px) {\r\n .form-inline label {\r\n padding-right: 0;\r\n padding-left: initial;\r\n }\r\n .form-inline .radio input[type=\"radio\"],\r\n .form-inline .checkbox input[type=\"checkbox\"] {\r\n margin-right: 0;\r\n margin-left: auto;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .form-horizontal .control-label {\r\n text-align: left;\r\n }\r\n }\r\n\r\n .form-horizontal .has-feedback .form-control-feedback {\r\n left: 15px;\r\n right: auto;\r\n }\r\n\r\n .caret {\r\n margin-right: 2px;\r\n margin-left: 0;\r\n }\r\n\r\n .dropdown-menu {\r\n right: 0;\r\n left: auto;\r\n float: left;\r\n text-align: right;\r\n }\r\n\r\n .dropdown-menu.pull-right {\r\n left: 0;\r\n right: auto;\r\n float: right;\r\n }\r\n\r\n .dropdown-menu-right {\r\n left: auto;\r\n right: 0;\r\n }\r\n\r\n .dropdown-menu-left {\r\n left: 0;\r\n right: auto;\r\n }\r\n\r\n @media (min-width: 768px) {\r\n .navbar-right .dropdown-menu {\r\n left: auto;\r\n right: 0;\r\n }\r\n .navbar-right .dropdown-menu-left {\r\n left: 0;\r\n right: auto;\r\n }\r\n }\r\n\r\n .btn-group > .btn,\r\n .btn-group-vertical > .btn {\r\n float: right;\r\n }\r\n\r\n .btn-group .btn + .btn,\r\n .btn-group .btn + .btn-group,\r\n .btn-group .btn-group + .btn,\r\n .btn-group .btn-group + .btn-group {\r\n margin-right: -1px;\r\n margin-left: 0px;\r\n }\r\n\r\n .btn-toolbar {\r\n margin-right: -5px;\r\n margin-left: 0px;\r\n }\r\n\r\n .btn-toolbar .btn-group,\r\n .btn-toolbar .input-group {\r\n float: right;\r\n }\r\n\r\n .btn-toolbar > .btn,\r\n .btn-toolbar > .btn-group,\r\n .btn-toolbar > .input-group {\r\n margin-right: 5px;\r\n margin-left: 0px;\r\n }\r\n\r\n .btn-group > .btn:first-child {\r\n margin-right: 0;\r\n }\r\n\r\n .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\r\n border-top-right-radius: 4px;\r\n border-bottom-right-radius: 4px;\r\n border-bottom-left-radius: 0;\r\n border-top-left-radius: 0;\r\n }\r\n\r\n .btn-group > .btn:last-child:not(:first-child),\r\n .btn-group > .dropdown-toggle:not(:first-child) {\r\n border-top-left-radius: 4px;\r\n border-bottom-left-radius: 4px;\r\n border-bottom-right-radius: 0;\r\n border-top-right-radius: 0;\r\n }\r\n\r\n .btn-group > .btn-group {\r\n float: right;\r\n }\r\n\r\n .btn-group.btn-group-justified > .btn,\r\n .btn-group.btn-group-justified > .btn-group {\r\n float: none;\r\n }\r\n\r\n .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\r\n border-radius: 0;\r\n }\r\n\r\n .btn-group > .btn-group:first-child > .btn:last-child,\r\n .btn-group > .btn-group:first-child > .dropdown-toggle {\r\n border-top-right-radius: 4px;\r\n border-bottom-right-radius: 4px;\r\n border-bottom-left-radius: 0;\r\n border-top-left-radius: 0;\r\n }\r\n\r\n .btn-group > .btn-group:last-child > .btn:first-child {\r\n border-top-left-radius: 4px;\r\n border-bottom-left-radius: 4px;\r\n border-bottom-right-radius: 0;\r\n border-top-right-radius: 0;\r\n }\r\n\r\n .btn .caret {\r\n margin-right: 0;\r\n }\r\n\r\n .btn-group-vertical > .btn + .btn,\r\n .btn-group-vertical > .btn + .btn-group,\r\n .btn-group-vertical > .btn-group + .btn,\r\n .btn-group-vertical > .btn-group + .btn-group {\r\n margin-top: -1px;\r\n margin-right: 0;\r\n }\r\n\r\n .input-group .form-control {\r\n float: right;\r\n }\r\n\r\n .input-group .form-control:first-child,\r\n .input-group-addon:first-child,\r\n .input-group-btn:first-child > .btn,\r\n .input-group-btn:first-child > .btn-group > .btn,\r\n .input-group-btn:first-child > .dropdown-toggle,\r\n .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\r\n .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\r\n border-bottom-right-radius: 4px;\r\n border-top-right-radius: 4px;\r\n border-bottom-left-radius: 0;\r\n border-top-left-radius: 0;\r\n }\r\n\r\n .input-group-addon:first-child {\r\n border-left: 0px;\r\n border-right: 1px solid;\r\n }\r\n\r\n .input-group .form-control:last-child,\r\n .input-group-addon:last-child,\r\n .input-group-btn:last-child > .btn,\r\n .input-group-btn:last-child > .btn-group > .btn,\r\n .input-group-btn:last-child > .dropdown-toggle,\r\n .input-group-btn:first-child > .btn:not(:first-child),\r\n .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\r\n border-bottom-left-radius: 4px;\r\n border-top-left-radius: 4px;\r\n border-bottom-right-radius: 0;\r\n border-top-right-radius: 0;\r\n }\r\n\r\n .input-group-addon:last-child {\r\n border-left-width: 1px;\r\n border-left-style: solid;\r\n border-right: 0px;\r\n }\r\n\r\n .input-group-btn > .btn + .btn {\r\n margin-right: -1px;\r\n margin-left: auto;\r\n }\r\n\r\n .input-group-btn:first-child > .btn,\r\n .input-group-btn:first-child > .btn-group {\r\n margin-left: -1px;\r\n margin-right: auto;\r\n }\r\n\r\n .input-group-btn:last-child > .btn,\r\n .input-group-btn:last-child > .btn-group {\r\n margin-right: -1px;\r\n margin-left: auto;\r\n }\r\n\r\n .nav {\r\n padding-right: 0;\r\n padding-left: initial;\r\n }\r\n\r\n .nav-tabs > li {\r\n float: right;\r\n }\r\n\r\n .nav-tabs > li > a {\r\n margin-left: auto;\r\n margin-right: -2px;\r\n border-radius: 4px 4px 0 0;\r\n }\r\n\r\n .nav-pills > li {\r\n float: right;\r\n }\r\n\r\n .nav-pills > li > a {\r\n border-radius: 4px;\r\n }\r\n\r\n .nav-pills > li + li {\r\n margin-right: 2px;\r\n margin-left: auto;\r\n }\r\n\r\n .nav-stacked > li {\r\n float: none;\r\n }\r\n\r\n .nav-stacked > li + li {\r\n margin-right: 0;\r\n margin-left: auto;\r\n }\r\n\r\n .nav-justified > .dropdown .dropdown-menu {\r\n right: auto;\r\n }\r\n\r\n .nav-tabs-justified > li > a {\r\n margin-left: 0;\r\n margin-right: auto;\r\n }\r\n\r\n @media (min-width: 768px) {\r\n .nav-tabs-justified > li > a {\r\n border-radius: 4px 4px 0 0;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-header {\r\n float: right;\r\n }\r\n }\r\n\r\n .navbar-collapse {\r\n padding-right: 15px;\r\n padding-left: 15px;\r\n }\r\n\r\n .navbar-brand {\r\n float: right;\r\n }\r\n\r\n @media (min-width: 768px) {\r\n .navbar > .container .navbar-brand,\r\n .navbar > .container-fluid .navbar-brand {\r\n margin-right: -15px;\r\n margin-left: auto;\r\n }\r\n }\r\n\r\n .navbar-toggle {\r\n float: left;\r\n margin-left: 15px;\r\n margin-right: auto;\r\n }\r\n\r\n @media (max-width: 767px) {\r\n .navbar-nav .open .dropdown-menu > li > a,\r\n .navbar-nav .open .dropdown-menu .dropdown-header {\r\n padding: 5px 25px 5px 15px;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-nav {\r\n float: right;\r\n }\r\n .navbar-nav > li {\r\n float: right;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-left.flip {\r\n float: right !important;\r\n }\r\n .navbar-right:last-child {\r\n margin-left: -15px;\r\n margin-right: auto;\r\n }\r\n .navbar-right.flip {\r\n float: left !important;\r\n margin-left: -15px;\r\n margin-right: auto;\r\n }\r\n .navbar-right .dropdown-menu {\r\n left: 0;\r\n right: auto;\r\n }\r\n }\r\n @media (min-width: 768px) {\r\n .navbar-text {\r\n float: right;\r\n }\r\n .navbar-text.navbar-right:last-child {\r\n margin-left: 0;\r\n margin-right: auto;\r\n }\r\n }\r\n\r\n .pagination {\r\n padding-right: 0;\r\n }\r\n\r\n .pagination > li > a,\r\n .pagination > li > span {\r\n float: right;\r\n margin-right: -1px;\r\n margin-left: 0px;\r\n }\r\n\r\n .pagination > li:first-child > a,\r\n .pagination > li:first-child > span {\r\n margin-left: 0;\r\n border-bottom-right-radius: 4px;\r\n border-top-right-radius: 4px;\r\n border-bottom-left-radius: 0;\r\n border-top-left-radius: 0;\r\n }\r\n\r\n .pagination > li:last-child > a,\r\n .pagination > li:last-child > span {\r\n margin-right: -1px;\r\n border-bottom-left-radius: 4px;\r\n border-top-left-radius: 4px;\r\n border-bottom-right-radius: 0;\r\n border-top-right-radius: 0;\r\n }\r\n\r\n .pager {\r\n padding-right: 0;\r\n padding-left: initial;\r\n }\r\n\r\n .pager .next > a,\r\n .pager .next > span {\r\n float: left;\r\n }\r\n\r\n .pager .previous > a,\r\n .pager .previous > span {\r\n float: right;\r\n }\r\n\r\n .nav-pills > li > a > .badge {\r\n margin-left: 0px;\r\n margin-right: 3px;\r\n }\r\n\r\n .list-group-item > .badge {\r\n float: left;\r\n }\r\n\r\n .list-group-item > .badge + .badge {\r\n margin-left: 5px;\r\n margin-right: auto;\r\n }\r\n\r\n .alert-dismissable,\r\n .alert-dismissible {\r\n padding-left: 35px;\r\n padding-right: 15px;\r\n }\r\n\r\n .alert-dismissable .close,\r\n .alert-dismissible .close {\r\n right: auto;\r\n left: -21px;\r\n }\r\n\r\n .progress-bar {\r\n float: right;\r\n }\r\n\r\n .media > .pull-left {\r\n margin-right: 10px;\r\n }\r\n\r\n .media > .pull-left.flip {\r\n margin-right: 0;\r\n margin-left: 10px;\r\n }\r\n\r\n .media > .pull-right {\r\n margin-left: 10px;\r\n }\r\n\r\n .media > .pull-right.flip {\r\n margin-left: 0;\r\n margin-right: 10px;\r\n }\r\n\r\n .media-right,\r\n .media > .pull-right {\r\n padding-right: 10px;\r\n padding-left: initial;\r\n }\r\n\r\n .media-left,\r\n .media > .pull-left {\r\n padding-left: 10px;\r\n padding-right: initial;\r\n }\r\n\r\n .media-list {\r\n padding-right: 0;\r\n padding-left: initial;\r\n list-style: none;\r\n }\r\n\r\n .list-group {\r\n padding-right: 0;\r\n padding-left: initial;\r\n }\r\n\r\n .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\r\n .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\r\n .panel\r\n > .table-responsive:first-child\r\n > .table:first-child\r\n > tbody:first-child\r\n > tr:first-child\r\n th:first-child {\r\n border-top-right-radius: 3px;\r\n border-top-left-radius: 0;\r\n }\r\n\r\n .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\r\n .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\r\n .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\r\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\r\n border-top-left-radius: 3px;\r\n border-top-right-radius: 0;\r\n }\r\n\r\n .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\r\n .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\r\n border-bottom-left-radius: 3px;\r\n border-top-right-radius: 0;\r\n }\r\n\r\n .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\r\n .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\r\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\r\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\r\n border-bottom-right-radius: 3px;\r\n border-top-left-radius: 0;\r\n }\r\n\r\n .panel > .table-bordered > thead > tr > th:first-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\r\n .panel > .table-bordered > tbody > tr > th:first-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\r\n .panel > .table-bordered > tfoot > tr > th:first-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\r\n .panel > .table-bordered > thead > tr > td:first-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\r\n .panel > .table-bordered > tbody > tr > td:first-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\r\n .panel > .table-bordered > tfoot > tr > td:first-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\r\n border-right: 0;\r\n border-left: none;\r\n }\r\n\r\n .panel > .table-bordered > thead > tr > th:last-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\r\n .panel > .table-bordered > tbody > tr > th:last-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\r\n .panel > .table-bordered > tfoot > tr > th:last-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\r\n .panel > .table-bordered > thead > tr > td:last-child,\r\n .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\r\n .panel > .table-bordered > tbody > tr > td:last-child,\r\n .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\r\n .panel > .table-bordered > tfoot > tr > td:last-child,\r\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\r\n border-right: none;\r\n border-left: 0;\r\n }\r\n\r\n .embed-responsive .embed-responsive-item,\r\n .embed-responsive iframe,\r\n .embed-responsive embed,\r\n .embed-responsive object {\r\n right: 0;\r\n left: auto;\r\n }\r\n\r\n .close {\r\n float: left;\r\n }\r\n\r\n .modal-footer {\r\n text-align: left;\r\n }\r\n\r\n .modal-footer.flip {\r\n text-align: right;\r\n }\r\n\r\n .modal-footer .btn + .btn {\r\n margin-left: auto;\r\n margin-right: 5px;\r\n }\r\n\r\n .modal-footer .btn-group .btn + .btn {\r\n margin-right: -1px;\r\n margin-left: auto;\r\n }\r\n\r\n .modal-footer .btn-block + .btn-block {\r\n margin-right: 0;\r\n margin-left: auto;\r\n }\r\n\r\n .popover {\r\n left: auto;\r\n text-align: right;\r\n }\r\n\r\n .popover.top > .arrow {\r\n right: 50%;\r\n left: auto;\r\n margin-right: -11px;\r\n margin-left: auto;\r\n }\r\n\r\n .popover.top > .arrow:after {\r\n margin-right: -10px;\r\n margin-left: auto;\r\n }\r\n\r\n .popover.bottom > .arrow {\r\n right: 50%;\r\n left: auto;\r\n margin-right: -11px;\r\n margin-left: auto;\r\n }\r\n\r\n .popover.bottom > .arrow:after {\r\n margin-right: -10px;\r\n margin-left: auto;\r\n }\r\n\r\n .carousel-control {\r\n right: 0;\r\n bottom: 0;\r\n }\r\n\r\n .carousel-control.left {\r\n right: auto;\r\n left: 0;\r\n background-image: -webkit-linear-gradient(\r\n left,\r\n color-stop(rgba(0, 0, 0, 0.5) 0%),\r\n color-stop(rgba(0, 0, 0, 0.0001) 100%)\r\n );\r\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\r\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\r\n background-repeat: repeat-x;\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\r\n }\r\n\r\n .carousel-control.right {\r\n left: auto;\r\n right: 0;\r\n background-image: -webkit-linear-gradient(\r\n left,\r\n color-stop(rgba(0, 0, 0, 0.0001) 0%),\r\n color-stop(rgba(0, 0, 0, 0.5) 100%)\r\n );\r\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\r\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\r\n background-repeat: repeat-x;\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\r\n }\r\n\r\n .carousel-control .icon-prev,\r\n .carousel-control .glyphicon-chevron-left {\r\n left: 50%;\r\n right: auto;\r\n margin-right: -10px;\r\n }\r\n\r\n .carousel-control .icon-next,\r\n .carousel-control .glyphicon-chevron-right {\r\n right: 50%;\r\n left: auto;\r\n margin-left: -10px;\r\n }\r\n\r\n .carousel-indicators {\r\n right: 50%;\r\n left: 0;\r\n margin-right: -30%;\r\n margin-left: 0;\r\n padding-left: 0;\r\n }\r\n\r\n @media screen and (min-width: 768px) {\r\n .carousel-control .glyphicon-chevron-left,\r\n .carousel-control .icon-prev {\r\n margin-left: 0;\r\n margin-right: -15px;\r\n }\r\n .carousel-control .glyphicon-chevron-right,\r\n .carousel-control .icon-next {\r\n margin-left: 0;\r\n margin-right: -15px;\r\n }\r\n .carousel-caption {\r\n left: 20%;\r\n right: 20%;\r\n padding-bottom: 30px;\r\n }\r\n }\r\n\r\n .pull-right.flip {\r\n float: left !important;\r\n }\r\n\r\n .pull-left.flip {\r\n float: right !important;\r\n }\r\n }\r\n}\r\n","/* @preserve\r\n Copyright (c) 2005-2016, Mendix bv. All rights reserved.\r\n See mxclientsystem/licenses.txt for third party licenses that apply.\r\n*/\r\n\r\n/*\r\n\tEssential styles that themes can inherit.\r\n\tIn other words, works but doesn't look great.\r\n*/\r\n\r\n@mixin mxui() {\r\n /****\r\n\t\tGENERIC PIECES\r\n ****/\r\n\r\n .dijitReset {\r\n /* Use this style to null out padding, margin, border in your template elements\r\n\t\tso that page specific styles don't break them.\r\n\t\t- Use in all TABLE, TR and TD tags.\r\n\t*/\r\n margin: 0;\r\n border: 0;\r\n padding: 0;\r\n font: inherit;\r\n line-height: normal;\r\n color: inherit;\r\n }\r\n .dj_a11y .dijitReset {\r\n -moz-appearance: none; /* remove predefined high-contrast styling in Firefox */\r\n }\r\n\r\n .dijitInline {\r\n /* To inline block elements.\r\n\t\tSimilar to InlineBox below, but this has fewer side-effects in Moz.\r\n\t\tAlso, apparently works on a DIV as well as a FIELDSET.\r\n\t*/\r\n display: inline-block; /* webkit and FF3 */\r\n border: 0;\r\n padding: 0;\r\n vertical-align: middle;\r\n }\r\n\r\n table.dijitInline {\r\n /* To inline tables with a given width set */\r\n display: inline-table;\r\n box-sizing: content-box;\r\n }\r\n\r\n .dijitHidden {\r\n /* To hide unselected panes in StackContainer etc. */\r\n position: absolute; /* remove from normal document flow to simulate display: none */\r\n visibility: hidden; /* hide element from view, but don't break scrolling, see #18612 */\r\n }\r\n .dijitHidden * {\r\n visibility: hidden !important; /* hide visibility:visible descendants of class=dijitHidden nodes, see #18799 */\r\n }\r\n\r\n .dijitVisible {\r\n /* To show selected pane in StackContainer etc. */\r\n display: block !important; /* override user's display:none setting via style setting or indirectly via class */\r\n position: relative; /* to support setting width/height, see #2033 */\r\n visibility: visible;\r\n }\r\n\r\n .dj_ie6 .dijitComboBox .dijitInputContainer,\r\n .dijitInputContainer {\r\n /* for positioning of placeHolder */\r\n overflow: hidden;\r\n float: none !important; /* needed to squeeze the INPUT in */\r\n position: relative;\r\n }\r\n .dj_ie7 .dijitInputContainer {\r\n float: left !important; /* needed by IE to squeeze the INPUT in */\r\n clear: left;\r\n display: inline-block !important; /* to fix wrong text alignment in textdir=rtl text box */\r\n }\r\n\r\n .dj_ie .dijitSelect input,\r\n .dj_ie input.dijitTextBox,\r\n .dj_ie .dijitTextBox input {\r\n font-size: 100%;\r\n }\r\n .dijitSelect .dijitButtonText {\r\n float: left;\r\n vertical-align: top;\r\n }\r\n table.dijitSelect {\r\n padding: 0 !important; /* messes up border alignment */\r\n border-collapse: separate; /* so jsfiddle works with Normalized CSS checked */\r\n }\r\n .dijitTextBox .dijitSpinnerButtonContainer,\r\n .dijitTextBox .dijitArrowButtonContainer,\r\n .dijitValidationTextBox .dijitValidationContainer {\r\n float: right;\r\n text-align: center;\r\n }\r\n .dijitSelect input.dijitInputField,\r\n .dijitTextBox input.dijitInputField {\r\n /* override unreasonable user styling of buttons and icons */\r\n padding-left: 0 !important;\r\n padding-right: 0 !important;\r\n }\r\n .dijitValidationTextBox .dijitValidationContainer {\r\n display: none;\r\n }\r\n\r\n .dijitTeeny {\r\n font-size: 1px;\r\n line-height: 1px;\r\n }\r\n\r\n .dijitOffScreen {\r\n /* these class attributes should supersede any inline positioning style */\r\n position: absolute !important;\r\n left: -10000px !important;\r\n top: -10000px !important;\r\n }\r\n\r\n /*\r\n * Popup items have a wrapper div (dijitPopup)\r\n * with the real popup inside, and maybe an iframe too\r\n */\r\n .dijitPopup {\r\n position: absolute;\r\n background-color: transparent;\r\n margin: 0;\r\n border: 0;\r\n padding: 0;\r\n -webkit-overflow-scrolling: touch;\r\n }\r\n\r\n .dijitPositionOnly {\r\n /* Null out all position-related properties */\r\n padding: 0 !important;\r\n border: 0 !important;\r\n background-color: transparent !important;\r\n background-image: none !important;\r\n height: auto !important;\r\n width: auto !important;\r\n }\r\n\r\n .dijitNonPositionOnly {\r\n /* Null position-related properties */\r\n float: none !important;\r\n position: static !important;\r\n margin: 0 0 0 0 !important;\r\n vertical-align: middle !important;\r\n }\r\n\r\n .dijitBackgroundIframe {\r\n /* iframe used to prevent problems with PDF or other applets overlaying menus etc */\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n z-index: -1;\r\n border: 0;\r\n padding: 0;\r\n margin: 0;\r\n }\r\n\r\n .dijitDisplayNone {\r\n /* hide something. Use this as a class rather than element.style so another class can override */\r\n display: none !important;\r\n }\r\n\r\n .dijitContainer {\r\n /* for all layout containers */\r\n overflow: hidden; /* need on IE so something can be reduced in size, and so scrollbars aren't temporarily displayed when resizing */\r\n }\r\n\r\n /****\r\n\t\tA11Y\r\n ****/\r\n .dj_a11y .dijitIcon,\r\n .dj_a11y div.dijitArrowButtonInner, /* is this only for Spinner? if so, it should be deleted */\r\n .dj_a11y span.dijitArrowButtonInner,\r\n .dj_a11y img.dijitArrowButtonInner,\r\n .dj_a11y .dijitCalendarIncrementControl,\r\n .dj_a11y .dijitTreeExpando {\r\n /* hide icon nodes in high contrast mode; when necessary they will be replaced by character equivalents\r\n\t * exception for input.dijitArrowButtonInner, because the icon and character are controlled by the same node */\r\n display: none;\r\n }\r\n .dijitSpinner div.dijitArrowButtonInner {\r\n display: block; /* override previous rule */\r\n }\r\n\r\n .dj_a11y .dijitA11ySideArrow {\r\n display: inline !important; /* display text instead */\r\n cursor: pointer;\r\n }\r\n\r\n /*\r\n * Since we can't use shading in a11y mode, and since the underline indicates today's date,\r\n * use a border to show the selected date.\r\n * Avoid screen jitter when switching selected date by compensating for the selected node's\r\n * border w/padding on other nodes.\r\n */\r\n .dj_a11y .dijitCalendarDateLabel {\r\n padding: 1px;\r\n border: 0px !important;\r\n }\r\n .dj_a11y .dijitCalendarSelectedDate .dijitCalendarDateLabel {\r\n border-style: solid !important;\r\n border-width: 1px !important;\r\n padding: 0;\r\n }\r\n .dj_a11y .dijitCalendarDateTemplate {\r\n padding-bottom: 0.1em !important; /* otherwise bottom border doesn't appear on IE */\r\n border: 0px !important;\r\n }\r\n .dj_a11y .dijitButtonNode {\r\n border: black outset medium !important;\r\n\r\n /* In claro, hovering a toolbar button reduces padding and adds a border.\r\n\t * Not needed in a11y mode since Toolbar buttons always have a border.\r\n\t */\r\n padding: 0 !important;\r\n }\r\n .dj_a11y .dijitArrowButton {\r\n padding: 0 !important;\r\n }\r\n\r\n .dj_a11y .dijitButtonContents {\r\n margin: 0.15em; /* Margin needed to make focus outline visible */\r\n }\r\n\r\n .dj_a11y .dijitTextBoxReadOnly .dijitInputField,\r\n .dj_a11y .dijitTextBoxReadOnly .dijitButtonNode {\r\n border-style: outset !important;\r\n border-width: medium !important;\r\n border-color: #999 !important;\r\n color: #999 !important;\r\n }\r\n\r\n /* button inner contents - labels, icons etc. */\r\n .dijitButtonNode * {\r\n vertical-align: middle;\r\n }\r\n .dijitSelect .dijitArrowButtonInner,\r\n .dijitButtonNode .dijitArrowButtonInner {\r\n /* the arrow icon node */\r\n background: no-repeat center;\r\n width: 12px;\r\n height: 12px;\r\n direction: ltr; /* needed by IE/RTL */\r\n }\r\n\r\n /****\r\n\t3-element borders: ( dijitLeft + dijitStretch + dijitRight )\r\n\tThese were added for rounded corners on dijit.form.*Button but never actually used.\r\n ****/\r\n\r\n .dijitLeft {\r\n /* Left part of a 3-element border */\r\n background-position: left top;\r\n background-repeat: no-repeat;\r\n }\r\n\r\n .dijitStretch {\r\n /* Middle (stretchy) part of a 3-element border */\r\n white-space: nowrap; /* MOW: move somewhere else */\r\n background-repeat: repeat-x;\r\n }\r\n\r\n .dijitRight {\r\n /* Right part of a 3-element border */\r\n background-position: right top;\r\n background-repeat: no-repeat;\r\n }\r\n\r\n /* Buttons */\r\n .dj_gecko .dj_a11y .dijitButtonDisabled .dijitButtonNode {\r\n opacity: 0.5;\r\n }\r\n\r\n .dijitToggleButton,\r\n .dijitButton,\r\n .dijitDropDownButton,\r\n .dijitComboButton {\r\n /* outside of button */\r\n margin: 0.2em;\r\n vertical-align: middle;\r\n }\r\n\r\n .dijitButtonContents {\r\n display: block; /* to make focus border rectangular */\r\n }\r\n td.dijitButtonContents {\r\n display: table-cell; /* but don't affect Select, ComboButton */\r\n }\r\n\r\n .dijitButtonNode img {\r\n /* make text and images line up cleanly */\r\n vertical-align: middle;\r\n /*margin-bottom:.2em;*/\r\n }\r\n\r\n .dijitToolbar .dijitComboButton {\r\n /* because Toolbar only draws a border around the hovered thing */\r\n border-collapse: separate;\r\n }\r\n\r\n .dijitToolbar .dijitToggleButton,\r\n .dijitToolbar .dijitButton,\r\n .dijitToolbar .dijitDropDownButton,\r\n .dijitToolbar .dijitComboButton {\r\n margin: 0;\r\n }\r\n\r\n .dijitToolbar .dijitButtonContents {\r\n /* just because it used to be this way */\r\n padding: 1px 2px;\r\n }\r\n\r\n .dj_webkit .dijitToolbar .dijitDropDownButton {\r\n padding-left: 0.3em;\r\n }\r\n .dj_gecko .dijitToolbar .dijitButtonNode::-moz-focus-inner {\r\n padding: 0;\r\n }\r\n\r\n .dijitSelect {\r\n border: 1px solid gray;\r\n }\r\n .dijitButtonNode {\r\n /* Node that is acting as a button -- may or may not be a BUTTON element */\r\n border: 1px solid gray;\r\n margin: 0;\r\n line-height: normal;\r\n vertical-align: middle;\r\n text-align: center;\r\n white-space: nowrap;\r\n }\r\n .dj_webkit .dijitSpinner .dijitSpinnerButtonContainer {\r\n /* apparent WebKit bug where messing with the font coupled with line-height:normal X 2 (dijitReset & dijitButtonNode)\r\n\tcan be different than just a single line-height:normal, visible in InlineEditBox/Spinner */\r\n line-height: inherit;\r\n }\r\n .dijitTextBox .dijitButtonNode {\r\n border-width: 0;\r\n }\r\n\r\n .dijitSelect,\r\n .dijitSelect *,\r\n .dijitButtonNode,\r\n .dijitButtonNode * {\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n\r\n .dj_ie .dijitButtonNode {\r\n /* ensure hasLayout */\r\n zoom: 1;\r\n }\r\n\r\n .dj_ie .dijitButtonNode button {\r\n /*\r\n\t\tdisgusting hack to get rid of spurious padding around button elements\r\n\t\ton IE. MSIE is truly the web's boat anchor.\r\n\t*/\r\n overflow: visible;\r\n }\r\n\r\n div.dijitArrowButton {\r\n float: right;\r\n }\r\n\r\n /******\r\n\tTextBox related.\r\n\tEverything that has an \r\n*******/\r\n\r\n .dijitTextBox {\r\n border: solid black 1px;\r\n width: 15em; /* need to set default size on outer node since inner nodes say and . user can override */\r\n vertical-align: middle;\r\n }\r\n\r\n .dijitTextBoxReadOnly,\r\n .dijitTextBoxDisabled {\r\n color: gray;\r\n }\r\n .dj_safari .dijitTextBoxDisabled input {\r\n color: #b0b0b0; /* because Safari lightens disabled input/textarea no matter what color you specify */\r\n }\r\n .dj_safari textarea.dijitTextAreaDisabled {\r\n color: #333; /* because Safari lightens disabled input/textarea no matter what color you specify */\r\n }\r\n .dj_gecko .dijitTextBoxReadOnly input.dijitInputField, /* disable arrow and validation presentation inputs but allow real input for text selection */\r\n .dj_gecko .dijitTextBoxDisabled input {\r\n -moz-user-input: none; /* prevent focus of disabled textbox buttons */\r\n }\r\n\r\n .dijitPlaceHolder {\r\n /* hint text that appears in a textbox until user starts typing */\r\n color: #aaaaaa;\r\n font-style: italic;\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n white-space: nowrap;\r\n pointer-events: none; /* so cut/paste context menu shows up when right clicking */\r\n }\r\n\r\n .dijitTimeTextBox {\r\n width: 8em;\r\n }\r\n\r\n /* rules for webkit to deal with fuzzy blue focus border */\r\n .dijitTextBox input:focus {\r\n outline: none; /* blue fuzzy line looks wrong on combobox or something w/validation icon showing */\r\n }\r\n .dijitTextBoxFocused {\r\n outline: 5px -webkit-focus-ring-color;\r\n }\r\n\r\n .dijitSelect input,\r\n .dijitTextBox input {\r\n float: left; /* needed by IE to remove secret margin */\r\n }\r\n .dj_ie6 input.dijitTextBox,\r\n .dj_ie6 .dijitTextBox input {\r\n float: none;\r\n }\r\n .dijitInputInner {\r\n /* for when an is embedded inside an inline-block
with a size and border */\r\n border: 0 !important;\r\n background-color: transparent !important;\r\n width: 100% !important;\r\n /* IE dislikes horizontal tweaking combined with width:100% so punish everyone for consistency */\r\n padding-left: 0 !important;\r\n padding-right: 0 !important;\r\n margin-left: 0 !important;\r\n margin-right: 0 !important;\r\n }\r\n .dj_a11y .dijitTextBox input {\r\n margin: 0 !important;\r\n }\r\n .dijitValidationTextBoxError input.dijitValidationInner,\r\n .dijitSelect input,\r\n .dijitTextBox input.dijitArrowButtonInner {\r\n /* used to display arrow icon/validation icon, or in arrow character in high contrast mode.\r\n\t * The css below is a trick to hide the character in non-high-contrast mode\r\n\t */\r\n text-indent: -2em !important;\r\n direction: ltr !important;\r\n text-align: left !important;\r\n height: auto !important;\r\n }\r\n .dj_ie .dijitSelect input,\r\n .dj_ie .dijitTextBox input,\r\n .dj_ie input.dijitTextBox {\r\n overflow-y: visible; /* inputs need help expanding when padding is added or line-height is adjusted */\r\n line-height: normal; /* strict mode */\r\n }\r\n .dijitSelect .dijitSelectLabel span {\r\n line-height: 100%;\r\n }\r\n .dj_ie .dijitSelect .dijitSelectLabel {\r\n line-height: normal;\r\n }\r\n .dj_ie6 .dijitSelect .dijitSelectLabel,\r\n .dj_ie7 .dijitSelect .dijitSelectLabel,\r\n .dj_ie8 .dijitSelect .dijitSelectLabel,\r\n .dj_iequirks .dijitSelect .dijitSelectLabel,\r\n .dijitSelect td,\r\n .dj_ie6 .dijitSelect input,\r\n .dj_iequirks .dijitSelect input,\r\n .dj_ie6 .dijitSelect .dijitValidationContainer,\r\n .dj_ie6 .dijitTextBox input,\r\n .dj_ie6 input.dijitTextBox,\r\n .dj_iequirks .dijitTextBox input.dijitValidationInner,\r\n .dj_iequirks .dijitTextBox input.dijitArrowButtonInner,\r\n .dj_iequirks .dijitTextBox input.dijitSpinnerButtonInner,\r\n .dj_iequirks .dijitTextBox input.dijitInputInner,\r\n .dj_iequirks input.dijitTextBox {\r\n line-height: 100%; /* IE7 problem where the icon is vertically way too low w/o this */\r\n }\r\n .dj_a11y input.dijitValidationInner,\r\n .dj_a11y input.dijitArrowButtonInner {\r\n /* (in high contrast mode) revert rules from above so character displays */\r\n text-indent: 0 !important;\r\n width: 1em !important;\r\n color: black !important;\r\n }\r\n .dijitValidationTextBoxError .dijitValidationContainer {\r\n display: inline;\r\n cursor: default;\r\n }\r\n\r\n /* ComboBox & Spinner */\r\n\r\n .dijitSpinner .dijitSpinnerButtonContainer,\r\n .dijitComboBox .dijitArrowButtonContainer {\r\n /* dividing line between input area and up/down button(s) for ComboBox and Spinner */\r\n border-width: 0 0 0 1px !important; /* !important needed due to wayward \".theme .dijitButtonNode\" rules */\r\n }\r\n .dj_a11y .dijitSelect .dijitArrowButtonContainer,\r\n .dijitToolbar .dijitComboBox .dijitArrowButtonContainer {\r\n /* overrides above rule plus mirror-image rule in dijit_rtl.css to have no divider when ComboBox in Toolbar */\r\n border-width: 0 !important;\r\n }\r\n\r\n .dijitComboBoxMenu {\r\n /* Drop down menu is implemented as
  • ... but we don't want circles before each item */\r\n list-style-type: none;\r\n }\r\n .dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode {\r\n /* dividing line between input area and up/down button(s) for ComboBox and Spinner */\r\n border-width: 0;\r\n }\r\n .dj_ie .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode {\r\n clear: both; /* IE workaround */\r\n }\r\n\r\n .dj_ie .dijitToolbar .dijitComboBox {\r\n /* make combobox buttons align properly with other buttons in a toolbar */\r\n vertical-align: middle;\r\n }\r\n\r\n /* Spinner */\r\n\r\n .dijitTextBox .dijitSpinnerButtonContainer {\r\n width: 1em;\r\n position: relative !important;\r\n overflow: hidden;\r\n }\r\n .dijitSpinner .dijitSpinnerButtonInner {\r\n width: 1em;\r\n visibility: hidden !important; /* just a sizing element */\r\n overflow-x: hidden;\r\n }\r\n .dijitComboBox .dijitButtonNode,\r\n .dijitSpinnerButtonContainer .dijitButtonNode {\r\n border-width: 0;\r\n }\r\n .dj_a11y .dijitSpinnerButtonContainer .dijitButtonNode {\r\n border-width: 0px !important;\r\n border-style: solid !important;\r\n }\r\n .dj_a11y .dijitTextBox .dijitSpinnerButtonContainer,\r\n .dj_a11y .dijitSpinner .dijitArrowButtonInner,\r\n .dj_a11y .dijitSpinnerButtonContainer input {\r\n width: 1em !important;\r\n }\r\n .dj_a11y .dijitSpinner .dijitArrowButtonInner {\r\n margin: 0 auto !important; /* should auto-center */\r\n }\r\n .dj_ie .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\r\n padding-left: 0.3em !important;\r\n padding-right: 0.3em !important;\r\n margin-left: 0.3em !important;\r\n margin-right: 0.3em !important;\r\n width: 1.4em !important;\r\n }\r\n .dj_ie7 .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\r\n padding-left: 0 !important; /* manually center INPUT: character is .5em and total width = 1em */\r\n padding-right: 0 !important;\r\n width: 1em !important;\r\n }\r\n .dj_ie6 .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\r\n margin-left: 0.1em !important;\r\n margin-right: 0.1em !important;\r\n width: 1em !important;\r\n }\r\n .dj_iequirks .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\r\n margin-left: 0 !important;\r\n margin-right: 0 !important;\r\n width: 2em !important;\r\n }\r\n .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\r\n /* note: .dijitInputLayoutContainer makes this rule override .dijitArrowButton settings\r\n\t * for dijit.form.Button\r\n\t */\r\n padding: 0;\r\n position: absolute !important;\r\n right: 0;\r\n float: none;\r\n height: 50%;\r\n width: 100%;\r\n bottom: auto;\r\n left: 0;\r\n right: auto;\r\n }\r\n .dj_iequirks .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\r\n width: auto;\r\n }\r\n .dj_a11y .dijitSpinnerButtonContainer .dijitArrowButton {\r\n overflow: visible !important;\r\n }\r\n .dijitSpinner .dijitSpinnerButtonContainer .dijitDownArrowButton {\r\n top: 50%;\r\n border-top-width: 1px !important;\r\n }\r\n .dijitSpinner .dijitSpinnerButtonContainer .dijitUpArrowButton {\r\n top: 0;\r\n }\r\n .dijitSpinner .dijitArrowButtonInner {\r\n margin: auto;\r\n overflow-x: hidden;\r\n height: 100% !important;\r\n }\r\n .dj_iequirks .dijitSpinner .dijitArrowButtonInner {\r\n height: auto !important;\r\n }\r\n .dijitSpinner .dijitArrowButtonInner .dijitInputField {\r\n transform: scale(0.5);\r\n transform-origin: left top;\r\n padding-top: 0;\r\n padding-bottom: 0;\r\n padding-left: 0 !important;\r\n padding-right: 0 !important;\r\n width: 100%;\r\n visibility: hidden;\r\n }\r\n .dj_ie .dijitSpinner .dijitArrowButtonInner .dijitInputField {\r\n zoom: 50%; /* emulate transform: scale(0.5) */\r\n }\r\n .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButtonInner {\r\n overflow: hidden;\r\n }\r\n\r\n .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\r\n width: 100%;\r\n }\r\n .dj_iequirks .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\r\n width: 1em; /* matches .dj_a11y .dijitTextBox .dijitSpinnerButtonContainer rule - 100% is the whole screen width in quirks */\r\n }\r\n .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\r\n vertical-align: top;\r\n visibility: visible;\r\n }\r\n .dj_a11y .dijitSpinnerButtonContainer {\r\n width: 1em;\r\n }\r\n\r\n /****\r\n\t\tdijit.form.CheckBox\r\n \t &\r\n \t\tdijit.form.RadioButton\r\n ****/\r\n\r\n .dijitCheckBox,\r\n .dijitRadio,\r\n .dijitCheckBoxInput {\r\n padding: 0;\r\n border: 0;\r\n width: 16px;\r\n height: 16px;\r\n background-position: center center;\r\n background-repeat: no-repeat;\r\n overflow: hidden;\r\n }\r\n\r\n .dijitCheckBox input,\r\n .dijitRadio input {\r\n margin: 0;\r\n padding: 0;\r\n display: block;\r\n }\r\n\r\n .dijitCheckBoxInput {\r\n /* place the actual input on top, but invisible */\r\n opacity: 0;\r\n }\r\n\r\n .dj_ie .dijitCheckBoxInput {\r\n filter: alpha(opacity=0);\r\n }\r\n\r\n .dj_a11y .dijitCheckBox,\r\n .dj_a11y .dijitRadio {\r\n /* in a11y mode we display the native checkbox (not the icon), so don't restrict the size */\r\n width: auto !important;\r\n height: auto !important;\r\n }\r\n .dj_a11y .dijitCheckBoxInput {\r\n opacity: 1;\r\n filter: none;\r\n width: auto;\r\n height: auto;\r\n }\r\n\r\n .dj_a11y .dijitFocusedLabel {\r\n /* for checkboxes or radio buttons in high contrast mode, use border rather than outline to indicate focus (outline does not work in FF)*/\r\n border: 1px dotted;\r\n outline: 0px !important;\r\n }\r\n\r\n /****\r\n\t\tdijit.ProgressBar\r\n ****/\r\n\r\n .dijitProgressBar {\r\n z-index: 0; /* so z-index settings below have no effect outside of the ProgressBar */\r\n }\r\n .dijitProgressBarEmpty {\r\n /* outer container and background of the bar that's not finished yet*/\r\n position: relative;\r\n overflow: hidden;\r\n border: 1px solid black; /* a11y: border necessary for high-contrast mode */\r\n z-index: 0; /* establish a stacking context for this progress bar */\r\n }\r\n\r\n .dijitProgressBarFull {\r\n /* outer container for background of bar that is finished */\r\n position: absolute;\r\n overflow: hidden;\r\n z-index: -1;\r\n top: 0;\r\n width: 100%;\r\n }\r\n .dj_ie6 .dijitProgressBarFull {\r\n height: 1.6em;\r\n }\r\n\r\n .dijitProgressBarTile {\r\n /* inner container for finished portion */\r\n position: absolute;\r\n overflow: hidden;\r\n top: 0;\r\n left: 0;\r\n bottom: 0;\r\n right: 0;\r\n margin: 0;\r\n padding: 0;\r\n width: 100%; /* needed for IE/quirks */\r\n height: auto;\r\n background-color: #aaa;\r\n background-attachment: fixed;\r\n }\r\n\r\n .dj_a11y .dijitProgressBarTile {\r\n /* a11y: The border provides visibility in high-contrast mode */\r\n border-width: 2px;\r\n border-style: solid;\r\n background-color: transparent !important;\r\n }\r\n\r\n .dj_ie6 .dijitProgressBarTile {\r\n /* width:auto works in IE6 with position:static but not position:absolute */\r\n position: static;\r\n /* height:auto or 100% does not work in IE6 */\r\n height: 1.6em;\r\n }\r\n\r\n .dijitProgressBarIndeterminate .dijitProgressBarTile {\r\n /* animated gif for 'indeterminate' mode */\r\n }\r\n\r\n .dijitProgressBarIndeterminateHighContrastImage {\r\n display: none;\r\n }\r\n\r\n .dj_a11y .dijitProgressBarIndeterminate .dijitProgressBarIndeterminateHighContrastImage {\r\n display: block;\r\n position: absolute;\r\n top: 0;\r\n bottom: 0;\r\n margin: 0;\r\n padding: 0;\r\n width: 100%;\r\n height: auto;\r\n }\r\n\r\n .dijitProgressBarLabel {\r\n display: block;\r\n position: static;\r\n width: 100%;\r\n text-align: center;\r\n background-color: transparent !important;\r\n }\r\n\r\n /****\r\n\t\tdijit.Tooltip\r\n ****/\r\n\r\n .dijitTooltip {\r\n position: absolute;\r\n z-index: 2000;\r\n display: block;\r\n /* make visible but off screen */\r\n left: 0;\r\n top: -10000px;\r\n overflow: visible;\r\n }\r\n\r\n .dijitTooltipContainer {\r\n border: solid black 2px;\r\n background: #b8b5b5;\r\n color: black;\r\n font-size: small;\r\n }\r\n\r\n .dijitTooltipFocusNode {\r\n padding: 2px 2px 2px 2px;\r\n }\r\n\r\n .dijitTooltipConnector {\r\n position: absolute;\r\n }\r\n .dj_a11y .dijitTooltipConnector {\r\n display: none; /* won't show b/c it's background-image; hide to avoid border gap */\r\n }\r\n\r\n .dijitTooltipData {\r\n display: none;\r\n }\r\n\r\n /* Layout widgets. This is essential CSS to make layout work (it isn't \"styling\" CSS)\r\n make sure that the position:absolute in dijitAlign* overrides other classes */\r\n\r\n .dijitLayoutContainer {\r\n position: relative;\r\n display: block;\r\n overflow: hidden;\r\n }\r\n\r\n .dijitAlignTop,\r\n .dijitAlignBottom,\r\n .dijitAlignLeft,\r\n .dijitAlignRight {\r\n position: absolute;\r\n overflow: hidden;\r\n }\r\n\r\n body .dijitAlignClient {\r\n position: absolute;\r\n }\r\n\r\n /*\r\n * BorderContainer\r\n *\r\n * .dijitBorderContainer is a stylized layout where panes have border and margin.\r\n * .dijitBorderContainerNoGutter is a raw layout.\r\n */\r\n .dijitBorderContainer,\r\n .dijitBorderContainerNoGutter {\r\n position: relative;\r\n overflow: hidden;\r\n z-index: 0; /* so z-index settings below have no effect outside of the BorderContainer */\r\n }\r\n\r\n .dijitBorderContainerPane,\r\n .dijitBorderContainerNoGutterPane {\r\n position: absolute !important; /* !important to override position:relative in dijitTabContainer etc. */\r\n z-index: 2; /* above the splitters so that off-by-one browser errors don't cover up border of pane */\r\n }\r\n\r\n .dijitBorderContainer > .dijitTextArea {\r\n /* On Safari, for SimpleTextArea inside a BorderContainer,\r\n\t\tdon't want to display the grip to resize */\r\n resize: none;\r\n }\r\n\r\n .dijitGutter {\r\n /* gutter is just a place holder for empty space between panes in BorderContainer */\r\n position: absolute;\r\n font-size: 1px; /* needed by IE6 even though div is empty, otherwise goes to 15px */\r\n }\r\n\r\n /* SplitContainer\r\n\r\n\t'V' == container that splits vertically (up/down)\r\n\t'H' = horizontal (left/right)\r\n*/\r\n\r\n .dijitSplitter {\r\n position: absolute;\r\n overflow: hidden;\r\n z-index: 10; /* above the panes so that splitter focus is visible on FF, see #7583*/\r\n background-color: #fff;\r\n border-color: gray;\r\n border-style: solid;\r\n border-width: 0;\r\n }\r\n .dj_ie .dijitSplitter {\r\n z-index: 1; /* behind the panes so that pane borders aren't obscured see test_Gui.html/[14392] */\r\n }\r\n\r\n .dijitSplitterActive {\r\n z-index: 11 !important;\r\n }\r\n\r\n .dijitSplitterCover {\r\n position: absolute;\r\n z-index: -1;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n }\r\n\r\n .dijitSplitterCoverActive {\r\n z-index: 3 !important;\r\n }\r\n\r\n /* #6945: stop mouse events */\r\n .dj_ie .dijitSplitterCover {\r\n background: white;\r\n opacity: 0;\r\n }\r\n .dj_ie6 .dijitSplitterCover,\r\n .dj_ie7 .dijitSplitterCover,\r\n .dj_ie8 .dijitSplitterCover {\r\n filter: alpha(opacity=0);\r\n }\r\n\r\n .dijitSplitterH {\r\n height: 7px;\r\n border-top: 1px;\r\n border-bottom: 1px;\r\n cursor: row-resize;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n .dijitSplitterV {\r\n width: 7px;\r\n border-left: 1px;\r\n border-right: 1px;\r\n cursor: col-resize;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n .dijitSplitContainer {\r\n position: relative;\r\n overflow: hidden;\r\n display: block;\r\n }\r\n\r\n .dijitSplitPane {\r\n position: absolute;\r\n }\r\n\r\n .dijitSplitContainerSizerH,\r\n .dijitSplitContainerSizerV {\r\n position: absolute;\r\n font-size: 1px;\r\n background-color: ThreeDFace;\r\n border: 1px solid;\r\n border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;\r\n margin: 0;\r\n }\r\n\r\n .dijitSplitContainerSizerH .thumb,\r\n .dijitSplitterV .dijitSplitterThumb {\r\n overflow: hidden;\r\n position: absolute;\r\n top: 49%;\r\n }\r\n\r\n .dijitSplitContainerSizerV .thumb,\r\n .dijitSplitterH .dijitSplitterThumb {\r\n position: absolute;\r\n left: 49%;\r\n }\r\n\r\n .dijitSplitterShadow,\r\n .dijitSplitContainerVirtualSizerH,\r\n .dijitSplitContainerVirtualSizerV {\r\n font-size: 1px;\r\n background-color: ThreeDShadow;\r\n opacity: 0.5;\r\n margin: 0;\r\n }\r\n\r\n .dijitSplitContainerSizerH,\r\n .dijitSplitContainerVirtualSizerH {\r\n cursor: col-resize;\r\n }\r\n\r\n .dijitSplitContainerSizerV,\r\n .dijitSplitContainerVirtualSizerV {\r\n cursor: row-resize;\r\n }\r\n\r\n .dj_a11y .dijitSplitterH {\r\n border-top: 1px solid #d3d3d3 !important;\r\n border-bottom: 1px solid #d3d3d3 !important;\r\n }\r\n .dj_a11y .dijitSplitterV {\r\n border-left: 1px solid #d3d3d3 !important;\r\n border-right: 1px solid #d3d3d3 !important;\r\n }\r\n\r\n /* ContentPane */\r\n\r\n .dijitContentPane {\r\n display: block;\r\n overflow: auto; /* if we don't have this (or overflow:hidden), then Widget.resizeTo() doesn't make sense for ContentPane */\r\n -webkit-overflow-scrolling: touch;\r\n }\r\n\r\n .dijitContentPaneSingleChild {\r\n /*\r\n\t * if the ContentPane holds a single layout widget child which is being sized to match the content pane,\r\n\t * then the ContentPane should never get a scrollbar (but it does due to browser bugs, see #9449\r\n\t */\r\n overflow: hidden;\r\n }\r\n\r\n .dijitContentPaneLoading .dijitIconLoading,\r\n .dijitContentPaneError .dijitIconError {\r\n margin-right: 9px;\r\n }\r\n\r\n /* TitlePane and Fieldset */\r\n\r\n .dijitTitlePane {\r\n display: block;\r\n overflow: hidden;\r\n }\r\n .dijitFieldset {\r\n border: 1px solid gray;\r\n }\r\n .dijitTitlePaneTitle,\r\n .dijitFieldsetTitle {\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n .dijitTitlePaneTitleFixedOpen,\r\n .dijitTitlePaneTitleFixedClosed,\r\n .dijitFieldsetTitleFixedOpen,\r\n .dijitFieldsetTitleFixedClosed {\r\n /* TitlePane or Fieldset that cannot be toggled */\r\n cursor: default;\r\n }\r\n .dijitTitlePaneTitle * {\r\n vertical-align: middle;\r\n }\r\n .dijitTitlePane .dijitArrowNodeInner,\r\n .dijitFieldset .dijitArrowNodeInner {\r\n /* normally, hide arrow text in favor of icon */\r\n display: none;\r\n }\r\n .dj_a11y .dijitTitlePane .dijitArrowNodeInner,\r\n .dj_a11y .dijitFieldset .dijitArrowNodeInner {\r\n /* ... except in a11y mode, then show text arrow */\r\n display: inline;\r\n font-family: monospace; /* because - and + are different widths */\r\n }\r\n .dj_a11y .dijitTitlePane .dijitArrowNode,\r\n .dj_a11y .dijitFieldset .dijitArrowNode {\r\n /* ... and hide icon (TODO: just point dijitIcon class on the icon, and it hides automatically) */\r\n display: none;\r\n }\r\n .dijitTitlePaneTitleFixedOpen .dijitArrowNode,\r\n .dijitTitlePaneTitleFixedOpen .dijitArrowNodeInner,\r\n .dijitTitlePaneTitleFixedClosed .dijitArrowNode,\r\n .dijitTitlePaneTitleFixedClosed .dijitArrowNodeInner,\r\n .dijitFieldsetTitleFixedOpen .dijitArrowNode,\r\n .dijitFieldsetTitleFixedOpen .dijitArrowNodeInner,\r\n .dijitFieldsetTitleFixedClosed .dijitArrowNode,\r\n .dijitFieldsetTitleFixedClosed .dijitArrowNodeInner {\r\n /* don't show the open close icon or text arrow; it makes the user think the pane is closable */\r\n display: none !important; /* !important to override above a11y rules to show text arrow */\r\n }\r\n\r\n .dj_ie6 .dijitTitlePaneContentOuter,\r\n .dj_ie6 .dijitTitlePane .dijitTitlePaneTitle {\r\n /* force hasLayout to ensure borders etc, show up */\r\n zoom: 1;\r\n }\r\n\r\n /* Color Palette\r\n * Sizes designed so that table cell positions match icons in underlying image,\r\n * which appear at 20x20 intervals.\r\n */\r\n\r\n .dijitColorPalette {\r\n border: 1px solid #999;\r\n background: #fff;\r\n position: relative;\r\n }\r\n\r\n .dijitColorPalette .dijitPaletteTable {\r\n /* Table that holds the palette cells, and overlays image file with color swatches.\r\n\t * padding/margin to align table with image.\r\n\t */\r\n padding: 2px 3px 3px 3px;\r\n position: relative;\r\n overflow: hidden;\r\n outline: 0;\r\n border-collapse: separate;\r\n }\r\n .dj_ie6 .dijitColorPalette .dijitPaletteTable,\r\n .dj_ie7 .dijitColorPalette .dijitPaletteTable,\r\n .dj_iequirks .dijitColorPalette .dijitPaletteTable {\r\n /* using padding above so that focus border isn't cutoff on moz/webkit,\r\n\t * but using margin on IE because padding doesn't seem to work\r\n\t */\r\n padding: 0;\r\n margin: 2px 3px 3px 3px;\r\n }\r\n\r\n .dijitColorPalette .dijitPaletteCell {\r\n /* in the */\r\n font-size: 1px;\r\n vertical-align: middle;\r\n text-align: center;\r\n background: none;\r\n }\r\n .dijitColorPalette .dijitPaletteImg {\r\n /* Called dijitPaletteImg for back-compat, this actually wraps the color swatch with a border and padding */\r\n padding: 1px; /* white area between gray border and color swatch */\r\n border: 1px solid #999;\r\n margin: 2px 1px;\r\n cursor: default;\r\n font-size: 1px; /* prevent from getting bigger just to hold a character */\r\n }\r\n .dj_gecko .dijitColorPalette .dijitPaletteImg {\r\n padding-bottom: 0; /* workaround rendering glitch on FF, it adds an extra pixel at the bottom */\r\n }\r\n .dijitColorPalette .dijitColorPaletteSwatch {\r\n /* the actual part where the color is */\r\n width: 14px;\r\n height: 12px;\r\n }\r\n .dijitPaletteTable td {\r\n padding: 0;\r\n }\r\n .dijitColorPalette .dijitPaletteCell:hover .dijitPaletteImg {\r\n /* hovered color swatch */\r\n border: 1px solid #000;\r\n }\r\n\r\n .dijitColorPalette .dijitPaletteCell:active .dijitPaletteImg,\r\n .dijitColorPalette .dijitPaletteTable .dijitPaletteCellSelected .dijitPaletteImg {\r\n border: 2px solid #000;\r\n margin: 1px 0; /* reduce margin to compensate for increased border */\r\n }\r\n\r\n .dj_a11y .dijitColorPalette .dijitPaletteTable,\r\n .dj_a11y .dijitColorPalette .dijitPaletteTable * {\r\n /* table cells are to catch events, but the swatches are in the PaletteImg behind the table */\r\n background-color: transparent !important;\r\n }\r\n\r\n /* AccordionContainer */\r\n\r\n .dijitAccordionContainer {\r\n border: 1px solid #b7b7b7;\r\n border-top: 0 !important;\r\n }\r\n .dijitAccordionTitle {\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n .dijitAccordionTitleSelected {\r\n cursor: default;\r\n }\r\n\r\n /* images off, high-contrast mode styles */\r\n .dijitAccordionTitle .arrowTextUp,\r\n .dijitAccordionTitle .arrowTextDown {\r\n display: none;\r\n font-size: 0.65em;\r\n font-weight: normal !important;\r\n }\r\n\r\n .dj_a11y .dijitAccordionTitle .arrowTextUp,\r\n .dj_a11y .dijitAccordionTitleSelected .arrowTextDown {\r\n display: inline;\r\n }\r\n\r\n .dj_a11y .dijitAccordionTitleSelected .arrowTextUp {\r\n display: none;\r\n }\r\n\r\n .dijitAccordionChildWrapper {\r\n /* this is the node whose height is adjusted */\r\n overflow: hidden;\r\n }\r\n\r\n /* Calendar */\r\n\r\n .dijitCalendarContainer table {\r\n width: auto; /* in case user has specified a width for the TABLE nodes, see #10553 */\r\n clear: both; /* clear margin created for left/right month arrows; needed on IE10 for CalendarLite */\r\n }\r\n .dijitCalendarContainer th,\r\n .dijitCalendarContainer td {\r\n padding: 0;\r\n vertical-align: middle;\r\n }\r\n\r\n .dijitCalendarMonthContainer {\r\n text-align: center;\r\n }\r\n .dijitCalendarDecrementArrow {\r\n float: left;\r\n }\r\n .dijitCalendarIncrementArrow {\r\n float: right;\r\n }\r\n\r\n .dijitCalendarYearLabel {\r\n white-space: nowrap; /* make sure previous, current, and next year appear on same row */\r\n }\r\n\r\n .dijitCalendarNextYear {\r\n margin: 0 0 0 0.55em;\r\n }\r\n\r\n .dijitCalendarPreviousYear {\r\n margin: 0 0.55em 0 0;\r\n }\r\n\r\n .dijitCalendarIncrementControl {\r\n vertical-align: middle;\r\n }\r\n\r\n .dijitCalendarIncrementControl,\r\n .dijitCalendarDateTemplate,\r\n .dijitCalendarMonthLabel,\r\n .dijitCalendarPreviousYear,\r\n .dijitCalendarNextYear {\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n\r\n .dijitCalendarDisabledDate {\r\n color: gray;\r\n text-decoration: line-through;\r\n cursor: default;\r\n }\r\n\r\n .dijitSpacer {\r\n /* don't display it, but make it affect the width */\r\n position: relative;\r\n height: 1px;\r\n overflow: hidden;\r\n visibility: hidden;\r\n }\r\n\r\n /* Styling for month drop down list */\r\n\r\n .dijitCalendarMonthMenu .dijitCalendarMonthLabel {\r\n text-align: center;\r\n }\r\n\r\n /* Menu */\r\n\r\n .dijitMenu {\r\n border: 1px solid black;\r\n background-color: white;\r\n }\r\n .dijitMenuTable {\r\n border-collapse: collapse;\r\n border-width: 0;\r\n background-color: white;\r\n }\r\n\r\n /* workaround for webkit bug #8427, remove this when it is fixed upstream */\r\n .dj_webkit .dijitMenuTable td[colspan=\"2\"] {\r\n border-right: hidden;\r\n }\r\n\r\n .dijitMenuItem {\r\n text-align: left;\r\n white-space: nowrap;\r\n padding: 0.1em 0.2em;\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n\r\n /*\r\nNo need to show a focus border since it's obvious from the shading, and there's a .dj_a11y .dijitMenuItemSelected\r\nrule below that handles the high contrast case when there's no shading.\r\nHiding the focus border also works around webkit bug https://code.google.com/p/chromium/issues/detail?id=125779.\r\n*/\r\n .dijitMenuItem:focus {\r\n outline: none;\r\n }\r\n\r\n .dijitMenuPassive .dijitMenuItemHover,\r\n .dijitMenuItemSelected {\r\n /*\r\n\t * dijitMenuItemHover refers to actual mouse over\r\n\t * dijitMenuItemSelected is used after a menu has been \"activated\" by\r\n\t * clicking it, tabbing into it, or being opened from a parent menu,\r\n\t * and denotes that the menu item has focus or that focus is on a child\r\n\t * menu\r\n\t */\r\n background-color: black;\r\n color: white;\r\n }\r\n\r\n .dijitMenuItemIcon,\r\n .dijitMenuExpand {\r\n background-repeat: no-repeat;\r\n }\r\n\r\n .dijitMenuItemDisabled * {\r\n /* for a disabled menu item, just set it to mostly transparent */\r\n opacity: 0.5;\r\n cursor: default;\r\n }\r\n .dj_ie .dj_a11y .dijitMenuItemDisabled,\r\n .dj_ie .dj_a11y .dijitMenuItemDisabled *,\r\n .dj_ie .dijitMenuItemDisabled * {\r\n color: gray;\r\n filter: alpha(opacity=35);\r\n }\r\n\r\n .dijitMenuItemLabel {\r\n vertical-align: middle;\r\n }\r\n\r\n .dj_a11y .dijitMenuItemSelected {\r\n border: 1px dotted black !important; /* for 2.0 use outline instead, to prevent jitter */\r\n }\r\n\r\n .dj_a11y .dijitMenuItemSelected .dijitMenuItemLabel {\r\n border-width: 1px;\r\n border-style: solid;\r\n }\r\n .dj_ie8 .dj_a11y .dijitMenuItemLabel {\r\n position: static;\r\n }\r\n\r\n .dijitMenuExpandA11y {\r\n display: none;\r\n }\r\n .dj_a11y .dijitMenuExpandA11y {\r\n display: inline;\r\n }\r\n\r\n .dijitMenuSeparator td {\r\n border: 0;\r\n padding: 0;\r\n }\r\n\r\n /* separator can be two pixels -- set border of either one to 0 to have only one */\r\n .dijitMenuSeparatorTop {\r\n height: 50%;\r\n margin: 0;\r\n margin-top: 3px;\r\n font-size: 1px;\r\n }\r\n\r\n .dijitMenuSeparatorBottom {\r\n height: 50%;\r\n margin: 0;\r\n margin-bottom: 3px;\r\n font-size: 1px;\r\n }\r\n\r\n /* CheckedMenuItem and RadioMenuItem */\r\n .dijitMenuItemIconChar {\r\n display: none; /* don't display except in high contrast mode */\r\n visibility: hidden; /* for high contrast mode when menuitem is unchecked: leave space for when it is checked */\r\n }\r\n .dj_a11y .dijitMenuItemIconChar {\r\n display: inline; /* display character in high contrast mode, since icon doesn't show */\r\n }\r\n .dijitCheckedMenuItemChecked .dijitMenuItemIconChar,\r\n .dijitRadioMenuItemChecked .dijitMenuItemIconChar {\r\n visibility: visible; /* menuitem is checked */\r\n }\r\n .dj_ie .dj_a11y .dijitMenuBar .dijitMenuItem {\r\n /* so bottom border of MenuBar appears on IE7 in high-contrast mode */\r\n margin: 0;\r\n }\r\n\r\n /* StackContainer */\r\n\r\n .dijitStackController .dijitToggleButtonChecked * {\r\n cursor: default; /* because pressing it has no effect */\r\n }\r\n\r\n /***\r\nTabContainer\r\n\r\nMain class hierarchy:\r\n\r\n.dijitTabContainer - the whole TabContainer\r\n .dijitTabController / .dijitTabListContainer-top - wrapper for tab buttons, scroll buttons\r\n\t .dijitTabListWrapper / .dijitTabContainerTopStrip - outer wrapper for tab buttons (normal width)\r\n\t\t.nowrapTabStrip / .dijitTabContainerTop-tabs - inner wrapper for tab buttons (50K width)\r\n .dijitTabPaneWrapper - wrapper for content panes, has all borders except the one between content and tabs\r\n***/\r\n\r\n .dijitTabContainer {\r\n z-index: 0; /* so z-index settings below have no effect outside of the TabContainer */\r\n overflow: visible; /* prevent off-by-one-pixel errors from hiding bottom border (opposite tab labels) */\r\n }\r\n .dj_ie6 .dijitTabContainer {\r\n /* workaround IE6 problem when tall content overflows TabContainer, see editor/test_FullScreen.html */\r\n overflow: hidden;\r\n }\r\n .dijitTabContainerNoLayout {\r\n width: 100%; /* otherwise ScrollingTabController goes to 50K pixels wide */\r\n }\r\n\r\n .dijitTabContainerBottom-tabs,\r\n .dijitTabContainerTop-tabs,\r\n .dijitTabContainerLeft-tabs,\r\n .dijitTabContainerRight-tabs {\r\n z-index: 1;\r\n overflow: visible !important; /* so tabs can cover up border adjacent to container */\r\n }\r\n\r\n .dijitTabController {\r\n z-index: 1;\r\n }\r\n .dijitTabContainerBottom-container,\r\n .dijitTabContainerTop-container,\r\n .dijitTabContainerLeft-container,\r\n .dijitTabContainerRight-container {\r\n z-index: 0;\r\n overflow: hidden;\r\n border: 1px solid black;\r\n }\r\n .nowrapTabStrip {\r\n width: 50000px;\r\n display: block;\r\n position: relative;\r\n text-align: left; /* just in case ancestor has non-standard setting */\r\n z-index: 1;\r\n }\r\n .dijitTabListWrapper {\r\n overflow: hidden;\r\n z-index: 1;\r\n }\r\n\r\n .dj_a11y .tabStripButton img {\r\n /* hide the icons (or rather the empty space where they normally appear) because text will appear instead */\r\n display: none;\r\n }\r\n\r\n .dijitTabContainerTop-tabs {\r\n border-bottom: 1px solid black;\r\n }\r\n .dijitTabContainerTop-container {\r\n border-top: 0;\r\n }\r\n\r\n .dijitTabContainerLeft-tabs {\r\n border-right: 1px solid black;\r\n float: left; /* needed for IE7 RTL mode */\r\n }\r\n .dijitTabContainerLeft-container {\r\n border-left: 0;\r\n }\r\n\r\n .dijitTabContainerBottom-tabs {\r\n border-top: 1px solid black;\r\n }\r\n .dijitTabContainerBottom-container {\r\n border-bottom: 0;\r\n }\r\n\r\n .dijitTabContainerRight-tabs {\r\n border-left: 1px solid black;\r\n float: left; /* needed for IE7 RTL mode */\r\n }\r\n .dijitTabContainerRight-container {\r\n border-right: 0;\r\n }\r\n\r\n div.dijitTabDisabled,\r\n .dj_ie div.dijitTabDisabled {\r\n cursor: auto;\r\n }\r\n\r\n .dijitTab {\r\n position: relative;\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n white-space: nowrap;\r\n z-index: 3;\r\n }\r\n .dijitTab * {\r\n /* make tab icons and close icon line up w/text */\r\n vertical-align: middle;\r\n }\r\n .dijitTabChecked {\r\n cursor: default; /* because clicking will have no effect */\r\n }\r\n\r\n .dijitTabContainerTop-tabs .dijitTab {\r\n top: 1px; /* to overlap border on .dijitTabContainerTop-tabs */\r\n }\r\n .dijitTabContainerBottom-tabs .dijitTab {\r\n top: -1px; /* to overlap border on .dijitTabContainerBottom-tabs */\r\n }\r\n .dijitTabContainerLeft-tabs .dijitTab {\r\n left: 1px; /* to overlap border on .dijitTabContainerLeft-tabs */\r\n }\r\n .dijitTabContainerRight-tabs .dijitTab {\r\n left: -1px; /* to overlap border on .dijitTabContainerRight-tabs */\r\n }\r\n\r\n .dijitTabContainerTop-tabs .dijitTab,\r\n .dijitTabContainerBottom-tabs .dijitTab {\r\n /* Inline-block */\r\n display: inline-block; /* webkit and FF3 */\r\n }\r\n\r\n .tabStripButton {\r\n z-index: 12;\r\n }\r\n\r\n .dijitTabButtonDisabled .tabStripButton {\r\n display: none;\r\n }\r\n\r\n .dijitTabCloseButton {\r\n margin-left: 1em;\r\n }\r\n\r\n .dijitTabCloseText {\r\n display: none;\r\n }\r\n\r\n .dijitTab .tabLabel {\r\n /* make sure tabs w/close button and w/out close button are same height, even w/small (<15px) font.\r\n\t * assumes <=15px height for close button icon.\r\n\t */\r\n min-height: 15px;\r\n display: inline-block;\r\n }\r\n .dijitNoIcon {\r\n /* applied to / node when there is no icon specified */\r\n display: none;\r\n }\r\n .dj_ie6 .dijitTab .dijitNoIcon {\r\n /* because min-height (on .tabLabel, above) doesn't work on IE6 */\r\n display: inline;\r\n height: 15px;\r\n width: 1px;\r\n }\r\n\r\n /* images off, high-contrast mode styles */\r\n\r\n .dj_a11y .dijitTabCloseButton {\r\n background-image: none !important;\r\n width: auto !important;\r\n height: auto !important;\r\n }\r\n\r\n .dj_a11y .dijitTabCloseText {\r\n display: inline;\r\n }\r\n\r\n .dijitTabPane,\r\n .dijitStackContainer-child,\r\n .dijitAccordionContainer-child {\r\n /* children of TabContainer, StackContainer, and AccordionContainer shouldn't have borders\r\n\t * b/c a border is already there from the TabContainer/StackContainer/AccordionContainer itself.\r\n\t */\r\n border: none !important;\r\n }\r\n\r\n /* InlineEditBox */\r\n .dijitInlineEditBoxDisplayMode {\r\n border: 1px solid transparent; /* so keyline (border) on hover can appear without screen jump */\r\n cursor: text;\r\n }\r\n\r\n .dj_a11y .dijitInlineEditBoxDisplayMode,\r\n .dj_ie6 .dijitInlineEditBoxDisplayMode {\r\n /* except that IE6 doesn't support transparent borders, nor does high contrast mode */\r\n border: none;\r\n }\r\n\r\n .dijitInlineEditBoxDisplayModeHover,\r\n .dj_a11y .dijitInlineEditBoxDisplayModeHover,\r\n .dj_ie6 .dijitInlineEditBoxDisplayModeHover {\r\n /* An InlineEditBox in view mode (click this to edit the text) */\r\n background-color: #e2ebf2;\r\n border: solid 1px black;\r\n }\r\n\r\n .dijitInlineEditBoxDisplayModeDisabled {\r\n cursor: default;\r\n }\r\n\r\n /* Tree */\r\n .dijitTree {\r\n overflow: auto; /* for scrollbars when Tree has a height setting, and to prevent wrapping around float elements, see #11491 */\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n\r\n .dijitTreeContainer {\r\n float: left; /* for correct highlighting during horizontal scroll, see #16132 */\r\n }\r\n\r\n .dijitTreeIndent {\r\n /* amount to indent each tree node (relative to parent node) */\r\n width: 19px;\r\n }\r\n\r\n .dijitTreeRow,\r\n .dijitTreeContent {\r\n white-space: nowrap;\r\n }\r\n\r\n .dj_ie .dijitTreeLabel:focus {\r\n /* workaround IE9 behavior where down arrowing through TreeNodes doesn't show focus outline */\r\n outline: 1px dotted black;\r\n }\r\n\r\n .dijitTreeRow img {\r\n /* make the expando and folder icons line up with the label */\r\n vertical-align: middle;\r\n }\r\n\r\n .dijitTreeContent {\r\n cursor: default;\r\n }\r\n\r\n .dijitExpandoText {\r\n display: none;\r\n }\r\n\r\n .dj_a11y .dijitExpandoText {\r\n display: inline;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n font-family: monospace;\r\n border-style: solid;\r\n border-width: thin;\r\n cursor: pointer;\r\n }\r\n\r\n .dijitTreeLabel {\r\n margin: 0 4px;\r\n }\r\n\r\n /* Dialog */\r\n\r\n .dijitDialog {\r\n position: absolute;\r\n z-index: 999;\r\n overflow: hidden; /* override overflow: auto; from ContentPane to make dragging smoother */\r\n }\r\n\r\n .dijitDialogTitleBar {\r\n cursor: move;\r\n }\r\n .dijitDialogFixed .dijitDialogTitleBar {\r\n cursor: default;\r\n }\r\n .dijitDialogCloseIcon {\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n .dijitDialogPaneContent {\r\n -webkit-overflow-scrolling: touch;\r\n }\r\n .dijitDialogUnderlayWrapper {\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n z-index: 998;\r\n display: none;\r\n background: transparent !important;\r\n }\r\n\r\n .dijitDialogUnderlay {\r\n background: #eee;\r\n opacity: 0.5;\r\n }\r\n\r\n .dj_ie .dijitDialogUnderlay {\r\n filter: alpha(opacity=50);\r\n }\r\n\r\n /* images off, high-contrast mode styles */\r\n .dj_a11y .dijitSpinnerButtonContainer,\r\n .dj_a11y .dijitDialog {\r\n opacity: 1 !important;\r\n background-color: white !important;\r\n }\r\n\r\n .dijitDialog .closeText {\r\n display: none;\r\n /* for the onhover border in high contrast on IE: */\r\n position: absolute;\r\n }\r\n\r\n .dj_a11y .dijitDialog .closeText {\r\n display: inline;\r\n }\r\n\r\n /* Slider */\r\n\r\n .dijitSliderMoveable {\r\n z-index: 99;\r\n position: absolute !important;\r\n display: block;\r\n vertical-align: middle;\r\n }\r\n\r\n .dijitSliderMoveableH {\r\n right: 0;\r\n }\r\n .dijitSliderMoveableV {\r\n right: 50%;\r\n }\r\n\r\n .dj_a11y div.dijitSliderImageHandle,\r\n .dijitSliderImageHandle {\r\n margin: 0;\r\n padding: 0;\r\n position: relative !important;\r\n border: 8px solid gray;\r\n width: 0;\r\n height: 0;\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n .dj_iequirks .dj_a11y .dijitSliderImageHandle {\r\n font-size: 0;\r\n }\r\n .dj_ie7 .dijitSliderImageHandle {\r\n overflow: hidden; /* IE7 workaround to make slider handle VISIBLE in non-a11y mode */\r\n }\r\n .dj_ie7 .dj_a11y .dijitSliderImageHandle {\r\n overflow: visible; /* IE7 workaround to make slider handle VISIBLE in a11y mode */\r\n }\r\n .dj_a11y .dijitSliderFocused .dijitSliderImageHandle {\r\n border: 4px solid #000;\r\n height: 8px;\r\n width: 8px;\r\n }\r\n\r\n .dijitSliderImageHandleV {\r\n top: -8px;\r\n right: -50%;\r\n }\r\n\r\n .dijitSliderImageHandleH {\r\n left: 50%;\r\n top: -5px;\r\n vertical-align: top;\r\n }\r\n\r\n .dijitSliderBar {\r\n border-style: solid;\r\n border-color: black;\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n\r\n .dijitSliderBarContainerV {\r\n position: relative;\r\n height: 100%;\r\n z-index: 1;\r\n }\r\n\r\n .dijitSliderBarContainerH {\r\n position: relative;\r\n z-index: 1;\r\n }\r\n\r\n .dijitSliderBarH {\r\n height: 4px;\r\n border-width: 1px 0;\r\n }\r\n\r\n .dijitSliderBarV {\r\n width: 4px;\r\n border-width: 0 1px;\r\n }\r\n\r\n .dijitSliderProgressBar {\r\n background-color: red;\r\n z-index: 1;\r\n }\r\n\r\n .dijitSliderProgressBarV {\r\n position: static !important;\r\n height: 0;\r\n vertical-align: top;\r\n text-align: left;\r\n }\r\n\r\n .dijitSliderProgressBarH {\r\n position: absolute !important;\r\n width: 0;\r\n vertical-align: middle;\r\n overflow: visible;\r\n }\r\n\r\n .dijitSliderRemainingBar {\r\n overflow: hidden;\r\n background-color: transparent;\r\n z-index: 1;\r\n }\r\n\r\n .dijitSliderRemainingBarV {\r\n height: 100%;\r\n text-align: left;\r\n }\r\n\r\n .dijitSliderRemainingBarH {\r\n width: 100% !important;\r\n }\r\n\r\n /* the slider bumper is the space consumed by the slider handle when it hangs over an edge */\r\n .dijitSliderBumper {\r\n overflow: hidden;\r\n z-index: 1;\r\n }\r\n\r\n .dijitSliderBumperV {\r\n width: 4px;\r\n height: 8px;\r\n border-width: 0 1px;\r\n }\r\n\r\n .dijitSliderBumperH {\r\n width: 8px;\r\n height: 4px;\r\n border-width: 1px 0;\r\n }\r\n\r\n .dijitSliderBottomBumper,\r\n .dijitSliderLeftBumper {\r\n background-color: red;\r\n }\r\n\r\n .dijitSliderTopBumper,\r\n .dijitSliderRightBumper {\r\n background-color: transparent;\r\n }\r\n\r\n .dijitSliderDecoration {\r\n text-align: center;\r\n }\r\n\r\n .dijitSliderDecorationC,\r\n .dijitSliderDecorationV {\r\n position: relative; /* needed for IE+quirks+RTL+vertical (rendering bug) but add everywhere for custom styling consistency but this messes up IE horizontal sliders */\r\n }\r\n\r\n .dijitSliderDecorationH {\r\n width: 100%;\r\n }\r\n\r\n .dijitSliderDecorationV {\r\n height: 100%;\r\n white-space: nowrap;\r\n }\r\n\r\n .dijitSliderButton {\r\n font-family: monospace;\r\n margin: 0;\r\n padding: 0;\r\n display: block;\r\n }\r\n\r\n .dj_a11y .dijitSliderButtonInner {\r\n visibility: visible !important;\r\n }\r\n\r\n .dijitSliderButtonContainer {\r\n text-align: center;\r\n height: 0; /* ??? */\r\n }\r\n .dijitSliderButtonContainer * {\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n\r\n .dijitSlider .dijitButtonNode {\r\n padding: 0;\r\n display: block;\r\n }\r\n\r\n .dijitRuleContainer {\r\n position: relative;\r\n overflow: visible;\r\n }\r\n\r\n .dijitRuleContainerV {\r\n height: 100%;\r\n line-height: 0;\r\n float: left;\r\n text-align: left;\r\n }\r\n\r\n .dj_opera .dijitRuleContainerV {\r\n line-height: 2%;\r\n }\r\n\r\n .dj_ie .dijitRuleContainerV {\r\n line-height: normal;\r\n }\r\n\r\n .dj_gecko .dijitRuleContainerV {\r\n margin: 0 0 1px 0; /* mozilla bug workaround for float:left,height:100% block elements */\r\n }\r\n\r\n .dijitRuleMark {\r\n position: absolute;\r\n border: 1px solid black;\r\n line-height: 0;\r\n height: 100%;\r\n }\r\n\r\n .dijitRuleMarkH {\r\n width: 0;\r\n border-top-width: 0 !important;\r\n border-bottom-width: 0 !important;\r\n border-left-width: 0 !important;\r\n }\r\n\r\n .dijitRuleLabelContainer {\r\n position: absolute;\r\n }\r\n\r\n .dijitRuleLabelContainerH {\r\n text-align: center;\r\n display: inline-block;\r\n }\r\n\r\n .dijitRuleLabelH {\r\n position: relative;\r\n left: -50%;\r\n }\r\n\r\n .dijitRuleLabelV {\r\n /* so that long labels don't overflow to multiple rows, or overwrite slider itself */\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n overflow: hidden;\r\n }\r\n\r\n .dijitRuleMarkV {\r\n height: 0;\r\n border-right-width: 0 !important;\r\n border-bottom-width: 0 !important;\r\n border-left-width: 0 !important;\r\n width: 100%;\r\n left: 0;\r\n }\r\n\r\n .dj_ie .dijitRuleLabelContainerV {\r\n margin-top: -0.55em;\r\n }\r\n\r\n .dj_a11y .dijitSliderReadOnly,\r\n .dj_a11y .dijitSliderDisabled {\r\n opacity: 0.6;\r\n }\r\n .dj_ie .dj_a11y .dijitSliderReadOnly .dijitSliderBar,\r\n .dj_ie .dj_a11y .dijitSliderDisabled .dijitSliderBar {\r\n filter: alpha(opacity=40);\r\n }\r\n\r\n /* + and - Slider buttons: override theme settings to display icons */\r\n .dj_a11y .dijitSlider .dijitSliderButtonContainer div {\r\n font-family: monospace; /* otherwise hyphen is larger and more vertically centered */\r\n font-size: 1em;\r\n line-height: 1em;\r\n height: auto;\r\n width: auto;\r\n margin: 0 4px;\r\n }\r\n\r\n /* Icon-only buttons (often in toolbars) still display the text in high-contrast mode */\r\n .dj_a11y .dijitButtonContents .dijitButtonText,\r\n .dj_a11y .dijitTab .tabLabel {\r\n display: inline !important;\r\n }\r\n .dj_a11y .dijitSelect .dijitButtonText {\r\n display: inline-block !important;\r\n }\r\n\r\n /* TextArea, SimpleTextArea */\r\n .dijitTextArea {\r\n width: 100%;\r\n overflow-y: auto; /* w/out this IE's SimpleTextArea goes to overflow: scroll */\r\n }\r\n .dijitTextArea[cols] {\r\n width: auto; /* SimpleTextArea cols */\r\n }\r\n .dj_ie .dijitTextAreaCols {\r\n width: auto;\r\n }\r\n\r\n .dijitExpandingTextArea {\r\n /* for auto exanding textarea (called Textarea currently, rename for 2.0) don't want to display the grip to resize */\r\n resize: none;\r\n }\r\n\r\n /* Toolbar\r\n * Note that other toolbar rules (for objects in toolbars) are scattered throughout this file.\r\n */\r\n\r\n .dijitToolbarSeparator {\r\n height: 18px;\r\n width: 5px;\r\n padding: 0 1px;\r\n margin: 0;\r\n }\r\n\r\n /* Editor */\r\n .dijitIEFixedToolbar {\r\n position: absolute;\r\n /* top:0; */\r\n top: expression(eval((document.documentElement||document.body) .scrollTop));\r\n }\r\n\r\n .dijitEditor {\r\n display: block; /* prevents glitch on FF with InlineEditBox, see #8404 */\r\n }\r\n\r\n .dijitEditorDisabled,\r\n .dijitEditorReadOnly {\r\n color: gray;\r\n }\r\n\r\n /* TimePicker */\r\n\r\n .dijitTimePicker {\r\n background-color: white;\r\n }\r\n .dijitTimePickerItem {\r\n cursor: pointer;\r\n -webkit-tap-highlight-color: transparent;\r\n }\r\n .dijitTimePickerItemHover {\r\n background-color: gray;\r\n color: white;\r\n }\r\n .dijitTimePickerItemSelected {\r\n font-weight: bold;\r\n color: #333;\r\n background-color: #b7cdee;\r\n }\r\n .dijitTimePickerItemDisabled {\r\n color: gray;\r\n text-decoration: line-through;\r\n }\r\n\r\n .dijitTimePickerItemInner {\r\n text-align: center;\r\n border: 0;\r\n padding: 2px 8px 2px 8px;\r\n }\r\n\r\n .dijitTimePickerTick,\r\n .dijitTimePickerMarker {\r\n border-bottom: 1px solid gray;\r\n }\r\n\r\n .dijitTimePicker .dijitDownArrowButton {\r\n border-top: none !important;\r\n }\r\n\r\n .dijitTimePickerTick {\r\n color: #ccc;\r\n }\r\n\r\n .dijitTimePickerMarker {\r\n color: black;\r\n background-color: #ccc;\r\n }\r\n\r\n .dj_a11y .dijitTimePickerItemSelected .dijitTimePickerItemInner {\r\n border: solid 4px black;\r\n }\r\n .dj_a11y .dijitTimePickerItemHover .dijitTimePickerItemInner {\r\n border: dashed 4px black;\r\n }\r\n\r\n .dijitToggleButtonIconChar {\r\n /* character (instead of icon) to show that ToggleButton is checked */\r\n display: none !important;\r\n }\r\n .dj_a11y .dijitToggleButton .dijitToggleButtonIconChar {\r\n display: inline !important;\r\n visibility: hidden;\r\n }\r\n .dj_ie6 .dijitToggleButtonIconChar,\r\n .dj_ie6 .tabStripButton .dijitButtonText {\r\n font-family: \"Arial Unicode MS\"; /* otherwise the a11y character (checkmark, arrow, etc.) appears as a box */\r\n }\r\n .dj_a11y .dijitToggleButtonChecked .dijitToggleButtonIconChar {\r\n display: inline !important; /* In high contrast mode, display the check symbol */\r\n visibility: visible !important;\r\n }\r\n\r\n .dijitArrowButtonChar {\r\n display: none !important;\r\n }\r\n .dj_a11y .dijitArrowButtonChar {\r\n display: inline !important;\r\n }\r\n\r\n .dj_a11y .dijitDropDownButton .dijitArrowButtonInner,\r\n .dj_a11y .dijitComboButton .dijitArrowButtonInner {\r\n display: none !important;\r\n }\r\n\r\n /* Select */\r\n .dj_a11y .dijitSelect {\r\n border-collapse: separate !important;\r\n border-width: 1px;\r\n border-style: solid;\r\n }\r\n .dj_ie .dijitSelect {\r\n vertical-align: middle; /* Set this back for what we hack in dijit inline */\r\n }\r\n .dj_ie6 .dijitSelect .dijitValidationContainer,\r\n .dj_ie8 .dijitSelect .dijitButtonText {\r\n vertical-align: top;\r\n }\r\n .dj_ie6 .dijitTextBox .dijitInputContainer,\r\n .dj_iequirks .dijitTextBox .dijitInputContainer,\r\n .dj_ie6 .dijitTextBox .dijitArrowButtonInner,\r\n .dj_ie6 .dijitSpinner .dijitSpinnerButtonInner,\r\n .dijitSelect .dijitSelectLabel {\r\n vertical-align: baseline;\r\n }\r\n\r\n .dijitNumberTextBox {\r\n text-align: left;\r\n direction: ltr;\r\n }\r\n\r\n .dijitNumberTextBox .dijitInputInner {\r\n text-align: inherit; /* input */\r\n }\r\n\r\n .dijitNumberTextBox input.dijitInputInner,\r\n .dijitCurrencyTextBox input.dijitInputInner,\r\n .dijitSpinner input.dijitInputInner {\r\n text-align: right;\r\n }\r\n\r\n .dj_ie8 .dijitNumberTextBox input.dijitInputInner,\r\n .dj_ie9 .dijitNumberTextBox input.dijitInputInner,\r\n .dj_ie8 .dijitCurrencyTextBox input.dijitInputInner,\r\n .dj_ie9 .dijitCurrencyTextBox input.dijitInputInner,\r\n .dj_ie8 .dijitSpinner input.dijitInputInner,\r\n .dj_ie9 .dijitSpinner input.dijitInputInner {\r\n /* workaround bug where caret invisible in empty textboxes */\r\n padding-right: 1px !important;\r\n }\r\n\r\n .dijitToolbar .dijitSelect {\r\n margin: 0;\r\n }\r\n .dj_webkit .dijitToolbar .dijitSelect {\r\n padding-left: 0.3em;\r\n }\r\n .dijitSelect .dijitButtonContents {\r\n padding: 0;\r\n white-space: nowrap;\r\n text-align: left;\r\n border-style: none solid none none;\r\n border-width: 1px;\r\n }\r\n .dijitSelectFixedWidth .dijitButtonContents {\r\n width: 100%;\r\n }\r\n\r\n .dijitSelectMenu .dijitMenuItemIcon {\r\n /* avoid blank area in left side of menu (since we have no icons) */\r\n display: none;\r\n }\r\n .dj_ie6 .dijitSelectMenu .dijitMenuItemLabel,\r\n .dj_ie7 .dijitSelectMenu .dijitMenuItemLabel {\r\n /* Set back to static due to bug in ie6/ie7 - See Bug #9651 */\r\n position: static;\r\n }\r\n\r\n /* Fix the baseline of our label (for multi-size font elements) */\r\n .dijitSelectLabel * {\r\n vertical-align: baseline;\r\n }\r\n\r\n /* Styling for the currently-selected option (rich text can mess this up) */\r\n .dijitSelectSelectedOption * {\r\n font-weight: bold;\r\n }\r\n\r\n /* Fix the styling of the dropdown menu to be more combobox-like */\r\n .dijitSelectMenu {\r\n border-width: 1px;\r\n }\r\n\r\n /* Used in cases, such as FullScreen plugin, when we need to force stuff to static positioning. */\r\n .dijitForceStatic {\r\n position: static !important;\r\n }\r\n\r\n /**** Disabled cursor *****/\r\n .dijitReadOnly *,\r\n .dijitDisabled *,\r\n .dijitReadOnly,\r\n .dijitDisabled {\r\n /* a region the user would be able to click on, but it's disabled */\r\n cursor: default;\r\n }\r\n\r\n /* Drag and Drop */\r\n .dojoDndItem {\r\n padding: 2px; /* will be replaced by border during drag over (dojoDndItemBefore, dojoDndItemAfter) */\r\n\r\n /* Prevent magnifying-glass text selection icon to appear on mobile webkit as it causes a touchout event */\r\n -webkit-touch-callout: none;\r\n -webkit-user-select: none; /* Disable selection/Copy of UIWebView */\r\n }\r\n .dojoDndHorizontal .dojoDndItem {\r\n /* make contents of horizontal container be side by side, rather than vertical */\r\n display: inline-block;\r\n }\r\n\r\n .dojoDndItemBefore,\r\n .dojoDndItemAfter {\r\n border: 0px solid #369;\r\n }\r\n .dojoDndItemBefore {\r\n border-width: 2px 0 0 0;\r\n padding: 0 2px 2px 2px;\r\n }\r\n .dojoDndItemAfter {\r\n border-width: 0 0 2px 0;\r\n padding: 2px 2px 0 2px;\r\n }\r\n .dojoDndHorizontal .dojoDndItemBefore {\r\n border-width: 0 0 0 2px;\r\n padding: 2px 2px 2px 0;\r\n }\r\n .dojoDndHorizontal .dojoDndItemAfter {\r\n border-width: 0 2px 0 0;\r\n padding: 2px 0 2px 2px;\r\n }\r\n\r\n .dojoDndItemOver {\r\n cursor: pointer;\r\n }\r\n .dj_gecko .dijitArrowButtonInner input,\r\n .dj_gecko input.dijitArrowButtonInner {\r\n -moz-user-focus: ignore;\r\n }\r\n .dijitFocused .dijitMenuItemShortcutKey {\r\n text-decoration: underline;\r\n }\r\n\r\n /* Dijit custom styling */\r\n .dijitBorderContainer {\r\n height: 350px;\r\n }\r\n .dijitTooltipContainer {\r\n background: #fff;\r\n border: 1px solid #ccc;\r\n border-radius: 6px;\r\n }\r\n .dijitContentPane {\r\n box-sizing: content-box;\r\n overflow: auto !important;\r\n /* Widgets like the data grid pass their scroll\r\n offset to the parent if there is not enough room to display a scroll bar\r\n in the widget itself, so do not hide the overflow. */\r\n }\r\n\r\n /* Global Bootstrap changes */\r\n\r\n /* Client defaults and helpers */\r\n .mx-dataview-content,\r\n .mx-tabcontainer-content,\r\n .mx-grid-content {\r\n -webkit-overflow-scrolling: touch;\r\n }\r\n html,\r\n body,\r\n #content,\r\n #root {\r\n height: 100%;\r\n }\r\n #content > .mx-page,\r\n #root > .mx-page {\r\n width: 100%;\r\n min-height: 100%;\r\n }\r\n\r\n .mx-left-aligned {\r\n text-align: left;\r\n }\r\n .mx-right-aligned {\r\n text-align: right;\r\n }\r\n .mx-center-aligned {\r\n text-align: center;\r\n }\r\n\r\n .mx-table {\r\n width: 100%;\r\n }\r\n .mx-table th,\r\n .mx-table td {\r\n padding: 8px;\r\n vertical-align: top;\r\n }\r\n .mx-table th.nopadding,\r\n .mx-table td.nopadding {\r\n padding: 0;\r\n }\r\n\r\n .mx-offscreen {\r\n /* When position relative is not set IE doesn't properly render when this class is removed\r\n * with the effect that elements are not displayed or are not clickable.\r\n */\r\n position: relative;\r\n height: 0;\r\n overflow: hidden;\r\n }\r\n\r\n .mx-ie-event-shield {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n z-index: -1;\r\n }\r\n\r\n .mx-swipe-navigation-progress {\r\n position: absolute;\r\n height: 54px;\r\n width: 54px;\r\n top: calc(50% - 27px);\r\n left: calc(50% - 27px);\r\n background: url(resources/swipe-progress.gif);\r\n }\r\n\r\n /* Bacause we use checkboxes without labels, align them with other widgets. */\r\n input[type=\"checkbox\"] {\r\n margin: 9px 0;\r\n }\r\n\r\n .mx-checkbox input[type=\"checkbox\"] {\r\n margin-left: 0;\r\n margin-right: 8px;\r\n position: static;\r\n }\r\n\r\n .form-vertical .form-group.mx-checkbox input[type=\"checkbox\"] {\r\n display: block;\r\n }\r\n\r\n .form-vertical .form-group.mx-checkbox.label-after input[type=\"checkbox\"] {\r\n display: inline-block;\r\n }\r\n\r\n .form-horizontal .form-group.no-columns {\r\n padding-left: 15px;\r\n padding-right: 15px;\r\n }\r\n\r\n .mx-radiobuttons.inline .radio {\r\n display: inline-block;\r\n margin-right: 20px;\r\n }\r\n\r\n .mx-radiobuttons .radio input[type=\"radio\"] {\r\n /* Reset bootstrap rules */\r\n position: static;\r\n margin-right: 8px;\r\n margin-left: 0;\r\n }\r\n\r\n .mx-radiobuttons .radio label {\r\n /* Reset bootstrap rules */\r\n padding-left: 0;\r\n }\r\n\r\n .alert {\r\n margin-top: 8px;\r\n margin-bottom: 10px;\r\n white-space: pre-line;\r\n }\r\n\r\n //.mx-compound-control {\r\n // display: flex;\r\n //}\r\n\r\n //.mx-compound-control button {\r\n // margin-left: 5px;\r\n //}\r\n //\r\n //[dir=\"rtl\"] .mx-compound-control button {\r\n // margin-left: 0;\r\n // margin-right: 5px;\r\n //}\r\n\r\n .mx-tooltip {\r\n margin: 10px;\r\n }\r\n .mx-tooltip-content {\r\n width: 400px;\r\n overflow-y: auto;\r\n }\r\n .mx-tooltip-prepare {\r\n height: 24px;\r\n padding: 8px;\r\n background: transparent url(resources/ttp.gif) no-repeat scroll center center;\r\n }\r\n .mx-tooltip-content .table th,\r\n .mx-tooltip-content .table td {\r\n padding: 2px 8px;\r\n }\r\n\r\n .mx-tabcontainer-pane {\r\n height: 100%;\r\n }\r\n .mx-tabcontainer-content.loading {\r\n min-height: 48px;\r\n background: url(resources/tabcontainer-loading.gif) no-repeat center center;\r\n background-size: 32px 32px;\r\n }\r\n .mx-tabcontainer-tabs {\r\n margin-bottom: 8px;\r\n }\r\n .mx-tabcontainer-tabs li {\r\n position: relative;\r\n }\r\n .mx-tabcontainer-indicator {\r\n position: absolute;\r\n background: #f2dede;\r\n border-radius: 8px;\r\n color: #b94a48;\r\n top: 0px;\r\n right: -5px;\r\n width: 16px;\r\n height: 16px;\r\n line-height: 16px;\r\n text-align: center;\r\n vertical-align: middle;\r\n font-size: 10px;\r\n font-weight: 600;\r\n z-index: 1; /* indicator should not hide behind other tab */\r\n }\r\n\r\n /* base structure */\r\n .mx-grid {\r\n padding: 8px;\r\n overflow: hidden; /* to prevent any margin from escaping grid and foobaring our size calculations */\r\n }\r\n .mx-grid-controlbar,\r\n .mx-grid-searchbar {\r\n display: flex;\r\n justify-content: space-between;\r\n flex-wrap: wrap;\r\n }\r\n .mx-grid-controlbar .mx-button,\r\n .mx-grid-search-controls .mx-button {\r\n margin-bottom: 8px;\r\n }\r\n\r\n .mx-grid-search-controls .mx-button + .mx-button,\r\n .mx-grid-controlbar .mx-button + .mx-button {\r\n margin-left: 0.3em;\r\n }\r\n\r\n [dir=\"rtl\"] .mx-grid-search-controls .mx-button + .mx-button,\r\n [dir=\"rtl\"] .mx-grid-controlbar .mx-button + .mx-button {\r\n margin-left: 0;\r\n margin-right: 0.3em;\r\n }\r\n\r\n .mx-grid-pagingbar,\r\n .mx-grid-search-controls {\r\n display: flex;\r\n white-space: nowrap;\r\n align-items: baseline;\r\n margin-left: auto;\r\n }\r\n\r\n .mx-grid-toolbar,\r\n .mx-grid-search-inputs {\r\n margin-right: 5px;\r\n flex: 1;\r\n }\r\n\r\n [dir=\"rtl\"] .mx-grid-toolbar,\r\n [dir=\"rtl\"] .mx-grid-search-inputs {\r\n margin-left: 5px;\r\n margin-right: 0px;\r\n }\r\n [dir=\"rtl\"] .mx-grid-pagingbar,\r\n [dir=\"rtl\"] .mx-grid-search-controls {\r\n margin-left: 0px;\r\n margin-right: auto;\r\n }\r\n\r\n .mx-grid-paging-status {\r\n padding: 0 8px 5px;\r\n }\r\n\r\n /* search fields */\r\n .mx-grid-search-item {\r\n display: inline-block;\r\n vertical-align: top;\r\n margin-bottom: 8px;\r\n }\r\n .mx-grid-search-label {\r\n width: 110px;\r\n padding: 0 5px;\r\n text-align: right;\r\n display: inline-block;\r\n vertical-align: top;\r\n overflow: hidden;\r\n }\r\n [dir=\"rtl\"] .mx-grid-search-label {\r\n text-align: left;\r\n }\r\n .mx-grid-search-input {\r\n width: 150px;\r\n padding: 0 5px;\r\n display: inline-block;\r\n vertical-align: top;\r\n }\r\n .mx-grid-search-message {\r\n flex-basis: 100%;\r\n }\r\n\r\n /* widget combinations */\r\n .mx-dataview .mx-grid {\r\n border: 1px solid #ddd;\r\n border-radius: 3px;\r\n }\r\n\r\n .mx-calendar {\r\n z-index: 1000;\r\n }\r\n\r\n .mx-calendar-month-dropdown-options {\r\n position: absolute;\r\n }\r\n\r\n .mx-calendar,\r\n .mx-calendar-month-dropdown {\r\n user-select: none;\r\n }\r\n\r\n .mx-calendar-month-current {\r\n display: inline-block;\r\n }\r\n\r\n .mx-calendar-month-spacer {\r\n position: relative;\r\n height: 0px;\r\n overflow: hidden;\r\n visibility: hidden;\r\n }\r\n\r\n .mx-calendar,\r\n .mx-calendar-month-dropdown-options {\r\n border: 1px solid lightgrey;\r\n background-color: white;\r\n }\r\n\r\n .mx-datagrid tr {\r\n cursor: pointer;\r\n }\r\n\r\n .mx-datagrid tr.mx-datagrid-row-empty {\r\n cursor: default;\r\n }\r\n\r\n .mx-datagrid table {\r\n width: 100%;\r\n max-width: 100%;\r\n table-layout: fixed;\r\n margin-bottom: 0;\r\n }\r\n\r\n .mx-datagrid th,\r\n .mx-datagrid td {\r\n padding: 8px;\r\n line-height: 1.42857143;\r\n vertical-align: bottom;\r\n border: 1px solid #ddd;\r\n }\r\n\r\n /* head */\r\n .mx-datagrid th {\r\n position: relative; /* Required for the positioning of the column resizers */\r\n border-bottom-width: 2px;\r\n }\r\n .mx-datagrid-head-caption {\r\n overflow: hidden;\r\n white-space: nowrap;\r\n }\r\n .mx-datagrid-sort-icon {\r\n float: right;\r\n padding-left: 5px;\r\n }\r\n [dir=\"rtl\"] .mx-datagrid-sort-icon {\r\n float: left;\r\n padding: 0 5px 0 0;\r\n }\r\n .mx-datagrid-column-resizer {\r\n position: absolute;\r\n top: 0;\r\n left: -6px;\r\n width: 10px;\r\n height: 100%;\r\n cursor: col-resize;\r\n }\r\n [dir=\"rtl\"] .mx-datagrid-column-resizer {\r\n left: auto;\r\n right: -6px;\r\n }\r\n\r\n /* body */\r\n .mx-datagrid tbody tr:first-child td {\r\n border-top: none;\r\n }\r\n //.mx-datagrid tbody tr:nth-child(2n+1) td {\r\n // background-color: #f9f9f9;\r\n //}\r\n .mx-datagrid tbody .selected td {\r\n background-color: #eee;\r\n }\r\n .mx-datagrid-data-wrapper {\r\n overflow: hidden;\r\n white-space: nowrap;\r\n }\r\n .mx-datagrid tbody img {\r\n max-width: 16px;\r\n max-height: 16px;\r\n }\r\n .mx-datagrid input,\r\n .mx-datagrid select,\r\n .mx-datagrid textarea {\r\n cursor: auto;\r\n }\r\n\r\n /* foot */\r\n .mx-datagrid tfoot th,\r\n .mx-datagrid tfoot td {\r\n padding: 3px 8px;\r\n }\r\n .mx-datagrid tfoot th {\r\n border-top: 1px solid #ddd;\r\n }\r\n .mx-datagrid.mx-content-loading .mx-content-loader {\r\n display: inline-block;\r\n width: 90%;\r\n animation: placeholderGradient 1s linear infinite;\r\n border-radius: 4px;\r\n background: #f5f5f5;\r\n background: repeating-linear-gradient(to right, #f5f5f5 0%, #f5f5f5 5%, #f9f9f9 50%, #f5f5f5 95%, #f5f5f5 100%);\r\n background-size: 200px 100px;\r\n animation-fill-mode: both;\r\n }\r\n @keyframes placeholderGradient {\r\n 0% {\r\n background-position: 100px 0;\r\n }\r\n 100% {\r\n background-position: -100px 0;\r\n }\r\n }\r\n\r\n .mx-datagrid-table-resizing th,\r\n .mx-datagrid-table-resizing td {\r\n cursor: col-resize !important;\r\n }\r\n\r\n .mx-templategrid-content-wrapper {\r\n display: table;\r\n width: 100%;\r\n border-collapse: collapse;\r\n box-sizing: border-box;\r\n }\r\n .mx-templategrid-row {\r\n display: table-row;\r\n }\r\n .mx-templategrid-item {\r\n padding: 5px;\r\n display: table-cell;\r\n border: 1px solid #ddd;\r\n cursor: pointer;\r\n box-sizing: border-box;\r\n }\r\n .mx-templategrid-empty {\r\n display: table-cell;\r\n }\r\n .mx-templategrid-item.selected {\r\n background-color: #f5f5f5;\r\n }\r\n .mx-templategrid-item .mx-table th,\r\n .mx-templategrid-item .mx-table td {\r\n padding: 2px 8px;\r\n }\r\n\r\n .mx-navbar-item img,\r\n .mx-navbar-subitem img {\r\n height: 16px;\r\n }\r\n\r\n .mx-navigationtree .navbar-inner {\r\n padding-left: 0;\r\n padding-right: 0;\r\n }\r\n .mx-navigationtree ul {\r\n list-style: none;\r\n }\r\n //.mx-navigationtree ul li {\r\n // border-bottom: 1px solid #dfe6ea;\r\n //}\r\n //.mx-navigationtree li:last-child {\r\n // border-style: none;\r\n //}\r\n .mx-navigationtree a {\r\n display: block;\r\n padding: 5px 10px;\r\n color: #777;\r\n text-shadow: 0 1px 0 #fff;\r\n text-decoration: none;\r\n }\r\n .mx-navigationtree a.active {\r\n color: #fff;\r\n text-shadow: none;\r\n background: #3498db;\r\n border-radius: 3px;\r\n }\r\n .mx-navigationtree .mx-navigationtree-collapsed ul {\r\n display: none;\r\n }\r\n .mx-navigationtree ul {\r\n margin: 0;\r\n padding: 0;\r\n }\r\n //.mx-navigationtree ul li {\r\n // padding: 5px 0;\r\n //}\r\n .mx-navigationtree ul li ul {\r\n padding: 0;\r\n margin-left: 10px;\r\n }\r\n .mx-navigationtree ul li ul li {\r\n margin-left: 8px;\r\n padding: 5px 0;\r\n }\r\n [dir=\"rtl\"] .mx-navigationtree ul li ul li {\r\n margin-left: auto;\r\n margin-right: 8px;\r\n }\r\n .mx-navigationtree ul li ul li ul li {\r\n font-size: 10px;\r\n padding-top: 3px;\r\n padding-bottom: 3px;\r\n }\r\n .mx-navigationtree ul li ul li ul li img {\r\n vertical-align: top;\r\n }\r\n\r\n .mx-link img,\r\n .mx-button img {\r\n height: 16px;\r\n }\r\n .mx-link {\r\n padding: 6px 12px;\r\n display: inline-block;\r\n cursor: pointer;\r\n }\r\n\r\n .mx-groupbox {\r\n margin-bottom: 10px;\r\n }\r\n .mx-groupbox-header {\r\n margin: 0;\r\n padding: 10px 15px;\r\n color: #eee;\r\n background: #333;\r\n font-size: inherit;\r\n line-height: inherit;\r\n border-radius: 4px 4px 0 0;\r\n }\r\n .mx-groupbox-collapsible > .mx-groupbox-header {\r\n cursor: pointer;\r\n }\r\n .mx-groupbox.collapsed > .mx-groupbox-header {\r\n border-radius: 4px;\r\n }\r\n .mx-groupbox-body {\r\n padding: 8px;\r\n border: 1px solid #ddd;\r\n border-radius: 4px;\r\n }\r\n .mx-groupbox.collapsed > .mx-groupbox-body {\r\n display: none;\r\n }\r\n .mx-groupbox-header + .mx-groupbox-body {\r\n border-top: none;\r\n border-radius: 0 0 4px 4px;\r\n }\r\n .mx-groupbox-collapse-icon {\r\n float: right;\r\n }\r\n [dir=\"rtl\"] .mx-groupbox-collapse-icon {\r\n float: left;\r\n }\r\n\r\n .mx-dataview {\r\n position: relative;\r\n }\r\n .mx-dataview-controls {\r\n padding: 19px 20px 12px;\r\n background-color: #f5f5f5;\r\n border-top: 1px solid #eee;\r\n }\r\n\r\n .mx-dataview-controls .mx-button {\r\n margin-bottom: 8px;\r\n }\r\n\r\n .mx-dataview-controls .mx-button + .mx-button {\r\n margin-left: 0.3em;\r\n }\r\n\r\n .mx-dataview-message {\r\n background: #fff;\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n bottom: 0;\r\n left: 0;\r\n }\r\n .mx-dataview-message > div {\r\n display: table;\r\n width: 100%;\r\n height: 100%;\r\n }\r\n .mx-dataview-message > div > p {\r\n display: table-cell;\r\n text-align: center;\r\n vertical-align: middle;\r\n }\r\n\r\n /* Top-level data view in window is a special case, handle it as such. */\r\n .mx-window-view .mx-window-body {\r\n padding: 0;\r\n }\r\n .mx-window-view .mx-window-body > .mx-dataview > .mx-dataview-content,\r\n .mx-window-view .mx-window-body > .mx-placeholder > .mx-dataview > .mx-dataview-content {\r\n padding: 15px;\r\n }\r\n .mx-window-view .mx-window-body > .mx-dataview > .mx-dataview-controls,\r\n .mx-window-view .mx-window-body > .mx-placeholder > .mx-dataview > .mx-dataview-controls {\r\n border-radius: 0px 0px 6px 6px;\r\n }\r\n\r\n .mx-dialog {\r\n position: fixed;\r\n left: auto;\r\n right: auto;\r\n padding: 0;\r\n width: 500px;\r\n /* If the margin is set to auto, IE9 reports the calculated value of the\r\n * margin as the actual value. Other browsers will just report 0. Eliminate\r\n * this difference by setting margin to 0 for every browser. */\r\n margin: 0;\r\n }\r\n .mx-dialog-header {\r\n cursor: move;\r\n }\r\n .mx-dialog-body {\r\n overflow: auto;\r\n }\r\n\r\n .mx-window {\r\n position: fixed;\r\n left: auto;\r\n right: auto;\r\n padding: 0;\r\n width: 600px;\r\n /* If the margin is set to auto, IE9 reports the calculated value of the\r\n * margin as the actual value. Other browsers will just report 0. Eliminate\r\n * this difference by setting margin to 0 for every browser. */\r\n margin: 0;\r\n }\r\n .mx-window-content {\r\n height: 100%;\r\n overflow: hidden;\r\n }\r\n .mx-window-active .mx-window-header {\r\n background-color: #f5f5f5;\r\n border-radius: 6px 6px 0 0;\r\n }\r\n .mx-window-header {\r\n cursor: move;\r\n }\r\n .mx-window-body {\r\n overflow: auto;\r\n }\r\n\r\n .mx-dropdown-list * {\r\n cursor: pointer;\r\n }\r\n .mx-dropdown-list img {\r\n width: 35px;\r\n vertical-align: middle;\r\n margin-right: 10px;\r\n }\r\n [dir=\"rtl\"] .mx-dropdown-list img {\r\n margin-left: 10px;\r\n margin-right: auto;\r\n }\r\n\r\n .mx-dropdown-list {\r\n padding: 0;\r\n list-style: none;\r\n }\r\n .mx-dropdown-list > li {\r\n padding: 5px 10px 10px;\r\n border: 1px #ddd;\r\n border-style: solid solid none;\r\n background-color: #fff;\r\n }\r\n .mx-dropdown-list > li:first-child {\r\n border-top-left-radius: 4px;\r\n border-top-right-radius: 4px;\r\n }\r\n .mx-dropdown-list > li:last-child {\r\n border-bottom-style: solid;\r\n border-bottom-left-radius: 4px;\r\n border-bottom-right-radius: 4px;\r\n }\r\n .mx-dropdown-list-striped > li:nth-child(2n + 1) {\r\n background: #f9f9f9;\r\n }\r\n .mx-dropdown-list > li:hover {\r\n background: #f5f5f5;\r\n }\r\n\r\n .mx-header {\r\n position: relative;\r\n padding: 9px;\r\n background: #333;\r\n text-align: center;\r\n }\r\n .mx-header-center {\r\n display: inline-block;\r\n color: #eee;\r\n line-height: 30px; /* height of buttons */\r\n }\r\n body[dir=\"ltr\"] .mx-header-left,\r\n body[dir=\"rtl\"] .mx-header-right {\r\n position: absolute;\r\n top: 9px;\r\n left: 9px;\r\n }\r\n body[dir=\"ltr\"] .mx-header-right,\r\n body[dir=\"rtl\"] .mx-header-left {\r\n position: absolute;\r\n top: 9px;\r\n right: 9px;\r\n }\r\n\r\n .mx-title {\r\n margin-bottom: 0px;\r\n margin-top: 0px;\r\n }\r\n\r\n .mx-listview {\r\n padding: 8px;\r\n }\r\n .mx-listview > ul {\r\n padding: 0px;\r\n list-style: none;\r\n }\r\n // .mx-listview > ul > li {\r\n // padding: 5px 10px 10px;\r\n // border: 1px #ddd;\r\n // border-style: solid solid none;\r\n // background-color: #fff;\r\n // outline: none;\r\n // }\r\n // .mx-listview > ul > li:first-child {\r\n // border-top-left-radius: 4px;\r\n // border-top-right-radius: 4px;\r\n // }\r\n // .mx-listview > ul > li:last-child {\r\n // border-bottom-style: solid;\r\n // border-bottom-left-radius: 4px;\r\n // border-bottom-right-radius: 4px;\r\n // }\r\n //.mx-listview li:nth-child(2n+1) {\r\n // background: #f9f9f9;\r\n //}\r\n //.mx-listview li:nth-child(2n+1):hover {\r\n // background: #f5f5f5;\r\n //}\r\n .mx-listview > ul > li.selected {\r\n // background: #eee;\r\n }\r\n .mx-listview-clickable > ul > li {\r\n cursor: pointer;\r\n }\r\n .mx-listview-empty {\r\n color: #999;\r\n text-align: center;\r\n }\r\n .mx-listview .mx-listview-loading {\r\n padding: 10px;\r\n line-height: 0;\r\n text-align: center;\r\n }\r\n .mx-listview-searchbar {\r\n display: flex;\r\n margin-bottom: 10px;\r\n }\r\n .mx-listview-searchbar > input {\r\n width: 100%;\r\n }\r\n .mx-listview-searchbar > button {\r\n margin-left: 5px;\r\n }\r\n [dir=\"rtl\"] .mx-listview-searchbar > button {\r\n margin-left: 0;\r\n margin-right: 5px;\r\n }\r\n .mx-listview-selection {\r\n display: table-cell;\r\n vertical-align: middle;\r\n padding: 0 15px 0 5px;\r\n }\r\n [dir=\"rtl\"] .mx-listview-selection {\r\n padding: 0 5px 0 15px;\r\n }\r\n .mx-listview-selectable .mx-listview-content {\r\n display: table-cell;\r\n vertical-align: middle;\r\n width: 100%;\r\n }\r\n .mx-listview .selected {\r\n background: #def;\r\n }\r\n .mx-listview .mx-table th,\r\n .mx-listview .mx-table td {\r\n padding: 2px;\r\n }\r\n\r\n .mx-login .form-control {\r\n margin-top: 10px;\r\n }\r\n\r\n .mx-menubar {\r\n padding: 8px;\r\n }\r\n .mx-menubar-icon {\r\n height: 16px;\r\n }\r\n .mx-menubar-more-icon {\r\n display: inline-block;\r\n width: 16px;\r\n height: 16px;\r\n background: url(resources/menubar-more-icon.png) no-repeat center center;\r\n background-size: 16px 16px;\r\n vertical-align: middle;\r\n }\r\n\r\n .mx-navigationlist {\r\n padding: 8px;\r\n }\r\n .mx-navigationlist li:hover,\r\n .mx-navigationlist li:focus,\r\n .mx-navigationlist li.active {\r\n color: #fff;\r\n background-color: #3498db;\r\n }\r\n .mx-navigationlist * {\r\n cursor: pointer;\r\n }\r\n .mx-navigationlist .table th,\r\n .mx-navigationlist .table td {\r\n padding: 2px;\r\n }\r\n\r\n .mx-progress {\r\n position: fixed;\r\n top: 30%;\r\n left: 0;\r\n right: 0;\r\n margin: auto;\r\n width: 250px;\r\n max-width: 90%;\r\n background: #333;\r\n opacity: 0.8;\r\n z-index: 5000;\r\n border-radius: 4px;\r\n padding: 20px 15px;\r\n transition: opacity 0.4s ease-in-out;\r\n }\r\n .mx-progress-hidden {\r\n opacity: 0;\r\n }\r\n .mx-progress-message {\r\n color: #fff;\r\n text-align: center;\r\n margin-bottom: 15px;\r\n }\r\n .mx-progress-empty .mx-progress-message {\r\n display: none;\r\n }\r\n .mx-progress-indicator {\r\n width: 70px;\r\n height: 10px;\r\n margin: auto;\r\n background: url(resources/progress-indicator.gif);\r\n }\r\n\r\n .mx-reload-notification {\r\n position: fixed;\r\n z-index: 1001;\r\n top: 0;\r\n width: 100%;\r\n padding: 1rem;\r\n\r\n border: 1px solid hsl(200, 96%, 41%);\r\n background-color: hsl(200, 96%, 44%);\r\n\r\n box-shadow: 0 5px 20px rgba(1, 37, 55, 0.16);\r\n color: white;\r\n\r\n text-align: center;\r\n font-size: 14px;\r\n }\r\n\r\n .mx-resizer-n,\r\n .mx-resizer-s {\r\n position: absolute;\r\n left: 0;\r\n width: 100%;\r\n height: 10px;\r\n }\r\n .mx-resizer-n {\r\n top: -5px;\r\n cursor: n-resize;\r\n }\r\n .mx-resizer-s {\r\n bottom: -5px;\r\n cursor: s-resize;\r\n }\r\n\r\n .mx-resizer-e,\r\n .mx-resizer-w {\r\n position: absolute;\r\n top: 0;\r\n width: 10px;\r\n height: 100%;\r\n }\r\n .mx-resizer-e {\r\n right: -5px;\r\n cursor: e-resize;\r\n }\r\n .mx-resizer-w {\r\n left: -5px;\r\n cursor: w-resize;\r\n }\r\n\r\n .mx-resizer-nw,\r\n .mx-resizer-ne,\r\n .mx-resizer-sw,\r\n .mx-resizer-se {\r\n position: absolute;\r\n width: 20px;\r\n height: 20px;\r\n }\r\n\r\n .mx-resizer-nw,\r\n .mx-resizer-ne {\r\n top: -5px;\r\n }\r\n .mx-resizer-sw,\r\n .mx-resizer-se {\r\n bottom: -5px;\r\n }\r\n .mx-resizer-nw,\r\n .mx-resizer-sw {\r\n left: -5px;\r\n }\r\n .mx-resizer-ne,\r\n .mx-resizer-se {\r\n right: -5px;\r\n }\r\n\r\n .mx-resizer-nw {\r\n cursor: nw-resize;\r\n }\r\n .mx-resizer-ne {\r\n cursor: ne-resize;\r\n }\r\n .mx-resizer-sw {\r\n cursor: sw-resize;\r\n }\r\n .mx-resizer-se {\r\n cursor: se-resize;\r\n }\r\n\r\n .mx-text {\r\n white-space: pre-line;\r\n }\r\n\r\n .mx-textarea textarea {\r\n resize: none;\r\n overflow-y: hidden;\r\n }\r\n .mx-textarea .mx-textarea-noresize {\r\n height: auto;\r\n resize: vertical;\r\n overflow-y: auto;\r\n }\r\n .mx-textarea .mx-textarea-counter {\r\n font-size: smaller;\r\n }\r\n .mx-textarea .form-control-static {\r\n white-space: pre-line;\r\n }\r\n\r\n .mx-underlay {\r\n position: fixed;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 1000;\r\n opacity: 0.5;\r\n background-color: #333;\r\n }\r\n\r\n .mx-imagezoom {\r\n position: absolute;\r\n display: table;\r\n width: 100%;\r\n height: 100%;\r\n background-color: #999;\r\n }\r\n .mx-imagezoom-wrapper {\r\n display: table-cell;\r\n text-align: center;\r\n vertical-align: middle;\r\n }\r\n .mx-imagezoom-image {\r\n max-width: none;\r\n }\r\n\r\n .mx-dropdown li {\r\n padding: 3px 20px;\r\n cursor: pointer;\r\n }\r\n .mx-dropdown label {\r\n padding: 0;\r\n color: #333;\r\n white-space: nowrap;\r\n cursor: pointer;\r\n }\r\n .mx-dropdown input {\r\n margin: 0;\r\n vertical-align: middle;\r\n cursor: pointer;\r\n }\r\n .mx-dropdown .selected {\r\n background: #f8f8f8;\r\n }\r\n //.mx-selectbox {\r\n // text-align: left;\r\n //}\r\n //.mx-selectbox-caret-wrapper {\r\n // float: right;\r\n // height: 100%;\r\n //}\r\n\r\n .mx-demouserswitcher {\r\n position: fixed;\r\n top: 0;\r\n right: 0;\r\n width: 360px;\r\n height: 100%;\r\n z-index: 20000;\r\n box-shadow: -1px 0 5px rgba(28, 59, 86, 0.2);\r\n }\r\n .mx-demouserswitcher-content {\r\n padding: 80px 40px 20px;\r\n height: 100%;\r\n color: #387ea2;\r\n font-size: 14px;\r\n overflow: auto;\r\n background: url(resources/switcher.png) top right no-repeat #1b3149;\r\n /* background-attachement local is not supported on IE8\r\n * when this is part of background the complete background is ignored */\r\n background-attachment: local;\r\n }\r\n .mx-demouserswitcher ul {\r\n padding: 0;\r\n margin-top: 25px;\r\n list-style-type: none;\r\n border-top: 1px solid #496076;\r\n }\r\n .mx-demouserswitcher a {\r\n display: block;\r\n padding: 10px 0;\r\n color: #387ea2;\r\n border-bottom: 1px solid #496076;\r\n }\r\n .mx-demouserswitcher h2 {\r\n margin: 20px 0 5px;\r\n color: #5bc4fe;\r\n font-size: 28px;\r\n }\r\n .mx-demouserswitcher h3 {\r\n margin: 0 0 2px;\r\n color: #5bc4fe;\r\n font-size: 18px;\r\n font-weight: normal;\r\n overflow: hidden;\r\n white-space: nowrap;\r\n text-overflow: ellipsis;\r\n }\r\n .mx-demouserswitcher .active h3 {\r\n color: #11efdb;\r\n }\r\n .mx-demouserswitcher p {\r\n margin-bottom: 0;\r\n }\r\n .mx-demouserswitcher-toggle {\r\n position: absolute;\r\n top: 25%;\r\n left: -35px;\r\n width: 35px;\r\n height: 38px;\r\n margin-top: -40px;\r\n cursor: pointer;\r\n border-top-left-radius: 3px;\r\n border-bottom-left-radius: 3px;\r\n box-shadow: -1px 0 5px rgba(28, 59, 86, 0.2);\r\n background: url(resources/switcher-toggle.png) center center no-repeat #1b3149;\r\n }\r\n\r\n /* master details screen for mobile */\r\n .mx-master-detail-screen {\r\n top: 0;\r\n left: 0;\r\n overflow: auto;\r\n width: 100%;\r\n height: 100%;\r\n position: absolute;\r\n background-color: white;\r\n will-change: transform;\r\n }\r\n\r\n .mx-master-detail-screen .mx-master-detail-details {\r\n padding: 15px;\r\n }\r\n\r\n .mx-master-detail-screen-header {\r\n position: relative;\r\n overflow: auto;\r\n border-bottom: 1px solid #ccc;\r\n background-color: #f7f7f7;\r\n }\r\n\r\n .mx-master-detail-screen-header-caption {\r\n text-align: center;\r\n font-size: 17px;\r\n line-height: 24px;\r\n font-weight: 600;\r\n }\r\n\r\n .mx-master-detail-screen-header-close {\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n height: 100%;\r\n width: 50px;\r\n border: none;\r\n background: transparent;\r\n color: #007aff;\r\n }\r\n\r\n body[dir=\"rtl\"] .mx-master-detail-screen-header-close {\r\n right: 0;\r\n left: auto;\r\n }\r\n\r\n .mx-master-detail-screen-header-close::before {\r\n content: \"\\2039\";\r\n font-size: 52px;\r\n line-height: 24px;\r\n }\r\n\r\n /* classes for content page */\r\n .mx-master-detail-content-fix {\r\n height: 100vh;\r\n overflow: hidden;\r\n }\r\n\r\n .mx-master-detail-content-hidden {\r\n transform: translateX(-200%);\r\n }\r\n\r\n body[dir=\"rtl\"] .mx-master-detail-content-hidden {\r\n transform: translateX(200%);\r\n }\r\n .reportingReport {\r\n padding: 5px;\r\n border: 1px solid #ddd;\r\n border-radius: 3px;\r\n }\r\n\r\n .reportingReportParameter th {\r\n text-align: right;\r\n }\r\n\r\n .reportingDateRange table {\r\n width: 100%;\r\n table-layout: fixed;\r\n }\r\n .reportingDateRange th {\r\n padding: 5px;\r\n text-align: right;\r\n background-color: #eee;\r\n }\r\n .reportingDateRange td {\r\n padding: 5px;\r\n }\r\n\r\n .mx-reportmatrix table {\r\n width: 100%;\r\n max-width: 100%;\r\n table-layout: fixed;\r\n margin-bottom: 0;\r\n }\r\n\r\n .mx-reportmatrix th,\r\n .mx-reportmatrix td {\r\n padding: 8px;\r\n line-height: 1.42857143;\r\n vertical-align: bottom;\r\n border: 1px solid #ddd;\r\n }\r\n\r\n .mx-reportmatrix tbody tr:first-child td {\r\n border-top: none;\r\n }\r\n\r\n .mx-reportmatrix tbody tr:nth-child(2n + 1) td {\r\n background-color: #f9f9f9;\r\n }\r\n\r\n .mx-reportmatrix tbody img {\r\n max-width: 16px;\r\n max-height: 16px;\r\n }\r\n\r\n @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {\r\n .dijitInline {\r\n zoom: 1; /* set hasLayout:true to mimic inline-block */\r\n display: inline; /* don't use .dj_ie since that increases the priority */\r\n vertical-align: auto; /* makes TextBox,Button line up w/native counterparts on IE6 */\r\n }\r\n\r\n .dj_ie6 .dijitComboBox .dijitInputContainer,\r\n .dijitInputContainer {\r\n zoom: 1;\r\n }\r\n\r\n .dijitRight {\r\n /* Right part of a 3-element border */\r\n display: inline; /* IE7 sizes to outer size w/o this */\r\n }\r\n\r\n .dijitButtonNode {\r\n vertical-align: auto;\r\n }\r\n\r\n .dijitTextBox {\r\n overflow: hidden; /* #6027, #6067 */\r\n }\r\n\r\n .dijitPlaceHolder {\r\n filter: \"\"; /* make this show up in IE6 after the rendering of the widget */\r\n }\r\n\r\n .dijitValidationTextBoxError input.dijitValidationInner,\r\n .dijitSelect input,\r\n .dijitTextBox input.dijitArrowButtonInner {\r\n text-indent: 0 !important;\r\n letter-spacing: -5em !important;\r\n text-align: right !important;\r\n }\r\n\r\n .dj_a11y input.dijitValidationInner,\r\n .dj_a11y input.dijitArrowButtonInner {\r\n text-align: left !important;\r\n }\r\n\r\n .dijitSpinner .dijitSpinnerButtonContainer .dijitUpArrowButton {\r\n bottom: 50%; /* otherwise (on some machines) top arrow icon too close to splitter border (IE6/7) */\r\n }\r\n\r\n .dijitTabContainerTop-tabs .dijitTab,\r\n .dijitTabContainerBottom-tabs .dijitTab {\r\n zoom: 1; /* set hasLayout:true to mimic inline-block */\r\n display: inline; /* don't use .dj_ie since that increases the priority */\r\n }\r\n\r\n .dojoDndHorizontal .dojoDndItem {\r\n /* make contents of horizontal container be side by side, rather than vertical */\r\n display: inline;\r\n }\r\n }\r\n}\r\n\r\n/* WARNING: IE9 limits nested imports to three levels deep: http://jorgealbaladejo.com/2011/05/28/internet-explorer-limits-nested-import-css-statements */\r\n\r\n/* dijit base */\r\n\r\n/* mendix base */\r\n\r\n/* widgets */\r\n\r\n/* reporting */\r\n\r\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9kb2pvL2Rpaml0L3RoZW1lcy9kaWppdC5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS9iYXNlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL2Zvcm1zLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9Ub29sdGlwLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9UYWJDb250YWluZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L19HcmlkLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9DYWxlbmRhci5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvRGF0YUdyaWQuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RlbXBsYXRlR3JpZC5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvU2Nyb2xsQ29udGFpbmVyLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9OYXZiYXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L05hdmlnYXRpb25UcmVlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9CdXR0b24uY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0dyb3VwQm94LmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9EYXRhVmlldy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvRGlhbG9nLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9XaW5kb3cuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0Ryb3BEb3duLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9IZWFkZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RpdGxlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9MaXN0Vmlldy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvTG9naW5EaWFsb2cuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L01lbnVCYXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L05hdmlnYXRpb25MaXN0LmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9Qcm9ncmVzcy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvUmVsb2FkTm90aWZpY2F0aW9uLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9SZXNpemFibGUuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RleHQuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RleHRBcmVhLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9VbmRlcmxheS5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvSW1hZ2Vab29tLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9TZWxlY3RCb3guY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0RlbW9Vc2VyU3dpdGNoZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L01hc3RlckRldGFpbC5jc3MiLCJ3ZWJwYWNrOi8vLy4vcmVwb3J0aW5nL3VpL3dpZGdldC9SZXBvcnQuY3NzIiwid2VicGFjazovLy8uL3JlcG9ydGluZy91aS93aWRnZXQvUmVwb3J0UGFyYW1ldGVyLmNzcyIsIndlYnBhY2s6Ly8vLi9yZXBvcnRpbmcvdWkvd2lkZ2V0L0RhdGVSYW5nZS5jc3MiLCJ3ZWJwYWNrOi8vLy4vcmVwb3J0aW5nL3VpL3dpZGdldC9SZXBvcnRNYXRyaXguY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvbXh1aS5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQUE7QUFDQTtBQUNBO0FBQ0E7Ozs7QUFJQTtBQUNBO0FBQ0E7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QUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsOEJBQThCO0FBQzlCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsMkJBQTJCO0FBQzNCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLDRCQUE0QjtBQUM1QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsY0FBYztBQUNkO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFdBQVc7QUFDWDtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFlBQVk7QUFDWjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBLGVBQWU7QUFDZjtBQUNBO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkIsd0JBQXdCO0FBQ3hCLFdBQVc7QUFDWDs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsYUFBYTtBQUNiO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQSxlQUFlLHlDQUF5QztBQUN4RDs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBLHdCQUF3QixvQkFBb0I7O0FBRTVDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLGVBQWU7QUFDZjs7QUFFQTtBQUNBO0FBQ0EsK0JBQStCO0FBQy9CLFlBQVk7QUFDWjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBLGdCQUFnQjtBQUNoQjs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0EsYUFBYTtBQUNiO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFlBQVk7QUFDWjs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0EsZ0JBQWdCO0FBQ2hCO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLHdCQUF3QjtBQUN4QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxpREFBaUQ7QUFDakQsMEJBQTBCO0FBQzFCOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxjQUFjO0FBQ2Q7QUFDQTtBQUNBO0FBQ0EsZ0JBQWdCO0FBQ2hCO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0EsZUFBZTtBQUNmOzs7QUFHQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0EsYUFBYTtBQUNiLGFBQWEsd0RBQXdEO0FBQ3JFO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0Esd0JBQXdCO0FBQ3hCOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtB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QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esa0JBQWtCO0FBQ2xCO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLG9CQUFvQjtBQUNwQjs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0EsVUFBVTtBQUNWO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQSxrQkFBa0I7QUFDbEI7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLHdCQUF3QjtBQUN4QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxrQkFBa0I7QUFDbEI7QUFDQTtBQUNBLFlBQVk7QUFDWjtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7O0FBR0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxVQUFVO0FBQ1Y7QUFDQTs7QUFFQTtBQUNBLGdCQUFnQjtBQUNoQjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUdBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLGlDQUFpQztBQUNqQztBQUNBO0FBQ0EsNEJBQTRCO0FBQzVCO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esd0JBQXdCO0FBQ3hCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBLHFCQUFxQjtBQUNyQjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSxpQkFBaUI7O0FBRWpCO0FBQ0E7QUFDQSwyQkFBMkI7QUFDM0I7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdnNFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsOEJBQThCO0FBQzlCO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQzs7O0FDOUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUN6REE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSwrQ0FBK0M7QUFDL0M7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNmQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsbUNBQW1DO0FBQ25DO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsZUFBZTtBQUNmOztBQzdCQTtBQUNBO0FBQ0E7QUFDQSxxQkFBcUI7QUFDckI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3JGQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQzFCQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLHVCQUF1QjtBQUN2QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxRQUFRLDhCQUE4QjtBQUN0QyxVQUFVLCtCQUErQjtBQUN6Qzs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUN0R0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUN6QkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNyREE7QUFDQTtBQUNBO0FBQ0E7OztBQ0hBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdkRBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDUEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ25DQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUMvQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNoQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDeEJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNyQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esc0JBQXNCO0FBQ3RCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3RCQTtBQUNBO0FBQ0E7QUFDQTs7QUNIQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDN0VBO0FBQ0E7QUFDQTs7QUNGQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQztBQUNBO0FBQ0E7O0FDYkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDZkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsbUNBQW1DO0FBQ25DOztBQy9CQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUNmQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3JFQTtBQUNBO0FBQ0E7O0FDRkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ2RBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNSQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDZEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDeEJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxtQ0FBbUM7QUFDbkM7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQzs7QUMvREE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSxDO0FDaEVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ05BO0FBQ0E7QUFDQTs7QUNGQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDWEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOzs7O0FDekJBOztBQUVBOztBQUVBOztBQUVBOztBQUVBIiwiZmlsZSI6Im14dWkvdWkvbXh1aS5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuXHRFc3NlbnRpYWwgc3R5bGVzIHRoYXQgdGhlbWVzIGNhbiBpbmhlcml0LlxuXHRJbiBvdGhlciB3b3Jkcywgd29ya3MgYnV0IGRvZXNuJ3QgbG9vayBncmVhdC5cbiovXG5cblxuXG4vKioqKlxuXHRcdEdFTkVSSUMgUElFQ0VTXG4gKioqKi9cblxuLmRpaml0UmVzZXQge1xuXHQvKiBVc2UgdGhpcyBzdHlsZSB0byBudWxsIG91dCBwYWRkaW5nLCBtYXJnaW4sIGJvcmRlciBpbiB5b3VyIHRlbXBsYXRlIGVsZW1lbnRzXG5cdFx0c28gdGhhdCBwYWdlIHNwZWNpZmljIHN0eWxlcyBkb24ndCBicmVhayB0aGVtLlxuXHRcdC0gVXNlIGluIGFsbCBUQUJMRSwgVFIgYW5kIFREIHRhZ3MuXG5cdCovXG5cdG1hcmdpbjowO1xuXHRib3JkZXI6MDtcblx0cGFkZGluZzowO1xuXHRmb250OiBpbmhlcml0O1xuXHRsaW5lLWhlaWdodDpub3JtYWw7XG5cdGNvbG9yOiBpbmhlcml0O1xufVxuLmRqX2ExMXkgLmRpaml0UmVzZXQge1xuXHQtbW96LWFwcGVhcmFuY2U6IG5vbmU7IC8qIHJlbW92ZSBwcmVkZWZpbmVkIGhpZ2gtY29udHJhc3Qgc3R5bGluZyBpbiBGaXJlZm94ICovXG59XG5cbi5kaWppdElubGluZSB7XG5cdC8qICBUbyBpbmxpbmUgYmxvY2sgZWxlbWVudHMuXG5cdFx0U2ltaWxhciB0byBJbmxpbmVCb3ggYmVsb3csIGJ1dCB0aGlzIGhhcyBmZXdlciBzaWRlLWVmZmVjdHMgaW4gTW96LlxuXHRcdEFsc28sIGFwcGFyZW50bHkgd29ya3Mgb24gYSBESVYgYXMgd2VsbCBhcyBhIEZJRUxEU0VULlxuXHQqL1xuXHRkaXNwbGF5OmlubGluZS1ibG9jaztcdFx0XHQvKiB3ZWJraXQgYW5kIEZGMyAqL1xuXHQjem9vbTogMTsgLyogc2V0IGhhc0xheW91dDp0cnVlIHRvIG1pbWljIGlubGluZS1ibG9jayAqL1xuXHQjZGlzcGxheTppbmxpbmU7IC8qIGRvbid0IHVzZSAuZGpfaWUgc2luY2UgdGhhdCBpbmNyZWFzZXMgdGhlIHByaW9yaXR5ICovXG5cdGJvcmRlcjowO1xuXHRwYWRkaW5nOjA7XG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0I3ZlcnRpY2FsLWFsaWduOiBhdXRvO1x0LyogbWFrZXMgVGV4dEJveCxCdXR0b24gbGluZSB1cCB3L25hdGl2ZSBjb3VudGVycGFydHMgb24gSUU2ICovXG59XG5cbnRhYmxlLmRpaml0SW5saW5lIHtcblx0LyogVG8gaW5saW5lIHRhYmxlcyB3aXRoIGEgZ2l2ZW4gd2lkdGggc2V0ICovXG5cdGRpc3BsYXk6aW5saW5lLXRhYmxlO1xuXHRib3gtc2l6aW5nOiBjb250ZW50LWJveDsgLW1vei1ib3gtc2l6aW5nOiBjb250ZW50LWJveDtcbn1cblxuLmRpaml0SGlkZGVuIHtcblx0LyogVG8gaGlkZSB1bnNlbGVjdGVkIHBhbmVzIGluIFN0YWNrQ29udGFpbmVyIGV0Yy4gKi9cblx0cG9zaXRpb246IGFic29sdXRlOyAvKiByZW1vdmUgZnJvbSBub3JtYWwgZG9jdW1lbnQgZmxvdyB0byBzaW11bGF0ZSBkaXNwbGF5OiBub25lICovXG5cdHZpc2liaWxpdHk6IGhpZGRlbjsgLyogaGlkZSBlbGVtZW50IGZyb20gdmlldywgYnV0IGRvbid0IGJyZWFrIHNjcm9sbGluZywgc2VlICMxODYxMiAqL1xufVxuLmRpaml0SGlkZGVuICoge1xuXHR2aXNpYmlsaXR5OiBoaWRkZW4gIWltcG9ydGFudDsgLyogaGlkZSB2aXNpYmlsaXR5OnZpc2libGUgZGVzY2VuZGFudHMgb2YgY2xhc3M9ZGlqaXRIaWRkZW4gbm9kZXMsIHNlZSAjMTg3OTkgKi9cbn1cblxuLmRpaml0VmlzaWJsZSB7XG5cdC8qIFRvIHNob3cgc2VsZWN0ZWQgcGFuZSBpbiBTdGFja0NvbnRhaW5lciBldGMuICovXG5cdGRpc3BsYXk6IGJsb2NrICFpbXBvcnRhbnQ7XHQvKiBvdmVycmlkZSB1c2VyJ3MgZGlzcGxheTpub25lIHNldHRpbmcgdmlhIHN0eWxlIHNldHRpbmcgb3IgaW5kaXJlY3RseSB2aWEgY2xhc3MgKi9cblx0cG9zaXRpb246IHJlbGF0aXZlO1x0XHRcdC8qIHRvIHN1cHBvcnQgc2V0dGluZyB3aWR0aC9oZWlnaHQsIHNlZSAjMjAzMyAqL1xuXHR2aXNpYmlsaXR5OiB2aXNpYmxlO1xufVxuXG4uZGpfaWU2IC5kaWppdENvbWJvQm94IC5kaWppdElucHV0Q29udGFpbmVyLFxuLmRpaml0SW5wdXRDb250YWluZXIge1xuXHQvKiBmb3IgcG9zaXRpb25pbmcgb2YgcGxhY2VIb2xkZXIgKi9cblx0I3pvb206IDE7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdGZsb2F0OiBub25lICFpbXBvcnRhbnQ7IC8qIG5lZWRlZCB0byBzcXVlZXplIHRoZSBJTlBVVCBpbiAqL1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG59XG4uZGpfaWU3IC5kaWppdElucHV0Q29udGFpbmVyIHtcblx0ZmxvYXQ6IGxlZnQgIWltcG9ydGFudDsgLyogbmVlZGVkIGJ5IElFIHRvIHNxdWVlemUgdGhlIElOUFVUIGluICovXG5cdGNsZWFyOiBsZWZ0O1xuXHRkaXNwbGF5OiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDsgLyogdG8gZml4IHdyb25nIHRleHQgYWxpZ25tZW50IGluIHRleHRkaXI9cnRsIHRleHQgYm94ICovXG59XG5cbi5kal9pZSAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWUgaW5wdXQuZGlqaXRUZXh0Qm94LFxuLmRqX2llIC5kaWppdFRleHRCb3ggaW5wdXQge1xuXHRmb250LXNpemU6IDEwMCU7XG59XG4uZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uVGV4dCB7XG5cdGZsb2F0OiBsZWZ0O1xuXHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuVEFCTEUuZGlqaXRTZWxlY3Qge1xuXHRwYWRkaW5nOiAwICFpbXBvcnRhbnQ7IC8qIG1lc3NlcyB1cCBib3JkZXIgYWxpZ25tZW50ICovXG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7IC8qIHNvIGpzZmlkZGxlIHdvcmtzIHdpdGggTm9ybWFsaXplZCBDU1MgY2hlY2tlZCAqL1xufVxuLmRpaml0VGV4dEJveCAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyLFxuLmRpaml0VGV4dEJveCAuZGlqaXRBcnJvd0J1dHRvbkNvbnRhaW5lcixcbi5kaWppdFZhbGlkYXRpb25UZXh0Qm94IC5kaWppdFZhbGlkYXRpb25Db250YWluZXIge1xuXHRmbG9hdDogcmlnaHQ7XG5cdHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5kaWppdFNlbGVjdCBpbnB1dC5kaWppdElucHV0RmllbGQsXG4uZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRGaWVsZCB7XG5cdC8qIG92ZXJyaWRlIHVucmVhc29uYWJsZSB1c2VyIHN0eWxpbmcgb2YgYnV0dG9ucyBhbmQgaWNvbnMgKi9cblx0cGFkZGluZy1sZWZ0OiAwICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmctcmlnaHQ6IDAgIWltcG9ydGFudDtcbn1cbi5kaWppdFZhbGlkYXRpb25UZXh0Qm94IC5kaWppdFZhbGlkYXRpb25Db250YWluZXIge1xuXHRkaXNwbGF5OiBub25lO1xufVxuXG4uZGlqaXRUZWVueSB7XG5cdGZvbnQtc2l6ZToxcHg7XG5cdGxpbmUtaGVpZ2h0OjFweDtcbn1cblxuLmRpaml0T2ZmU2NyZWVuIHsgLyogdGhlc2UgY2xhc3MgYXR0cmlidXRlcyBzaG91bGQgc3VwZXJzZWRlIGFueSBpbmxpbmUgcG9zaXRpb25pbmcgc3R5bGUgKi9cblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdGxlZnQ6IC0xMDAwMHB4ICFpbXBvcnRhbnQ7XG5cdHRvcDogLTEwMDAwcHggIWltcG9ydGFudDtcbn1cblxuLypcbiAqIFBvcHVwIGl0ZW1zIGhhdmUgYSB3cmFwcGVyIGRpdiAoZGlqaXRQb3B1cClcbiAqIHdpdGggdGhlIHJlYWwgcG9wdXAgaW5zaWRlLCBhbmQgbWF5YmUgYW4gaWZyYW1lIHRvb1xuICovXG4uZGlqaXRQb3B1cCB7XG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0YmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQ7XG5cdG1hcmdpbjogMDtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xuXHQtd2Via2l0LW92ZXJmbG93LXNjcm9sbGluZzogdG91Y2g7XG59XG5cbi5kaWppdFBvc2l0aW9uT25seSB7XG5cdC8qIE51bGwgb3V0IGFsbCBwb3NpdGlvbi1yZWxhdGVkIHByb3BlcnRpZXMgKi9cblx0cGFkZGluZzogMCAhaW1wb3J0YW50O1xuXHRib3JkZXI6IDAgIWltcG9ydGFudDtcblx0YmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblx0YmFja2dyb3VuZC1pbWFnZTogbm9uZSAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcblx0d2lkdGg6IGF1dG8gIWltcG9ydGFudDtcbn1cblxuLmRpaml0Tm9uUG9zaXRpb25Pbmx5IHtcblx0LyogTnVsbCBwb3NpdGlvbi1yZWxhdGVkIHByb3BlcnRpZXMgKi9cblx0ZmxvYXQ6IG5vbmUgIWltcG9ydGFudDtcblx0cG9zaXRpb246IHN0YXRpYyAhaW1wb3J0YW50O1xuXHRtYXJnaW46IDAgMCAwIDAgIWltcG9ydGFudDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZSAhaW1wb3J0YW50O1xufVxuXG4uZGlqaXRCYWNrZ3JvdW5kSWZyYW1lIHtcblx0LyogaWZyYW1lIHVzZWQgdG8gcHJldmVudCBwcm9ibGVtcyB3aXRoIFBERiBvciBvdGhlciBhcHBsZXRzIG92ZXJsYXlpbmcgbWVudXMgZXRjICovXG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0bGVmdDogMDtcblx0dG9wOiAwO1xuXHR3aWR0aDogMTAwJTtcblx0aGVpZ2h0OiAxMDAlO1xuXHR6LWluZGV4OiAtMTtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdERpc3BsYXlOb25lIHtcblx0LyogaGlkZSBzb21ldGhpbmcuICBVc2UgdGhpcyBhcyBhIGNsYXNzIHJhdGhlciB0aGFuIGVsZW1lbnQuc3R5bGUgc28gYW5vdGhlciBjbGFzcyBjYW4gb3ZlcnJpZGUgKi9cblx0ZGlzcGxheTpub25lICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdENvbnRhaW5lciB7XG5cdC8qIGZvciBhbGwgbGF5b3V0IGNvbnRhaW5lcnMgKi9cblx0b3ZlcmZsb3c6IGhpZGRlbjtcdC8qIG5lZWQgb24gSUUgc28gc29tZXRoaW5nIGNhbiBiZSByZWR1Y2VkIGluIHNpemUsIGFuZCBzbyBzY3JvbGxiYXJzIGFyZW4ndCB0ZW1wb3JhcmlseSBkaXNwbGF5ZWQgd2hlbiByZXNpemluZyAqL1xufVxuXG4vKioqKlxuXHRcdEExMVlcbiAqKioqL1xuLmRqX2ExMXkgLmRpaml0SWNvbixcbi5kal9hMTF5IGRpdi5kaWppdEFycm93QnV0dG9uSW5uZXIsIC8qIGlzIHRoaXMgb25seSBmb3IgU3Bpbm5lcj8gIGlmIHNvLCBpdCBzaG91bGQgYmUgZGVsZXRlZCAqL1xuLmRqX2ExMXkgc3Bhbi5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGpfYTExeSBpbWcuZGlqaXRBcnJvd0J1dHRvbklubmVyLFxuLmRqX2ExMXkgLmRpaml0Q2FsZW5kYXJJbmNyZW1lbnRDb250cm9sLFxuLmRqX2ExMXkgLmRpaml0VHJlZUV4cGFuZG8ge1xuXHQvKiBoaWRlIGljb24gbm9kZXMgaW4gaGlnaCBjb250cmFzdCBtb2RlOyB3aGVuIG5lY2Vzc2FyeSB0aGV5IHdpbGwgYmUgcmVwbGFjZWQgYnkgY2hhcmFjdGVyIGVxdWl2YWxlbnRzXG5cdCAqIGV4Y2VwdGlvbiBmb3IgaW5wdXQuZGlqaXRBcnJvd0J1dHRvbklubmVyLCBiZWNhdXNlIHRoZSBpY29uIGFuZCBjaGFyYWN0ZXIgYXJlIGNvbnRyb2xsZWQgYnkgdGhlIHNhbWUgbm9kZSAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRpaml0U3Bpbm5lciBkaXYuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0ZGlzcGxheTogYmxvY2s7IC8qIG92ZXJyaWRlIHByZXZpb3VzIHJ1bGUgKi9cbn1cblxuLmRqX2ExMXkgLmRpaml0QTExeVNpZGVBcnJvdyB7XG5cdGRpc3BsYXk6IGlubGluZSAhaW1wb3J0YW50OyAvKiBkaXNwbGF5IHRleHQgaW5zdGVhZCAqL1xuXHRjdXJzb3I6IHBvaW50ZXI7XG59XG5cbi8qXG4gKiBTaW5jZSB3ZSBjYW4ndCB1c2Ugc2hhZGluZyBpbiBhMTF5IG1vZGUsIGFuZCBzaW5jZSB0aGUgdW5kZXJsaW5lIGluZGljYXRlcyB0b2RheSdzIGRhdGUsXG4gKiB1c2UgYSBib3JkZXIgdG8gc2hvdyB0aGUgc2VsZWN0ZWQgZGF0ZS5cbiAqIEF2b2lkIHNjcmVlbiBqaXR0ZXIgd2hlbiBzd2l0Y2hpbmcgc2VsZWN0ZWQgZGF0ZSBieSBjb21wZW5zYXRpbmcgZm9yIHRoZSBzZWxlY3RlZCBub2RlJ3NcbiAqIGJvcmRlciB3L3BhZGRpbmcgb24gb3RoZXIgbm9kZXMuXG4gKi9cbi5kal9hMTF5IC5kaWppdENhbGVuZGFyRGF0ZUxhYmVsIHtcblx0cGFkZGluZzogMXB4O1xuXHRib3JkZXI6IDBweCAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0Q2FsZW5kYXJTZWxlY3RlZERhdGUgLmRpaml0Q2FsZW5kYXJEYXRlTGFiZWwge1xuXHRib3JkZXItc3R5bGU6IHNvbGlkICFpbXBvcnRhbnQ7XG5cdGJvcmRlci13aWR0aDogMXB4ICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmc6IDA7XG59XG4uZGpfYTExeSAuZGlqaXRDYWxlbmRhckRhdGVUZW1wbGF0ZSB7XG5cdHBhZGRpbmctYm90dG9tOiAwLjFlbSAhaW1wb3J0YW50O1x0Lyogb3RoZXJ3aXNlIGJvdHRvbSBib3JkZXIgZG9lc24ndCBhcHBlYXIgb24gSUUgKi9cblx0Ym9yZGVyOiAwcHggIWltcG9ydGFudDtcbn1cbi5kal9hMTF5IC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXI6IGJsYWNrIG91dHNldCBtZWRpdW0gIWltcG9ydGFudDtcblxuXHQvKiBJbiBjbGFybywgaG92ZXJpbmcgYSB0b29sYmFyIGJ1dHRvbiByZWR1Y2VzIHBhZGRpbmcgYW5kIGFkZHMgYSBib3JkZXIuXG5cdCAqIE5vdCBuZWVkZWQgaW4gYTExeSBtb2RlIHNpbmNlIFRvb2xiYXIgYnV0dG9ucyBhbHdheXMgaGF2ZSBhIGJvcmRlci5cblx0ICovXG5cdHBhZGRpbmc6IDAgIWltcG9ydGFudDtcbn1cbi5kal9hMTF5IC5kaWppdEFycm93QnV0dG9uIHtcblx0cGFkZGluZzogMCAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXRCdXR0b25Db250ZW50cyB7XG5cdG1hcmdpbjogMC4xNWVtOyAvKiBNYXJnaW4gbmVlZGVkIHRvIG1ha2UgZm9jdXMgb3V0bGluZSB2aXNpYmxlICovXG59XG5cbi5kal9hMTF5IC5kaWppdFRleHRCb3hSZWFkT25seSAuZGlqaXRJbnB1dEZpZWxkLFxuLmRqX2ExMXkgLmRpaml0VGV4dEJveFJlYWRPbmx5IC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItc3R5bGU6IG91dHNldCFpbXBvcnRhbnQ7XG5cdGJvcmRlci13aWR0aDogbWVkaXVtIWltcG9ydGFudDtcblx0Ym9yZGVyLWNvbG9yOiAjOTk5ICFpbXBvcnRhbnQ7XG5cdGNvbG9yOiM5OTkgIWltcG9ydGFudDtcbn1cblxuLyogYnV0dG9uIGlubmVyIGNvbnRlbnRzIC0gbGFiZWxzLCBpY29ucyBldGMuICovXG4uZGlqaXRCdXR0b25Ob2RlICoge1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLmRpaml0U2VsZWN0IC5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGlqaXRCdXR0b25Ob2RlIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHQvKiB0aGUgYXJyb3cgaWNvbiBub2RlICovXG5cdGJhY2tncm91bmQ6IG5vLXJlcGVhdCBjZW50ZXI7XG5cdHdpZHRoOiAxMnB4O1xuXHRoZWlnaHQ6IDEycHg7XG5cdGRpcmVjdGlvbjogbHRyOyAvKiBuZWVkZWQgYnkgSUUvUlRMICovXG59XG5cbi8qKioqXG5cdDMtZWxlbWVudCBib3JkZXJzOiAgKCBkaWppdExlZnQgKyBkaWppdFN0cmV0Y2ggKyBkaWppdFJpZ2h0IClcblx0VGhlc2Ugd2VyZSBhZGRlZCBmb3Igcm91bmRlZCBjb3JuZXJzIG9uIGRpaml0LmZvcm0uKkJ1dHRvbiBidXQgbmV2ZXIgYWN0dWFsbHkgdXNlZC5cbiAqKioqL1xuXG4uZGlqaXRMZWZ0IHtcblx0LyogTGVmdCBwYXJ0IG9mIGEgMy1lbGVtZW50IGJvcmRlciAqL1xuXHRiYWNrZ3JvdW5kLXBvc2l0aW9uOmxlZnQgdG9wO1xuXHRiYWNrZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7XG59XG5cbi5kaWppdFN0cmV0Y2gge1xuXHQvKiBNaWRkbGUgKHN0cmV0Y2h5KSBwYXJ0IG9mIGEgMy1lbGVtZW50IGJvcmRlciAqL1xuXHR3aGl0ZS1zcGFjZTpub3dyYXA7XHRcdFx0LyogTU9XOiBtb3ZlIHNvbWV3aGVyZSBlbHNlICovXG5cdGJhY2tncm91bmQtcmVwZWF0OnJlcGVhdC14O1xufVxuXG4uZGlqaXRSaWdodCB7XG5cdC8qIFJpZ2h0IHBhcnQgb2YgYSAzLWVsZW1lbnQgYm9yZGVyICovXG5cdCNkaXNwbGF5OmlubGluZTtcdFx0XHRcdC8qIElFNyBzaXplcyB0byBvdXRlciBzaXplIHcvbyB0aGlzICovXG5cdGJhY2tncm91bmQtcG9zaXRpb246cmlnaHQgdG9wO1xuXHRiYWNrZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7XG59XG5cbi8qIEJ1dHRvbnMgKi9cbi5kal9nZWNrbyAuZGpfYTExeSAuZGlqaXRCdXR0b25EaXNhYmxlZCAuZGlqaXRCdXR0b25Ob2RlIHtcblx0b3BhY2l0eTogMC41O1xufVxuXG4uZGlqaXRUb2dnbGVCdXR0b24sXG4uZGlqaXRCdXR0b24sXG4uZGlqaXREcm9wRG93bkJ1dHRvbixcbi5kaWppdENvbWJvQnV0dG9uIHtcblx0Lyogb3V0c2lkZSBvZiBidXR0b24gKi9cblx0bWFyZ2luOiAwLjJlbTtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cblxuLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRkaXNwbGF5OiBibG9jaztcdFx0LyogdG8gbWFrZSBmb2N1cyBib3JkZXIgcmVjdGFuZ3VsYXIgKi9cbn1cbnRkLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRkaXNwbGF5OiB0YWJsZS1jZWxsO1x0LyogYnV0IGRvbid0IGFmZmVjdCBTZWxlY3QsIENvbWJvQnV0dG9uICovXG59XG5cbi5kaWppdEJ1dHRvbk5vZGUgaW1nIHtcblx0LyogbWFrZSB0ZXh0IGFuZCBpbWFnZXMgbGluZSB1cCBjbGVhbmx5ICovXG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0LyptYXJnaW4tYm90dG9tOi4yZW07Ki9cbn1cblxuLmRpaml0VG9vbGJhciAuZGlqaXRDb21ib0J1dHRvbiB7XG5cdC8qIGJlY2F1c2UgVG9vbGJhciBvbmx5IGRyYXdzIGEgYm9yZGVyIGFyb3VuZCB0aGUgaG92ZXJlZCB0aGluZyAqL1xuXHRib3JkZXItY29sbGFwc2U6IHNlcGFyYXRlO1xufVxuXG4uZGlqaXRUb29sYmFyIC5kaWppdFRvZ2dsZUJ1dHRvbixcbi5kaWppdFRvb2xiYXIgLmRpaml0QnV0dG9uLFxuLmRpaml0VG9vbGJhciAuZGlqaXREcm9wRG93bkJ1dHRvbixcbi5kaWppdFRvb2xiYXIgLmRpaml0Q29tYm9CdXR0b24ge1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdFRvb2xiYXIgLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHQvKiBqdXN0IGJlY2F1c2UgaXQgdXNlZCB0byBiZSB0aGlzIHdheSAqL1xuXHRwYWRkaW5nOiAxcHggMnB4O1xufVxuXG5cbi5kal93ZWJraXQgLmRpaml0VG9vbGJhciAuZGlqaXREcm9wRG93bkJ1dHRvbiB7XG5cdHBhZGRpbmctbGVmdDogMC4zZW07XG59XG4uZGpfZ2Vja28gLmRpaml0VG9vbGJhciAuZGlqaXRCdXR0b25Ob2RlOjotbW96LWZvY3VzLWlubmVyIHtcblx0cGFkZGluZzowO1xufVxuXG4uZGlqaXRTZWxlY3Qge1xuXHRib3JkZXI6MXB4IHNvbGlkIGdyYXk7XG59XG4uZGlqaXRCdXR0b25Ob2RlIHtcblx0LyogTm9kZSB0aGF0IGlzIGFjdGluZyBhcyBhIGJ1dHRvbiAtLSBtYXkgb3IgbWF5IG5vdCBiZSBhIEJVVFRPTiBlbGVtZW50ICovXG5cdGJvcmRlcjoxcHggc29saWQgZ3JheTtcblx0bWFyZ2luOjA7XG5cdGxpbmUtaGVpZ2h0Om5vcm1hbDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcblx0I3ZlcnRpY2FsLWFsaWduOiBhdXRvO1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcbn1cbi5kal93ZWJraXQgLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIHtcblx0LyogYXBwYXJlbnQgV2ViS2l0IGJ1ZyB3aGVyZSBtZXNzaW5nIHdpdGggdGhlIGZvbnQgY291cGxlZCB3aXRoIGxpbmUtaGVpZ2h0Om5vcm1hbCBYIDIgKGRpaml0UmVzZXQgJiBkaWppdEJ1dHRvbk5vZGUpXG5cdGNhbiBiZSBkaWZmZXJlbnQgdGhhbiBqdXN0IGEgc2luZ2xlIGxpbmUtaGVpZ2h0Om5vcm1hbCwgdmlzaWJsZSBpbiBJbmxpbmVFZGl0Qm94L1NwaW5uZXIgKi9cblx0bGluZS1oZWlnaHQ6aW5oZXJpdDtcbn1cbi5kaWppdFRleHRCb3ggLmRpaml0QnV0dG9uTm9kZSB7XG5cdGJvcmRlci13aWR0aDogMDtcbn1cblxuLmRpaml0U2VsZWN0LFxuLmRpaml0U2VsZWN0ICosXG4uZGlqaXRCdXR0b25Ob2RlLFxuLmRpaml0QnV0dG9uTm9kZSAqIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGpfaWUgLmRpaml0QnV0dG9uTm9kZSB7XG5cdC8qIGVuc3VyZSBoYXNMYXlvdXQgKi9cblx0em9vbTogMTtcbn1cblxuLmRqX2llIC5kaWppdEJ1dHRvbk5vZGUgYnV0dG9uIHtcblx0Lypcblx0XHRkaXNndXN0aW5nIGhhY2sgdG8gZ2V0IHJpZCBvZiBzcHVyaW91cyBwYWRkaW5nIGFyb3VuZCBidXR0b24gZWxlbWVudHNcblx0XHRvbiBJRS4gTVNJRSBpcyB0cnVseSB0aGUgd2ViJ3MgYm9hdCBhbmNob3IuXG5cdCovXG5cdG92ZXJmbG93OiB2aXNpYmxlO1xufVxuXG5kaXYuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdGZsb2F0OiByaWdodDtcbn1cblxuLyoqKioqKlxuXHRUZXh0Qm94IHJlbGF0ZWQuXG5cdEV2ZXJ5dGhpbmcgdGhhdCBoYXMgYW4gPGlucHV0PlxuKioqKioqKi9cblxuLmRpaml0VGV4dEJveCB7XG5cdGJvcmRlcjogc29saWQgYmxhY2sgMXB4O1xuXHQjb3ZlcmZsb3c6IGhpZGRlbjsgLyogIzYwMjcsICM2MDY3ICovXG5cdHdpZHRoOiAxNWVtO1x0LyogbmVlZCB0byBzZXQgZGVmYXVsdCBzaXplIG9uIG91dGVyIG5vZGUgc2luY2UgaW5uZXIgbm9kZXMgc2F5IDxpbnB1dCBzdHlsZT1cIndpZHRoOjEwMCVcIj4gYW5kIDx0ZCB3aWR0aD0xMDAlPi4gIHVzZXIgY2FuIG92ZXJyaWRlICovXG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kaWppdFRleHRCb3hSZWFkT25seSxcbi5kaWppdFRleHRCb3hEaXNhYmxlZCB7XG5cdGNvbG9yOiBncmF5O1xufVxuLmRqX3NhZmFyaSAuZGlqaXRUZXh0Qm94RGlzYWJsZWQgaW5wdXQge1xuXHRjb2xvcjogI0IwQjBCMDsgLyogYmVjYXVzZSBTYWZhcmkgbGlnaHRlbnMgZGlzYWJsZWQgaW5wdXQvdGV4dGFyZWEgbm8gbWF0dGVyIHdoYXQgY29sb3IgeW91IHNwZWNpZnkgKi9cbn1cbi5kal9zYWZhcmkgdGV4dGFyZWEuZGlqaXRUZXh0QXJlYURpc2FibGVkIHtcblx0Y29sb3I6ICMzMzM7IC8qIGJlY2F1c2UgU2FmYXJpIGxpZ2h0ZW5zIGRpc2FibGVkIGlucHV0L3RleHRhcmVhIG5vIG1hdHRlciB3aGF0IGNvbG9yIHlvdSBzcGVjaWZ5ICovXG59XG4uZGpfZ2Vja28gLmRpaml0VGV4dEJveFJlYWRPbmx5IGlucHV0LmRpaml0SW5wdXRGaWVsZCwgLyogZGlzYWJsZSBhcnJvdyBhbmQgdmFsaWRhdGlvbiBwcmVzZW50YXRpb24gaW5wdXRzIGJ1dCBhbGxvdyByZWFsIGlucHV0IGZvciB0ZXh0IHNlbGVjdGlvbiAqL1xuLmRqX2dlY2tvIC5kaWppdFRleHRCb3hEaXNhYmxlZCBpbnB1dCB7XG5cdC1tb3otdXNlci1pbnB1dDogbm9uZTsgLyogcHJldmVudCBmb2N1cyBvZiBkaXNhYmxlZCB0ZXh0Ym94IGJ1dHRvbnMgKi9cbn1cblxuLmRpaml0UGxhY2VIb2xkZXIge1xuXHQvKiBoaW50IHRleHQgdGhhdCBhcHBlYXJzIGluIGEgdGV4dGJveCB1bnRpbCB1c2VyIHN0YXJ0cyB0eXBpbmcgKi9cblx0Y29sb3I6ICNBQUFBQUE7XG5cdGZvbnQtc3R5bGU6IGl0YWxpYztcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR0b3A6IDA7XG5cdGxlZnQ6IDA7XG5cdCNmaWx0ZXI6IFwiXCI7IC8qIG1ha2UgdGhpcyBzaG93IHVwIGluIElFNiBhZnRlciB0aGUgcmVuZGVyaW5nIG9mIHRoZSB3aWRnZXQgKi9cblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcblx0cG9pbnRlci1ldmVudHM6IG5vbmU7ICAgLyogc28gY3V0L3Bhc3RlIGNvbnRleHQgbWVudSBzaG93cyB1cCB3aGVuIHJpZ2h0IGNsaWNraW5nICovXG59XG5cbi5kaWppdFRpbWVUZXh0Qm94IHtcblx0d2lkdGg6IDhlbTtcbn1cblxuLyogcnVsZXMgZm9yIHdlYmtpdCB0byBkZWFsIHdpdGggZnV6enkgYmx1ZSBmb2N1cyBib3JkZXIgKi9cbi5kaWppdFRleHRCb3ggaW5wdXQ6Zm9jdXMge1xuXHRvdXRsaW5lOiBub25lO1x0LyogYmx1ZSBmdXp6eSBsaW5lIGxvb2tzIHdyb25nIG9uIGNvbWJvYm94IG9yIHNvbWV0aGluZyB3L3ZhbGlkYXRpb24gaWNvbiBzaG93aW5nICovXG59XG4uZGlqaXRUZXh0Qm94Rm9jdXNlZCB7XG5cdG91dGxpbmU6IDVweCAtd2Via2l0LWZvY3VzLXJpbmctY29sb3I7XG59XG5cbi5kaWppdFNlbGVjdCBpbnB1dCxcbi5kaWppdFRleHRCb3ggaW5wdXQge1xuXHRmbG9hdDogbGVmdDsgLyogbmVlZGVkIGJ5IElFIHRvIHJlbW92ZSBzZWNyZXQgbWFyZ2luICovXG59XG4uZGpfaWU2IGlucHV0LmRpaml0VGV4dEJveCxcbi5kal9pZTYgLmRpaml0VGV4dEJveCBpbnB1dCB7XG5cdGZsb2F0OiBub25lO1xufVxuLmRpaml0SW5wdXRJbm5lciB7XG5cdC8qIGZvciB3aGVuIGFuIDxpbnB1dD4gaXMgZW1iZWRkZWQgaW5zaWRlIGFuIGlubGluZS1ibG9jayA8ZGl2PiB3aXRoIGEgc2l6ZSBhbmQgYm9yZGVyICovXG5cdGJvcmRlcjowICFpbXBvcnRhbnQ7XG5cdGJhY2tncm91bmQtY29sb3I6dHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblx0d2lkdGg6MTAwJSAhaW1wb3J0YW50O1xuXHQvKiBJRSBkaXNsaWtlcyBob3Jpem9udGFsIHR3ZWFraW5nIGNvbWJpbmVkIHdpdGggd2lkdGg6MTAwJSBzbyBwdW5pc2ggZXZlcnlvbmUgZm9yIGNvbnNpc3RlbmN5ICovXG5cdHBhZGRpbmctbGVmdDogMCAhaW1wb3J0YW50O1xuXHRwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1sZWZ0OiAwICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1yaWdodDogMCAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0VGV4dEJveCBpbnB1dCB7XG5cdG1hcmdpbjogMCAhaW1wb3J0YW50O1xufVxuLmRpaml0VmFsaWRhdGlvblRleHRCb3hFcnJvciBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kaWppdFNlbGVjdCBpbnB1dCxcbi5kaWppdFRleHRCb3ggaW5wdXQuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0LyogPGlucHV0PiB1c2VkIHRvIGRpc3BsYXkgYXJyb3cgaWNvbi92YWxpZGF0aW9uIGljb24sIG9yIGluIGFycm93IGNoYXJhY3RlciBpbiBoaWdoIGNvbnRyYXN0IG1vZGUuXG5cdCAqIFRoZSBjc3MgYmVsb3cgaXMgYSB0cmljayB0byBoaWRlIHRoZSBjaGFyYWN0ZXIgaW4gbm9uLWhpZ2gtY29udHJhc3QgbW9kZVxuXHQgKi9cblx0dGV4dC1pbmRlbnQ6IC0yZW0gIWltcG9ydGFudDtcblx0ZGlyZWN0aW9uOiBsdHIgIWltcG9ydGFudDtcblx0dGV4dC1hbGlnbjogbGVmdCAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcblx0I3RleHQtaW5kZW50OiAwICFpbXBvcnRhbnQ7XG5cdCNsZXR0ZXItc3BhY2luZzogLTVlbSAhaW1wb3J0YW50O1xuXHQjdGV4dC1hbGlnbjogcmlnaHQgIWltcG9ydGFudDtcbn1cbi5kal9pZSAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWUgLmRpaml0VGV4dEJveCBpbnB1dCxcbi5kal9pZSBpbnB1dC5kaWppdFRleHRCb3gge1xuXHRvdmVyZmxvdy15OiB2aXNpYmxlOyAvKiBpbnB1dHMgbmVlZCBoZWxwIGV4cGFuZGluZyB3aGVuIHBhZGRpbmcgaXMgYWRkZWQgb3IgbGluZS1oZWlnaHQgaXMgYWRqdXN0ZWQgKi9cblx0bGluZS1oZWlnaHQ6IG5vcm1hbDsgLyogc3RyaWN0IG1vZGUgKi9cbn1cbi5kaWppdFNlbGVjdCAuZGlqaXRTZWxlY3RMYWJlbCBzcGFuIHtcblx0bGluZS1oZWlnaHQ6IDEwMCU7XG59XG4uZGpfaWUgLmRpaml0U2VsZWN0IC5kaWppdFNlbGVjdExhYmVsIHtcblx0bGluZS1oZWlnaHQ6IG5vcm1hbDtcbn1cbi5kal9pZTYgLmRpaml0U2VsZWN0IC5kaWppdFNlbGVjdExhYmVsLFxuLmRqX2llNyAuZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwsXG4uZGpfaWU4IC5kaWppdFNlbGVjdCAuZGlqaXRTZWxlY3RMYWJlbCxcbi5kal9pZXF1aXJrcyAuZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwsXG4uZGlqaXRTZWxlY3QgdGQsXG4uZGpfaWU2IC5kaWppdFNlbGVjdCBpbnB1dCxcbi5kal9pZXF1aXJrcyAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWU2IC5kaWppdFNlbGVjdCAuZGlqaXRWYWxpZGF0aW9uQ29udGFpbmVyLFxuLmRqX2llNiAuZGlqaXRUZXh0Qm94IGlucHV0LFxuLmRqX2llNiBpbnB1dC5kaWppdFRleHRCb3gsXG4uZGpfaWVxdWlya3MgLmRpaml0VGV4dEJveCBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kal9pZXF1aXJrcyAuZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0QXJyb3dCdXR0b25Jbm5lcixcbi5kal9pZXF1aXJrcyAuZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0U3Bpbm5lckJ1dHRvbklubmVyLFxuLmRqX2llcXVpcmtzIC5kaWppdFRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRqX2llcXVpcmtzIGlucHV0LmRpaml0VGV4dEJveCB7XG5cdGxpbmUtaGVpZ2h0OiAxMDAlOyAvKiBJRTcgcHJvYmxlbSB3aGVyZSB0aGUgaWNvbiBpcyB2ZXJ0aWNhbGx5IHdheSB0b28gbG93IHcvbyB0aGlzICovXG59XG4uZGpfYTExeSBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kal9hMTF5IGlucHV0LmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdC8qIChpbiBoaWdoIGNvbnRyYXN0IG1vZGUpIHJldmVydCBydWxlcyBmcm9tIGFib3ZlIHNvIGNoYXJhY3RlciBkaXNwbGF5cyAqL1xuXHR0ZXh0LWluZGVudDogMCAhaW1wb3J0YW50O1xuXHR3aWR0aDogMWVtICFpbXBvcnRhbnQ7XG5cdCN0ZXh0LWFsaWduOiBsZWZ0ICFpbXBvcnRhbnQ7XG5cdGNvbG9yOiBibGFjayAhaW1wb3J0YW50O1xufVxuLmRpaml0VmFsaWRhdGlvblRleHRCb3hFcnJvciAuZGlqaXRWYWxpZGF0aW9uQ29udGFpbmVyIHtcblx0ZGlzcGxheTogaW5saW5lO1xuXHRjdXJzb3I6IGRlZmF1bHQ7XG59XG5cbi8qIENvbWJvQm94ICYgU3Bpbm5lciAqL1xuXG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGlqaXRDb21ib0JveCAuZGlqaXRBcnJvd0J1dHRvbkNvbnRhaW5lciB7XG5cdC8qIGRpdmlkaW5nIGxpbmUgYmV0d2VlbiBpbnB1dCBhcmVhIGFuZCB1cC9kb3duIGJ1dHRvbihzKSBmb3IgQ29tYm9Cb3ggYW5kIFNwaW5uZXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwIDAgMCAxcHggIWltcG9ydGFudDsgLyogIWltcG9ydGFudCBuZWVkZWQgZHVlIHRvIHdheXdhcmQgXCIudGhlbWUgLmRpaml0QnV0dG9uTm9kZVwiIHJ1bGVzICovXG59XG4uZGpfYTExeSAuZGlqaXRTZWxlY3QgLmRpaml0QXJyb3dCdXR0b25Db250YWluZXIsXG4uZGlqaXRUb29sYmFyIC5kaWppdENvbWJvQm94IC5kaWppdEFycm93QnV0dG9uQ29udGFpbmVyIHtcblx0Lyogb3ZlcnJpZGVzIGFib3ZlIHJ1bGUgcGx1cyBtaXJyb3ItaW1hZ2UgcnVsZSBpbiBkaWppdF9ydGwuY3NzIHRvIGhhdmUgbm8gZGl2aWRlciB3aGVuIENvbWJvQm94IGluIFRvb2xiYXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdENvbWJvQm94TWVudSB7XG5cdC8qIERyb3AgZG93biBtZW51IGlzIGltcGxlbWVudGVkIGFzIDx1bD4gPGxpLz4gPGxpLz4gLi4uIGJ1dCB3ZSBkb24ndCB3YW50IGNpcmNsZXMgYmVmb3JlIGVhY2ggaXRlbSAqL1xuXHRsaXN0LXN0eWxlLXR5cGU6IG5vbmU7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QnV0dG9uTm9kZSB7XG5cdC8qIGRpdmlkaW5nIGxpbmUgYmV0d2VlbiBpbnB1dCBhcmVhIGFuZCB1cC9kb3duIGJ1dHRvbihzKSBmb3IgQ29tYm9Cb3ggYW5kIFNwaW5uZXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwO1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdFNwaW5uZXIgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRCdXR0b25Ob2RlIHtcblx0Y2xlYXI6IGJvdGg7IC8qIElFIHdvcmthcm91bmQgKi9cbn1cblxuLmRqX2llIC5kaWppdFRvb2xiYXIgLmRpaml0Q29tYm9Cb3gge1xuXHQvKiBtYWtlIGNvbWJvYm94IGJ1dHRvbnMgYWxpZ24gcHJvcGVybHkgd2l0aCBvdGhlciBidXR0b25zIGluIGEgdG9vbGJhciAqL1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuXG4vKiBTcGlubmVyICovXG5cbi5kaWppdFRleHRCb3ggLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciB7XG5cdHdpZHRoOiAxZW07XG5cdHBvc2l0aW9uOiByZWxhdGl2ZSAhaW1wb3J0YW50O1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uSW5uZXIge1xuXHR3aWR0aDoxZW07XG5cdHZpc2liaWxpdHk6aGlkZGVuICFpbXBvcnRhbnQ7IC8qIGp1c3QgYSBzaXppbmcgZWxlbWVudCAqL1xuXHRvdmVyZmxvdy14OmhpZGRlbjtcbn1cbi5kaWppdENvbWJvQm94IC5kaWppdEJ1dHRvbk5vZGUsXG4uZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItd2lkdGg6IDA7XG59XG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItd2lkdGg6IDBweCAhaW1wb3J0YW50O1xuXHRib3JkZXItc3R5bGU6IHNvbGlkICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRUZXh0Qm94IC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIGlucHV0IHtcblx0d2lkdGg6IDFlbSAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0bWFyZ2luOiAwIGF1dG8gIWltcG9ydGFudDsgLyogc2hvdWxkIGF1dG8tY2VudGVyICovXG59XG4uZGpfaWUgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRwYWRkaW5nLWxlZnQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmctcmlnaHQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1sZWZ0OiAwLjNlbSAhaW1wb3J0YW50O1xuXHRtYXJnaW4tcmlnaHQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdHdpZHRoOiAxLjRlbSAhaW1wb3J0YW50O1xufVxuLmRqX2llNyAuZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIgLmRpaml0SW5wdXRGaWVsZCB7XG5cdHBhZGRpbmctbGVmdDogMCAhaW1wb3J0YW50OyAvKiBtYW51YWxseSBjZW50ZXIgSU5QVVQ6IGNoYXJhY3RlciBpcyAuNWVtIGFuZCB0b3RhbCB3aWR0aCA9IDFlbSAqL1xuXHRwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG5cdHdpZHRoOiAxZW0gIWltcG9ydGFudDtcbn1cbi5kal9pZTYgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRtYXJnaW4tbGVmdDogMC4xZW0gIWltcG9ydGFudDtcblx0bWFyZ2luLXJpZ2h0OiAwLjFlbSAhaW1wb3J0YW50O1xuXHR3aWR0aDogMWVtICFpbXBvcnRhbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRtYXJnaW4tbGVmdDogMCAhaW1wb3J0YW50O1xuXHRtYXJnaW4tcmlnaHQ6IDAgIWltcG9ydGFudDtcblx0d2lkdGg6IDJlbSAhaW1wb3J0YW50O1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEFycm93QnV0dG9uIHtcblx0Lyogbm90ZTogLmRpaml0SW5wdXRMYXlvdXRDb250YWluZXIgbWFrZXMgdGhpcyBydWxlIG92ZXJyaWRlIC5kaWppdEFycm93QnV0dG9uIHNldHRpbmdzXG5cdCAqIGZvciBkaWppdC5mb3JtLkJ1dHRvblxuXHQgKi9cblx0cGFkZGluZzogMDtcblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdHJpZ2h0OiAwO1xuXHRmbG9hdDogbm9uZTtcblx0aGVpZ2h0OiA1MCU7XG5cdHdpZHRoOiAxMDAlO1xuXHRib3R0b206IGF1dG87XG5cdGxlZnQ6IDA7XG5cdHJpZ2h0OiBhdXRvO1xufVxuLmRqX2llcXVpcmtzIC5kaWppdFNwaW5uZXIgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdHdpZHRoOiBhdXRvO1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdG92ZXJmbG93OiB2aXNpYmxlICFpbXBvcnRhbnQ7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0RG93bkFycm93QnV0dG9uIHtcblx0dG9wOiA1MCU7XG5cdGJvcmRlci10b3Atd2lkdGg6IDFweCAhaW1wb3J0YW50O1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdFVwQXJyb3dCdXR0b24ge1xuXHQjYm90dG9tOiA1MCU7XHQvKiBvdGhlcndpc2UgKG9uIHNvbWUgbWFjaGluZXMpIHRvcCBhcnJvdyBpY29uIHRvbyBjbG9zZSB0byBzcGxpdHRlciBib3JkZXIgKElFNi83KSAqL1xuXHR0b3A6IDA7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHRtYXJnaW46IGF1dG87XG5cdG92ZXJmbG93LXg6IGhpZGRlbjtcblx0aGVpZ2h0OiAxMDAlICFpbXBvcnRhbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0aGVpZ2h0OiBhdXRvICFpbXBvcnRhbnQ7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIgLmRpaml0SW5wdXRGaWVsZCB7XG5cdC1tb3otdHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHQtbW96LXRyYW5zZm9ybS1vcmlnaW46IGNlbnRlciB0b3A7XG5cdC13ZWJraXQtdHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHQtd2Via2l0LXRyYW5zZm9ybS1vcmlnaW46IGNlbnRlciB0b3A7XG5cdC1vLXRyYW5zZm9ybTogc2NhbGUoMC41KTtcblx0LW8tdHJhbnNmb3JtLW9yaWdpbjogY2VudGVyIHRvcDtcblx0dHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHR0cmFuc2Zvcm0tb3JpZ2luOiBsZWZ0IHRvcDtcblx0cGFkZGluZy10b3A6IDA7XG5cdHBhZGRpbmctYm90dG9tOiAwO1xuXHRwYWRkaW5nLWxlZnQ6IDAgIWltcG9ydGFudDtcblx0cGFkZGluZy1yaWdodDogMCAhaW1wb3J0YW50O1xuXHR3aWR0aDogMTAwJTtcblx0dmlzaWJpbGl0eTogaGlkZGVuO1xufVxuLmRqX2llIC5kaWppdFNwaW5uZXIgLmRpaml0QXJyb3dCdXR0b25Jbm5lciAuZGlqaXRJbnB1dEZpZWxkIHtcblx0em9vbTogNTAlOyAvKiBlbXVsYXRlIHRyYW5zZm9ybTogc2NhbGUoMC41KSAqL1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QXJyb3dCdXR0b24ge1xuXHR3aWR0aDogMTAwJTtcbn1cbi5kal9pZXF1aXJrcyAuZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QXJyb3dCdXR0b24ge1xuXHR3aWR0aDogMWVtOyAvKiBtYXRjaGVzIC5kal9hMTF5IC5kaWppdFRleHRCb3ggLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciBydWxlIC0gMTAwJSBpcyB0aGUgd2hvbGUgc2NyZWVuIHdpZHRoIGluIHF1aXJrcyAqL1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHR2ZXJ0aWNhbC1hbGlnbjp0b3A7XG5cdHZpc2liaWxpdHk6IHZpc2libGU7XG59XG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIHtcblx0d2lkdGg6IDFlbTtcbn1cblxuLyoqKipcblx0XHRkaWppdC5mb3JtLkNoZWNrQm94XG4gXHQgJlxuICBcdFx0ZGlqaXQuZm9ybS5SYWRpb0J1dHRvblxuICoqKiovXG5cbi5kaWppdENoZWNrQm94LFxuLmRpaml0UmFkaW8sXG4uZGlqaXRDaGVja0JveElucHV0IHtcblx0cGFkZGluZzogMDtcblx0Ym9yZGVyOiAwO1xuXHR3aWR0aDogMTZweDtcblx0aGVpZ2h0OiAxNnB4O1xuXHRiYWNrZ3JvdW5kLXBvc2l0aW9uOmNlbnRlciBjZW50ZXI7XG5cdGJhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLmRpaml0Q2hlY2tCb3ggaW5wdXQsXG4uZGlqaXRSYWRpbyBpbnB1dCB7XG5cdG1hcmdpbjogMDtcblx0cGFkZGluZzogMDtcblx0ZGlzcGxheTogYmxvY2s7XG59XG5cbi5kaWppdENoZWNrQm94SW5wdXQge1xuXHQvKiBwbGFjZSB0aGUgYWN0dWFsIGlucHV0IG9uIHRvcCwgYnV0IGludmlzaWJsZSAqL1xuXHRvcGFjaXR5OiAwO1xufVxuXG4uZGpfaWUgLmRpaml0Q2hlY2tCb3hJbnB1dCB7XG5cdGZpbHRlcjogYWxwaGEob3BhY2l0eT0wKTtcbn1cblxuLmRqX2ExMXkgLmRpaml0Q2hlY2tCb3gsXG4uZGpfYTExeSAuZGlqaXRSYWRpbyB7XG5cdC8qIGluIGExMXkgbW9kZSB3ZSBkaXNwbGF5IHRoZSBuYXRpdmUgY2hlY2tib3ggKG5vdCB0aGUgaWNvbiksIHNvIGRvbid0IHJlc3RyaWN0IHRoZSBzaXplICovXG5cdHdpZHRoOiBhdXRvICFpbXBvcnRhbnQ7XG5cdGhlaWdodDogYXV0byAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0Q2hlY2tCb3hJbnB1dCB7XG5cdG9wYWNpdHk6IDE7XG5cdGZpbHRlcjogbm9uZTtcblx0d2lkdGg6IGF1dG87XG5cdGhlaWdodDogYXV0bztcbn1cblxuLmRqX2ExMXkgLmRpaml0Rm9jdXNlZExhYmVsIHtcblx0LyogZm9yIGNoZWNrYm94ZXMgb3IgcmFkaW8gYnV0dG9ucyBpbiBoaWdoIGNvbnRyYXN0IG1vZGUsIHVzZSBib3JkZXIgcmF0aGVyIHRoYW4gb3V0bGluZSB0byBpbmRpY2F0ZSBmb2N1cyAob3V0bGluZSBkb2VzIG5vdCB3b3JrIGluIEZGKSovXG5cdGJvcmRlcjogMXB4IGRvdHRlZDtcblx0b3V0bGluZTogMHB4ICFpbXBvcnRhbnQ7XG59XG5cbi8qKioqXG5cdFx0ZGlqaXQuUHJvZ3Jlc3NCYXJcbiAqKioqL1xuXG4uZGlqaXRQcm9ncmVzc0JhciB7XG4gICAgei1pbmRleDogMDsgLyogc28gei1pbmRleCBzZXR0aW5ncyBiZWxvdyBoYXZlIG5vIGVmZmVjdCBvdXRzaWRlIG9mIHRoZSBQcm9ncmVzc0JhciAqL1xufVxuLmRpaml0UHJvZ3Jlc3NCYXJFbXB0eSB7XG5cdC8qIG91dGVyIGNvbnRhaW5lciBhbmQgYmFja2dyb3VuZCBvZiB0aGUgYmFyIHRoYXQncyBub3QgZmluaXNoZWQgeWV0Ki9cblx0cG9zaXRpb246cmVsYXRpdmU7b3ZlcmZsb3c6aGlkZGVuO1xuXHRib3JkZXI6MXB4IHNvbGlkIGJsYWNrOyBcdC8qIGExMXk6IGJvcmRlciBuZWNlc3NhcnkgZm9yIGhpZ2gtY29udHJhc3QgbW9kZSAqL1xuXHR6LWluZGV4OjA7XHRcdFx0LyogZXN0YWJsaXNoIGEgc3RhY2tpbmcgY29udGV4dCBmb3IgdGhpcyBwcm9ncmVzcyBiYXIgKi9cbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJGdWxsIHtcblx0Lyogb3V0ZXIgY29udGFpbmVyIGZvciBiYWNrZ3JvdW5kIG9mIGJhciB0aGF0IGlzIGZpbmlzaGVkICovXG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHRvdmVyZmxvdzpoaWRkZW47XG5cdHotaW5kZXg6LTE7XG5cdHRvcDowO1xuXHR3aWR0aDoxMDAlO1xufVxuLmRqX2llNiAuZGlqaXRQcm9ncmVzc0JhckZ1bGwge1xuXHRoZWlnaHQ6MS42ZW07XG59XG5cbi5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGlubmVyIGNvbnRhaW5lciBmb3IgZmluaXNoZWQgcG9ydGlvbiAqL1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHR0b3A6MDtcblx0bGVmdDowO1xuXHRib3R0b206MDtcblx0cmlnaHQ6MDtcblx0bWFyZ2luOjA7XG5cdHBhZGRpbmc6MDtcblx0d2lkdGg6IDEwMCU7ICAgIC8qIG5lZWRlZCBmb3IgSUUvcXVpcmtzICovXG5cdGhlaWdodDphdXRvO1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiNhYWE7XG5cdGJhY2tncm91bmQtYXR0YWNobWVudDogZml4ZWQ7XG59XG5cbi5kal9hMTF5IC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGExMXk6ICBUaGUgYm9yZGVyIHByb3ZpZGVzIHZpc2liaWxpdHkgaW4gaGlnaC1jb250cmFzdCBtb2RlICovXG5cdGJvcmRlci13aWR0aDoycHg7XG5cdGJvcmRlci1zdHlsZTpzb2xpZDtcblx0YmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4uZGpfaWU2IC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIHdpZHRoOmF1dG8gd29ya3MgaW4gSUU2IHdpdGggcG9zaXRpb246c3RhdGljIGJ1dCBub3QgcG9zaXRpb246YWJzb2x1dGUgKi9cblx0cG9zaXRpb246c3RhdGljO1xuXHQvKiBoZWlnaHQ6YXV0byBvciAxMDAlIGRvZXMgbm90IHdvcmsgaW4gSUU2ICovXG5cdGhlaWdodDoxLjZlbTtcbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJJbmRldGVybWluYXRlIC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGFuaW1hdGVkIGdpZiBmb3IgJ2luZGV0ZXJtaW5hdGUnIG1vZGUgKi9cbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJJbmRldGVybWluYXRlSGlnaENvbnRyYXN0SW1hZ2Uge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi5kal9hMTF5IC5kaWppdFByb2dyZXNzQmFySW5kZXRlcm1pbmF0ZSAuZGlqaXRQcm9ncmVzc0JhckluZGV0ZXJtaW5hdGVIaWdoQ29udHJhc3RJbWFnZSB7XG5cdGRpc3BsYXk6YmxvY2s7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHR0b3A6MDtcblx0Ym90dG9tOjA7XG5cdG1hcmdpbjowO1xuXHRwYWRkaW5nOjA7XG5cdHdpZHRoOjEwMCU7XG5cdGhlaWdodDphdXRvO1xufVxuXG4uZGlqaXRQcm9ncmVzc0JhckxhYmVsIHtcblx0ZGlzcGxheTpibG9jaztcblx0cG9zaXRpb246c3RhdGljO1xuXHR3aWR0aDoxMDAlO1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0YmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4vKioqKlxuXHRcdGRpaml0LlRvb2x0aXBcbiAqKioqL1xuXG4uZGlqaXRUb29sdGlwIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR6LWluZGV4OiAyMDAwO1xuXHRkaXNwbGF5OiBibG9jaztcblx0LyogbWFrZSB2aXNpYmxlIGJ1dCBvZmYgc2NyZWVuICovXG5cdGxlZnQ6IDA7XG5cdHRvcDogLTEwMDAwcHg7XG5cdG92ZXJmbG93OiB2aXNpYmxlO1xufVxuXG4uZGlqaXRUb29sdGlwQ29udGFpbmVyIHtcblx0Ym9yZGVyOiBzb2xpZCBibGFjayAycHg7XG5cdGJhY2tncm91bmQ6ICNiOGI1YjU7XG5cdGNvbG9yOiBibGFjaztcblx0Zm9udC1zaXplOiBzbWFsbDtcbn1cblxuLmRpaml0VG9vbHRpcEZvY3VzTm9kZSB7XG5cdHBhZGRpbmc6IDJweCAycHggMnB4IDJweDtcbn1cblxuLmRpaml0VG9vbHRpcENvbm5lY3RvciB7XG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcbn1cbi5kal9hMTF5IC5kaWppdFRvb2x0aXBDb25uZWN0b3Ige1xuXHRkaXNwbGF5OiBub25lO1x0Lyogd29uJ3Qgc2hvdyBiL2MgaXQncyBiYWNrZ3JvdW5kLWltYWdlOyBoaWRlIHRvIGF2b2lkIGJvcmRlciBnYXAgKi9cbn1cblxuLmRpaml0VG9vbHRpcERhdGEge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi8qIExheW91dCB3aWRnZXRzLiBUaGlzIGlzIGVzc2VudGlhbCBDU1MgdG8gbWFrZSBsYXlvdXQgd29yayAoaXQgaXNuJ3QgXCJzdHlsaW5nXCIgQ1NTKVxuICAgbWFrZSBzdXJlIHRoYXQgdGhlIHBvc2l0aW9uOmFic29sdXRlIGluIGRpaml0QWxpZ24qIG92ZXJyaWRlcyBvdGhlciBjbGFzc2VzICovXG5cbi5kaWppdExheW91dENvbnRhaW5lciB7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcblx0ZGlzcGxheTogYmxvY2s7XG5cdG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5kaWppdEFsaWduVG9wLFxuLmRpaml0QWxpZ25Cb3R0b20sXG4uZGlqaXRBbGlnbkxlZnQsXG4uZGlqaXRBbGlnblJpZ2h0IHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG5ib2R5IC5kaWppdEFsaWduQ2xpZW50IHsgcG9zaXRpb246IGFic29sdXRlOyB9XG5cbi8qXG4gKiBCb3JkZXJDb250YWluZXJcbiAqXG4gKiAuZGlqaXRCb3JkZXJDb250YWluZXIgaXMgYSBzdHlsaXplZCBsYXlvdXQgd2hlcmUgcGFuZXMgaGF2ZSBib3JkZXIgYW5kIG1hcmdpbi5cbiAqIC5kaWppdEJvcmRlckNvbnRhaW5lck5vR3V0dGVyIGlzIGEgcmF3IGxheW91dC5cbiAqL1xuLmRpaml0Qm9yZGVyQ29udGFpbmVyLCAuZGlqaXRCb3JkZXJDb250YWluZXJOb0d1dHRlciB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xuICAgIHotaW5kZXg6IDA7IC8qIHNvIHotaW5kZXggc2V0dGluZ3MgYmVsb3cgaGF2ZSBubyBlZmZlY3Qgb3V0c2lkZSBvZiB0aGUgQm9yZGVyQ29udGFpbmVyICovXG59XG5cbi5kaWppdEJvcmRlckNvbnRhaW5lclBhbmUsXG4uZGlqaXRCb3JkZXJDb250YWluZXJOb0d1dHRlclBhbmUge1xuXHRwb3NpdGlvbjogYWJzb2x1dGUgIWltcG9ydGFudDtcdC8qICFpbXBvcnRhbnQgdG8gb3ZlcnJpZGUgcG9zaXRpb246cmVsYXRpdmUgaW4gZGlqaXRUYWJDb250YWluZXIgZXRjLiAqL1xuXHR6LWluZGV4OiAyO1x0XHQvKiBhYm92ZSB0aGUgc3BsaXR0ZXJzIHNvIHRoYXQgb2ZmLWJ5LW9uZSBicm93c2VyIGVycm9ycyBkb24ndCBjb3ZlciB1cCBib3JkZXIgb2YgcGFuZSAqL1xufVxuXG4uZGlqaXRCb3JkZXJDb250YWluZXIgPiAuZGlqaXRUZXh0QXJlYSB7XG5cdC8qIE9uIFNhZmFyaSwgZm9yIFNpbXBsZVRleHRBcmVhIGluc2lkZSBhIEJvcmRlckNvbnRhaW5lcixcblx0XHRkb24ndCB3YW50IHRvIGRpc3BsYXkgdGhlIGdyaXAgdG8gcmVzaXplICovXG5cdHJlc2l6ZTogbm9uZTtcbn1cblxuLmRpaml0R3V0dGVyIHtcblx0LyogZ3V0dGVyIGlzIGp1c3QgYSBwbGFjZSBob2xkZXIgZm9yIGVtcHR5IHNwYWNlIGJldHdlZW4gcGFuZXMgaW4gQm9yZGVyQ29udGFpbmVyICovXG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0Zm9udC1zaXplOiAxcHg7XHRcdC8qIG5lZWRlZCBieSBJRTYgZXZlbiB0aG91Z2ggZGl2IGlzIGVtcHR5LCBvdGhlcndpc2UgZ29lcyB0byAxNXB4ICovXG59XG5cbi8qIFNwbGl0Q29udGFpbmVyXG5cblx0J1YnID09IGNvbnRhaW5lciB0aGF0IHNwbGl0cyB2ZXJ0aWNhbGx5ICh1cC9kb3duKVxuXHQnSCcgPSBob3Jpem9udGFsIChsZWZ0L3JpZ2h0KVxuKi9cblxuLmRpaml0U3BsaXR0ZXIge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdHotaW5kZXg6IDEwO1x0XHQvKiBhYm92ZSB0aGUgcGFuZXMgc28gdGhhdCBzcGxpdHRlciBmb2N1cyBpcyB2aXNpYmxlIG9uIEZGLCBzZWUgIzc1ODMqL1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXHRib3JkZXItY29sb3I6IGdyYXk7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG5cdGJvcmRlci13aWR0aDogMDtcbn1cbi5kal9pZSAuZGlqaXRTcGxpdHRlciB7XG5cdHotaW5kZXg6IDE7XHQvKiBiZWhpbmQgdGhlIHBhbmVzIHNvIHRoYXQgcGFuZSBib3JkZXJzIGFyZW4ndCBvYnNjdXJlZCBzZWUgdGVzdF9HdWkuaHRtbC9bMTQzOTJdICovXG59XG5cbi5kaWppdFNwbGl0dGVyQWN0aXZlIHtcblx0ei1pbmRleDogMTEgIWltcG9ydGFudDtcbn1cblxuLmRpaml0U3BsaXR0ZXJDb3ZlciB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHR6LWluZGV4Oi0xO1xuXHR0b3A6MDtcblx0bGVmdDowO1xuXHR3aWR0aDoxMDAlO1xuXHRoZWlnaHQ6MTAwJTtcbn1cblxuLmRpaml0U3BsaXR0ZXJDb3ZlckFjdGl2ZSB7XG5cdHotaW5kZXg6MyAhaW1wb3J0YW50O1xufVxuXG4vKiAjNjk0NTogc3RvcCBtb3VzZSBldmVudHMgKi9cbi5kal9pZSAuZGlqaXRTcGxpdHRlckNvdmVyIHtcblx0YmFja2dyb3VuZDogd2hpdGU7XG5cdG9wYWNpdHk6IDA7XG59XG4uZGpfaWU2IC5kaWppdFNwbGl0dGVyQ292ZXIsXG4uZGpfaWU3IC5kaWppdFNwbGl0dGVyQ292ZXIsXG4uZGpfaWU4IC5kaWppdFNwbGl0dGVyQ292ZXIge1xuXHRmaWx0ZXI6IGFscGhhKG9wYWNpdHk9MCk7XG59XG5cbi5kaWppdFNwbGl0dGVySCB7XG5cdGhlaWdodDogN3B4O1xuXHRib3JkZXItdG9wOjFweDtcblx0Ym9yZGVyLWJvdHRvbToxcHg7XG5cdGN1cnNvcjogcm93LXJlc2l6ZTtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cbi5kaWppdFNwbGl0dGVyViB7XG5cdHdpZHRoOiA3cHg7XG5cdGJvcmRlci1sZWZ0OjFweDtcblx0Ym9yZGVyLXJpZ2h0OjFweDtcblx0Y3Vyc29yOiBjb2wtcmVzaXplO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0U3BsaXRDb250YWluZXIge1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uZGlqaXRTcGxpdFBhbmUge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJILFxuLmRpaml0U3BsaXRDb250YWluZXJTaXplclYge1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0Zm9udC1zaXplOiAxcHg7XG5cdGJhY2tncm91bmQtY29sb3I6IFRocmVlREZhY2U7XG5cdGJvcmRlcjogMXB4IHNvbGlkO1xuXHRib3JkZXItY29sb3I6IFRocmVlREhpZ2hsaWdodCBUaHJlZURTaGFkb3cgVGhyZWVEU2hhZG93IFRocmVlREhpZ2hsaWdodDtcblx0bWFyZ2luOiAwO1xufVxuXG4uZGlqaXRTcGxpdENvbnRhaW5lclNpemVySCAudGh1bWIsIC5kaWppdFNwbGl0dGVyViAuZGlqaXRTcGxpdHRlclRodW1iIHtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0dG9wOjQ5JTtcbn1cblxuLmRpaml0U3BsaXRDb250YWluZXJTaXplclYgLnRodW1iLCAuZGlqaXRTcGxpdHRlckggLmRpaml0U3BsaXR0ZXJUaHVtYiB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHRsZWZ0OjQ5JTtcbn1cblxuLmRpaml0U3BsaXR0ZXJTaGFkb3csXG4uZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplckgsXG4uZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplclYge1xuXHRmb250LXNpemU6IDFweDtcblx0YmFja2dyb3VuZC1jb2xvcjogVGhyZWVEU2hhZG93O1xuXHQtbW96LW9wYWNpdHk6IDAuNTtcblx0b3BhY2l0eTogMC41O1xuXHRmaWx0ZXI6IEFscGhhKE9wYWNpdHk9NTApO1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJILCAuZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplckgge1xuXHRjdXJzb3I6IGNvbC1yZXNpemU7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJWLCAuZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplclYge1xuXHRjdXJzb3I6IHJvdy1yZXNpemU7XG59XG5cbi5kal9hMTF5IC5kaWppdFNwbGl0dGVySCB7XG5cdGJvcmRlci10b3A6MXB4IHNvbGlkICNkM2QzZDMgIWltcG9ydGFudDtcblx0Ym9yZGVyLWJvdHRvbToxcHggc29saWQgI2QzZDNkMyAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0U3BsaXR0ZXJWIHtcblx0Ym9yZGVyLWxlZnQ6MXB4IHNvbGlkICNkM2QzZDMgIWltcG9ydGFudDtcblx0Ym9yZGVyLXJpZ2h0OjFweCBzb2xpZCAjZDNkM2QzICFpbXBvcnRhbnQ7XG59XG5cbi8qIENvbnRlbnRQYW5lICovXG5cbi5kaWppdENvbnRlbnRQYW5lIHtcblx0ZGlzcGxheTogYmxvY2s7XG5cdG92ZXJmbG93OiBhdXRvO1x0LyogaWYgd2UgZG9uJ3QgaGF2ZSB0aGlzIChvciBvdmVyZmxvdzpoaWRkZW4pLCB0aGVuIFdpZGdldC5yZXNpemVUbygpIGRvZXNuJ3QgbWFrZSBzZW5zZSBmb3IgQ29udGVudFBhbmUgKi9cblx0LXdlYmtpdC1vdmVyZmxvdy1zY3JvbGxpbmc6IHRvdWNoO1xufVxuXG4uZGlqaXRDb250ZW50UGFuZVNpbmdsZUNoaWxkIHtcblx0Lypcblx0ICogaWYgdGhlIENvbnRlbnRQYW5lIGhvbGRzIGEgc2luZ2xlIGxheW91dCB3aWRnZXQgY2hpbGQgd2hpY2ggaXMgYmVpbmcgc2l6ZWQgdG8gbWF0Y2ggdGhlIGNvbnRlbnQgcGFuZSxcblx0ICogdGhlbiB0aGUgQ29udGVudFBhbmUgc2hvdWxkIG5ldmVyIGdldCBhIHNjcm9sbGJhciAoYnV0IGl0IGRvZXMgZHVlIHRvIGJyb3dzZXIgYnVncywgc2VlICM5NDQ5XG5cdCAqL1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG4uZGlqaXRDb250ZW50UGFuZUxvYWRpbmcgLmRpaml0SWNvbkxvYWRpbmcsXG4uZGlqaXRDb250ZW50UGFuZUVycm9yIC5kaWppdEljb25FcnJvciB7XG5cdG1hcmdpbi1yaWdodDogOXB4O1xufVxuXG4vKiBUaXRsZVBhbmUgYW5kIEZpZWxkc2V0ICovXG5cbi5kaWppdFRpdGxlUGFuZSB7XG5cdGRpc3BsYXk6IGJsb2NrO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuLmRpaml0RmllbGRzZXQge1xuXHRib3JkZXI6IDFweCBzb2xpZCBncmF5O1xufVxuLmRpaml0VGl0bGVQYW5lVGl0bGUsIC5kaWppdEZpZWxkc2V0VGl0bGUge1xuXHRjdXJzb3I6IHBvaW50ZXI7XG5cdC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG4uZGlqaXRUaXRsZVBhbmVUaXRsZUZpeGVkT3BlbiwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZENsb3NlZCxcbi5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZE9wZW4sIC5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZENsb3NlZCB7XG5cdC8qIFRpdGxlUGFuZSBvciBGaWVsZHNldCB0aGF0IGNhbm5vdCBiZSB0b2dnbGVkICovXG5cdGN1cnNvcjogZGVmYXVsdDtcbn1cbi5kaWppdFRpdGxlUGFuZVRpdGxlICoge1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZUlubmVyLCAuZGlqaXRGaWVsZHNldCAuZGlqaXRBcnJvd05vZGVJbm5lciB7XG5cdC8qIG5vcm1hbGx5LCBoaWRlIGFycm93IHRleHQgaW4gZmF2b3Igb2YgaWNvbiAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRqX2ExMXkgLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZUlubmVyLCAuZGpfYTExeSAuZGlqaXRGaWVsZHNldCAuZGlqaXRBcnJvd05vZGVJbm5lciB7XG5cdC8qIC4uLiBleGNlcHQgaW4gYTExeSBtb2RlLCB0aGVuIHNob3cgdGV4dCBhcnJvdyAqL1xuXHRkaXNwbGF5OiBpbmxpbmU7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7XHRcdC8qIGJlY2F1c2UgLSBhbmQgKyBhcmUgZGlmZmVyZW50IHdpZHRocyAqL1xufVxuLmRqX2ExMXkgLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZSwgLmRqX2ExMXkgLmRpaml0RmllbGRzZXQgLmRpaml0QXJyb3dOb2RlIHtcblx0LyogLi4uIGFuZCBoaWRlIGljb24gKFRPRE86IGp1c3QgcG9pbnQgZGlqaXRJY29uIGNsYXNzIG9uIHRoZSBpY29uLCBhbmQgaXQgaGlkZXMgYXV0b21hdGljYWxseSkgKi9cblx0ZGlzcGxheTogbm9uZTtcbn1cbi5kaWppdFRpdGxlUGFuZVRpdGxlRml4ZWRPcGVuIC5kaWppdEFycm93Tm9kZSwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZE9wZW4gLmRpaml0QXJyb3dOb2RlSW5uZXIsXG4uZGlqaXRUaXRsZVBhbmVUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZSwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZENsb3NlZCAuZGlqaXRBcnJvd05vZGVJbm5lcixcbi5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZE9wZW4gLmRpaml0QXJyb3dOb2RlLCAuZGlqaXRGaWVsZHNldFRpdGxlRml4ZWRPcGVuIC5kaWppdEFycm93Tm9kZUlubmVyLFxuLmRpaml0RmllbGRzZXRUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZSwgLmRpaml0RmllbGRzZXRUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZUlubmVyIHtcblx0LyogZG9uJ3Qgc2hvdyB0aGUgb3BlbiBjbG9zZSBpY29uIG9yIHRleHQgYXJyb3c7IGl0IG1ha2VzIHRoZSB1c2VyIHRoaW5rIHRoZSBwYW5lIGlzIGNsb3NhYmxlICovXG5cdGRpc3BsYXk6IG5vbmUgIWltcG9ydGFudDtcdC8qICFpbXBvcnRhbnQgdG8gb3ZlcnJpZGUgYWJvdmUgYTExeSBydWxlcyB0byBzaG93IHRleHQgYXJyb3cgKi9cbn1cblxuLmRqX2llNiAuZGlqaXRUaXRsZVBhbmVDb250ZW50T3V0ZXIsXG4uZGpfaWU2IC5kaWppdFRpdGxlUGFuZSAuZGlqaXRUaXRsZVBhbmVUaXRsZSB7XG5cdC8qIGZvcmNlIGhhc0xheW91dCB0byBlbnN1cmUgYm9yZGVycyBldGMsIHNob3cgdXAgKi9cblx0em9vbTogMTtcbn1cblxuLyogQ29sb3IgUGFsZXR0ZVxuICogU2l6ZXMgZGVzaWduZWQgc28gdGhhdCB0YWJsZSBjZWxsIHBvc2l0aW9ucyBtYXRjaCBpY29ucyBpbiB1bmRlcmx5aW5nIGltYWdlLFxuICogd2hpY2ggYXBwZWFyIGF0IDIweDIwIGludGVydmFscy5cbiAqL1xuXG4uZGlqaXRDb2xvclBhbGV0dGUge1xuXHRib3JkZXI6IDFweCBzb2xpZCAjOTk5O1xuXHRiYWNrZ3JvdW5kOiAjZmZmO1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG59XG5cbi5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUge1xuXHQvKiBUYWJsZSB0aGF0IGhvbGRzIHRoZSBwYWxldHRlIGNlbGxzLCBhbmQgb3ZlcmxheXMgaW1hZ2UgZmlsZSB3aXRoIGNvbG9yIHN3YXRjaGVzLlxuXHQgKiBwYWRkaW5nL21hcmdpbiB0byBhbGlnbiB0YWJsZSB3aXRoIGltYWdlLlxuXHQgKi9cblx0cGFkZGluZzogMnB4IDNweCAzcHggM3B4O1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdG91dGxpbmU6IDA7XG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG59XG4uZGpfaWU2IC5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUsXG4uZGpfaWU3IC5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUsXG4uZGpfaWVxdWlya3MgLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVUYWJsZSB7XG5cdC8qIHVzaW5nIHBhZGRpbmcgYWJvdmUgc28gdGhhdCBmb2N1cyBib3JkZXIgaXNuJ3QgY3V0b2ZmIG9uIG1vei93ZWJraXQsXG5cdCAqIGJ1dCB1c2luZyBtYXJnaW4gb24gSUUgYmVjYXVzZSBwYWRkaW5nIGRvZXNuJ3Qgc2VlbSB0byB3b3JrXG5cdCAqL1xuXHRwYWRkaW5nOiAwO1xuXHRtYXJnaW46IDJweCAzcHggM3B4IDNweDtcbn1cblxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVDZWxsIHtcblx0LyogPHRkPiBpbiB0aGUgPHRhYmxlPiAqL1xuXHRmb250LXNpemU6IDFweDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcblx0dGV4dC1hbGlnbjogY2VudGVyO1xuXHRiYWNrZ3JvdW5kOiBub25lO1xufVxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVJbWcge1xuXHQvKiBDYWxsZWQgZGlqaXRQYWxldHRlSW1nIGZvciBiYWNrLWNvbXBhdCwgdGhpcyBhY3R1YWxseSB3cmFwcyB0aGUgY29sb3Igc3dhdGNoIHdpdGggYSBib3JkZXIgYW5kIHBhZGRpbmcgKi9cblx0cGFkZGluZzogMXB4O1x0XHQvKiB3aGl0ZSBhcmVhIGJldHdlZW4gZ3JheSBib3JkZXIgYW5kIGNvbG9yIHN3YXRjaCAqL1xuXHRib3JkZXI6IDFweCBzb2xpZCAjOTk5O1xuXHRtYXJnaW46IDJweCAxcHg7XG5cdGN1cnNvcjogZGVmYXVsdDtcblx0Zm9udC1zaXplOiAxcHg7XHRcdC8qIHByZXZlbnQgPHNwYW4+IGZyb20gZ2V0dGluZyBiaWdnZXIganVzdCB0byBob2xkIGEgY2hhcmFjdGVyICovXG59XG4uZGpfZ2Vja28gLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVJbWcge1xuXHRwYWRkaW5nLWJvdHRvbTogMDtcdC8qIHdvcmthcm91bmQgcmVuZGVyaW5nIGdsaXRjaCBvbiBGRiwgaXQgYWRkcyBhbiBleHRyYSBwaXhlbCBhdCB0aGUgYm90dG9tICovXG59XG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0Q29sb3JQYWxldHRlU3dhdGNoIHtcblx0LyogdGhlIGFjdHVhbCBwYXJ0IHdoZXJlIHRoZSBjb2xvciBpcyAqL1xuXHR3aWR0aDogMTRweDtcblx0aGVpZ2h0OiAxMnB4O1xufVxuLmRpaml0UGFsZXR0ZVRhYmxlIHRkIHtcblx0XHRwYWRkaW5nOiAwO1xufVxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVDZWxsOmhvdmVyIC5kaWppdFBhbGV0dGVJbWcge1xuXHQvKiBob3ZlcmVkIGNvbG9yIHN3YXRjaCAqL1xuXHRib3JkZXI6IDFweCBzb2xpZCAjMDAwO1xufVxuXG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZUNlbGw6YWN0aXZlIC5kaWppdFBhbGV0dGVJbWcsXG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZVRhYmxlIC5kaWppdFBhbGV0dGVDZWxsU2VsZWN0ZWQgLmRpaml0UGFsZXR0ZUltZyB7XG5cdGJvcmRlcjogMnB4IHNvbGlkICMwMDA7XG5cdG1hcmdpbjogMXB4IDA7XHQvKiByZWR1Y2UgbWFyZ2luIHRvIGNvbXBlbnNhdGUgZm9yIGluY3JlYXNlZCBib3JkZXIgKi9cbn1cblxuXG4uZGpfYTExeSAuZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZVRhYmxlLFxuLmRqX2ExMXkgLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVUYWJsZSAqIHtcblx0LyogdGFibGUgY2VsbHMgYXJlIHRvIGNhdGNoIGV2ZW50cywgYnV0IHRoZSBzd2F0Y2hlcyBhcmUgaW4gdGhlIFBhbGV0dGVJbWcgYmVoaW5kIHRoZSB0YWJsZSAqL1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4vKiBBY2NvcmRpb25Db250YWluZXIgKi9cblxuLmRpaml0QWNjb3JkaW9uQ29udGFpbmVyIHtcblx0Ym9yZGVyOjFweCBzb2xpZCAjYjdiN2I3O1xuXHRib3JkZXItdG9wOjAgIWltcG9ydGFudDtcbn1cbi5kaWppdEFjY29yZGlvblRpdGxlIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0QWNjb3JkaW9uVGl0bGVTZWxlY3RlZCB7XG5cdGN1cnNvcjogZGVmYXVsdDtcbn1cblxuLyogaW1hZ2VzIG9mZiwgaGlnaC1jb250cmFzdCBtb2RlIHN0eWxlcyAqL1xuLmRpaml0QWNjb3JkaW9uVGl0bGUgLmFycm93VGV4dFVwLFxuLmRpaml0QWNjb3JkaW9uVGl0bGUgLmFycm93VGV4dERvd24ge1xuXHRkaXNwbGF5OiBub25lO1xuXHRmb250LXNpemU6IDAuNjVlbTtcblx0Zm9udC13ZWlnaHQ6IG5vcm1hbCAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZSAuYXJyb3dUZXh0VXAsXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZVNlbGVjdGVkIC5hcnJvd1RleHREb3duIHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZVNlbGVjdGVkIC5hcnJvd1RleHRVcCB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cbi5kaWppdEFjY29yZGlvbkNoaWxkV3JhcHBlciB7XG5cdC8qIHRoaXMgaXMgdGhlIG5vZGUgd2hvc2UgaGVpZ2h0IGlzIGFkanVzdGVkICovXG5cdG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi8qIENhbGVuZGFyICovXG5cbi5kaWppdENhbGVuZGFyQ29udGFpbmVyIHRhYmxlIHtcblx0d2lkdGg6IGF1dG87XHQvKiBpbiBjYXNlIHVzZXIgaGFzIHNwZWNpZmllZCBhIHdpZHRoIGZvciB0aGUgVEFCTEUgbm9kZXMsIHNlZSAjMTA1NTMgKi9cblx0Y2xlYXI6IGJvdGg7ICAgIC8qIGNsZWFyIG1hcmdpbiBjcmVhdGVkIGZvciBsZWZ0L3JpZ2h0IG1vbnRoIGFycm93czsgbmVlZGVkIG9uIElFMTAgZm9yIENhbGVuZGFyTGl0ZSAqL1xufVxuLmRpaml0Q2FsZW5kYXJDb250YWluZXIgdGgsIC5kaWppdENhbGVuZGFyQ29udGFpbmVyIHRkIHtcblx0cGFkZGluZzogMDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cblxuLmRpaml0Q2FsZW5kYXJNb250aENvbnRhaW5lciB7XG5cdHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5kaWppdENhbGVuZGFyRGVjcmVtZW50QXJyb3cge1xuXHRmbG9hdDogbGVmdDtcbn1cbi5kaWppdENhbGVuZGFySW5jcmVtZW50QXJyb3cge1xuXHRmbG9hdDogcmlnaHQ7XG59XG5cbi5kaWppdENhbGVuZGFyWWVhckxhYmVsIHtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwOyAgICAvKiBtYWtlIHN1cmUgcHJldmlvdXMsIGN1cnJlbnQsIGFuZCBuZXh0IHllYXIgYXBwZWFyIG9uIHNhbWUgcm93ICovXG59XG5cbi5kaWppdENhbGVuZGFyTmV4dFllYXIge1xuXHRtYXJnaW46MCAwIDAgMC41NWVtO1xufVxuXG4uZGlqaXRDYWxlbmRhclByZXZpb3VzWWVhciB7XG5cdG1hcmdpbjowIDAuNTVlbSAwIDA7XG59XG5cbi5kaWppdENhbGVuZGFySW5jcmVtZW50Q29udHJvbCB7XG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kaWppdENhbGVuZGFySW5jcmVtZW50Q29udHJvbCxcbi5kaWppdENhbGVuZGFyRGF0ZVRlbXBsYXRlLFxuLmRpaml0Q2FsZW5kYXJNb250aExhYmVsLFxuLmRpaml0Q2FsZW5kYXJQcmV2aW91c1llYXIsXG4uZGlqaXRDYWxlbmRhck5leHRZZWFyIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGlqaXRDYWxlbmRhckRpc2FibGVkRGF0ZSB7XG5cdGNvbG9yOiBncmF5O1xuXHR0ZXh0LWRlY29yYXRpb246IGxpbmUtdGhyb3VnaDtcblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4uZGlqaXRTcGFjZXIge1xuXHQvKiBkb24ndCBkaXNwbGF5IGl0LCBidXQgbWFrZSBpdCBhZmZlY3QgdGhlIHdpZHRoICovXG4gIFx0cG9zaXRpb246IHJlbGF0aXZlO1xuICBcdGhlaWdodDogMXB4O1xuICBcdG92ZXJmbG93OiBoaWRkZW47XG4gIFx0dmlzaWJpbGl0eTogaGlkZGVuO1xufVxuXG4vKiBTdHlsaW5nIGZvciBtb250aCBkcm9wIGRvd24gbGlzdCAqL1xuXG4uZGlqaXRDYWxlbmRhck1vbnRoTWVudSAuZGlqaXRDYWxlbmRhck1vbnRoTGFiZWwge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcbn1cblxuLyogTWVudSAqL1xuXG4uZGlqaXRNZW51IHtcblx0Ym9yZGVyOjFweCBzb2xpZCBibGFjaztcblx0YmFja2dyb3VuZC1jb2xvcjp3aGl0ZTtcbn1cbi5kaWppdE1lbnVUYWJsZSB7XG5cdGJvcmRlci1jb2xsYXBzZTpjb2xsYXBzZTtcblx0Ym9yZGVyLXdpZHRoOjA7XG5cdGJhY2tncm91bmQtY29sb3I6d2hpdGU7XG59XG5cbi8qIHdvcmthcm91bmQgZm9yIHdlYmtpdCBidWcgIzg0MjcsIHJlbW92ZSB0aGlzIHdoZW4gaXQgaXMgZml4ZWQgdXBzdHJlYW0gKi9cbi5kal93ZWJraXQgLmRpaml0TWVudVRhYmxlIHRkW2NvbHNwYW49XCIyXCJde1xuXHRib3JkZXItcmlnaHQ6aGlkZGVuO1xufVxuXG4uZGlqaXRNZW51SXRlbSB7XG5cdHRleHQtYWxpZ246IGxlZnQ7XG5cdHdoaXRlLXNwYWNlOiBub3dyYXA7XG5cdHBhZGRpbmc6LjFlbSAuMmVtO1xuXHRjdXJzb3I6cG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLypcbk5vIG5lZWQgdG8gc2hvdyBhIGZvY3VzIGJvcmRlciBzaW5jZSBpdCdzIG9idmlvdXMgZnJvbSB0aGUgc2hhZGluZywgYW5kIHRoZXJlJ3MgYSAuZGpfYTExeSAuZGlqaXRNZW51SXRlbVNlbGVjdGVkXG5ydWxlIGJlbG93IHRoYXQgaGFuZGxlcyB0aGUgaGlnaCBjb250cmFzdCBjYXNlIHdoZW4gdGhlcmUncyBubyBzaGFkaW5nLlxuSGlkaW5nIHRoZSBmb2N1cyBib3JkZXIgYWxzbyB3b3JrcyBhcm91bmQgd2Via2l0IGJ1ZyBodHRwczovL2NvZGUuZ29vZ2xlLmNvbS9wL2Nocm9taXVtL2lzc3Vlcy9kZXRhaWw/aWQ9MTI1Nzc5LlxuKi9cbi5kaWppdE1lbnVJdGVtOmZvY3VzIHtcblx0b3V0bGluZTogbm9uZVxufVxuXG4uZGlqaXRNZW51UGFzc2l2ZSAuZGlqaXRNZW51SXRlbUhvdmVyLFxuLmRpaml0TWVudUl0ZW1TZWxlY3RlZCB7XG5cdC8qXG5cdCAqIGRpaml0TWVudUl0ZW1Ib3ZlciByZWZlcnMgdG8gYWN0dWFsIG1vdXNlIG92ZXJcblx0ICogZGlqaXRNZW51SXRlbVNlbGVjdGVkIGlzIHVzZWQgYWZ0ZXIgYSBtZW51IGhhcyBiZWVuIFwiYWN0aXZhdGVkXCIgYnlcblx0ICogY2xpY2tpbmcgaXQsIHRhYmJpbmcgaW50byBpdCwgb3IgYmVpbmcgb3BlbmVkIGZyb20gYSBwYXJlbnQgbWVudSxcblx0ICogYW5kIGRlbm90ZXMgdGhhdCB0aGUgbWVudSBpdGVtIGhhcyBmb2N1cyBvciB0aGF0IGZvY3VzIGlzIG9uIGEgY2hpbGRcblx0ICogbWVudVxuXHQgKi9cblx0YmFja2dyb3VuZC1jb2xvcjpibGFjaztcblx0Y29sb3I6d2hpdGU7XG59XG5cbi5kaWppdE1lbnVJdGVtSWNvbiwgLmRpaml0TWVudUV4cGFuZCB7XG5cdGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG59XG5cbi5kaWppdE1lbnVJdGVtRGlzYWJsZWQgKiB7XG5cdC8qIGZvciBhIGRpc2FibGVkIG1lbnUgaXRlbSwganVzdCBzZXQgaXQgdG8gbW9zdGx5IHRyYW5zcGFyZW50ICovXG5cdG9wYWNpdHk6MC41O1xuXHRjdXJzb3I6ZGVmYXVsdDtcbn1cbi5kal9pZSAuZGpfYTExeSAuZGlqaXRNZW51SXRlbURpc2FibGVkLFxuLmRqX2llIC5kal9hMTF5IC5kaWppdE1lbnVJdGVtRGlzYWJsZWQgKixcbi5kal9pZSAuZGlqaXRNZW51SXRlbURpc2FibGVkICoge1xuXHRjb2xvcjogZ3JheTtcblx0ZmlsdGVyOiBhbHBoYShvcGFjaXR5PTM1KTtcbn1cblxuLmRpaml0TWVudUl0ZW1MYWJlbCB7XG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kal9hMTF5IC5kaWppdE1lbnVJdGVtU2VsZWN0ZWQge1xuXHRib3JkZXI6IDFweCBkb3R0ZWQgYmxhY2sgIWltcG9ydGFudDtcdC8qIGZvciAyLjAgdXNlIG91dGxpbmUgaW5zdGVhZCwgdG8gcHJldmVudCBqaXR0ZXIgKi9cbn1cblxuLmRqX2ExMXkgLmRpaml0TWVudUl0ZW1TZWxlY3RlZCAuZGlqaXRNZW51SXRlbUxhYmVsIHtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG59XG4uZGpfaWU4IC5kal9hMTF5IC5kaWppdE1lbnVJdGVtTGFiZWwge1xuXHRwb3NpdGlvbjpzdGF0aWM7XG59XG5cbi5kaWppdE1lbnVFeHBhbmRBMTF5IHtcblx0ZGlzcGxheTogbm9uZTtcbn1cbi5kal9hMTF5IC5kaWppdE1lbnVFeHBhbmRBMTF5IHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGlqaXRNZW51U2VwYXJhdG9yIHRkIHtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xufVxuXG4vKiBzZXBhcmF0b3IgY2FuIGJlIHR3byBwaXhlbHMgLS0gc2V0IGJvcmRlciBvZiBlaXRoZXIgb25lIHRvIDAgdG8gaGF2ZSBvbmx5IG9uZSAqL1xuLmRpaml0TWVudVNlcGFyYXRvclRvcCB7XG5cdGhlaWdodDogNTAlO1xuXHRtYXJnaW46IDA7XG5cdG1hcmdpbi10b3A6M3B4O1xuXHRmb250LXNpemU6IDFweDtcbn1cblxuLmRpaml0TWVudVNlcGFyYXRvckJvdHRvbSB7XG5cdGhlaWdodDogNTAlO1xuXHRtYXJnaW46IDA7XG5cdG1hcmdpbi1ib3R0b206M3B4O1xuXHRmb250LXNpemU6IDFweDtcbn1cblxuLyogQ2hlY2tlZE1lbnVJdGVtIGFuZCBSYWRpb01lbnVJdGVtICovXG4uZGlqaXRNZW51SXRlbUljb25DaGFyIHtcblx0ZGlzcGxheTogbm9uZTtcdFx0LyogZG9uJ3QgZGlzcGxheSBleGNlcHQgaW4gaGlnaCBjb250cmFzdCBtb2RlICovXG5cdHZpc2liaWxpdHk6IGhpZGRlbjtcdC8qIGZvciBoaWdoIGNvbnRyYXN0IG1vZGUgd2hlbiBtZW51aXRlbSBpcyB1bmNoZWNrZWQ6IGxlYXZlIHNwYWNlIGZvciB3aGVuIGl0IGlzIGNoZWNrZWQgKi9cbn1cbi5kal9hMTF5IC5kaWppdE1lbnVJdGVtSWNvbkNoYXIge1xuXHRkaXNwbGF5OiBpbmxpbmU7XHQvKiBkaXNwbGF5IGNoYXJhY3RlciBpbiBoaWdoIGNvbnRyYXN0IG1vZGUsIHNpbmNlIGljb24gZG9lc24ndCBzaG93ICovXG59XG4uZGlqaXRDaGVja2VkTWVudUl0ZW1DaGVja2VkIC5kaWppdE1lbnVJdGVtSWNvbkNoYXIsXG4uZGlqaXRSYWRpb01lbnVJdGVtQ2hlY2tlZCAuZGlqaXRNZW51SXRlbUljb25DaGFyIHtcblx0dmlzaWJpbGl0eTogdmlzaWJsZTsgLyogbWVudWl0ZW0gaXMgY2hlY2tlZCAqL1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdE1lbnVCYXIgLmRpaml0TWVudUl0ZW0ge1xuXHQvKiBzbyBib3R0b20gYm9yZGVyIG9mIE1lbnVCYXIgYXBwZWFycyBvbiBJRTcgaW4gaGlnaC1jb250cmFzdCBtb2RlICovXG5cdG1hcmdpbjogMDtcbn1cblxuLyogU3RhY2tDb250YWluZXIgKi9cblxuLmRpaml0U3RhY2tDb250cm9sbGVyIC5kaWppdFRvZ2dsZUJ1dHRvbkNoZWNrZWQgKiB7XG5cdGN1cnNvcjogZGVmYXVsdDtcdC8qIGJlY2F1c2UgcHJlc3NpbmcgaXQgaGFzIG5vIGVmZmVjdCAqL1xufVxuXG4vKioqXG5UYWJDb250YWluZXJcblxuTWFpbiBjbGFzcyBoaWVyYXJjaHk6XG5cbi5kaWppdFRhYkNvbnRhaW5lciAtIHRoZSB3aG9sZSBUYWJDb250YWluZXJcbiAgIC5kaWppdFRhYkNvbnRyb2xsZXIgLyAuZGlqaXRUYWJMaXN0Q29udGFpbmVyLXRvcCAtIHdyYXBwZXIgZm9yIHRhYiBidXR0b25zLCBzY3JvbGwgYnV0dG9uc1xuXHQgLmRpaml0VGFiTGlzdFdyYXBwZXIgLyAuZGlqaXRUYWJDb250YWluZXJUb3BTdHJpcCAtIG91dGVyIHdyYXBwZXIgZm9yIHRhYiBidXR0b25zIChub3JtYWwgd2lkdGgpXG5cdFx0Lm5vd3JhcFRhYlN0cmlwIC8gLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgLSBpbm5lciB3cmFwcGVyIGZvciB0YWIgYnV0dG9ucyAoNTBLIHdpZHRoKVxuICAgLmRpaml0VGFiUGFuZVdyYXBwZXIgLSB3cmFwcGVyIGZvciBjb250ZW50IHBhbmVzLCBoYXMgYWxsIGJvcmRlcnMgZXhjZXB0IHRoZSBvbmUgYmV0d2VlbiBjb250ZW50IGFuZCB0YWJzXG4qKiovXG5cbi5kaWppdFRhYkNvbnRhaW5lciB7XG4gICAgei1pbmRleDogMDsgLyogc28gei1pbmRleCBzZXR0aW5ncyBiZWxvdyBoYXZlIG5vIGVmZmVjdCBvdXRzaWRlIG9mIHRoZSBUYWJDb250YWluZXIgKi9cbiAgICBvdmVyZmxvdzogdmlzaWJsZTsgLyogcHJldmVudCBvZmYtYnktb25lLXBpeGVsIGVycm9ycyBmcm9tIGhpZGluZyBib3R0b20gYm9yZGVyIChvcHBvc2l0ZSB0YWIgbGFiZWxzKSAqL1xufVxuLmRqX2llNiAuZGlqaXRUYWJDb250YWluZXIge1xuICAgIC8qIHdvcmthcm91bmQgSUU2IHByb2JsZW0gd2hlbiB0YWxsIGNvbnRlbnQgb3ZlcmZsb3dzIFRhYkNvbnRhaW5lciwgc2VlIGVkaXRvci90ZXN0X0Z1bGxTY3JlZW4uaHRtbCAqL1xuICAgb3ZlcmZsb3c6IGhpZGRlbjtcblxufVxuLmRpaml0VGFiQ29udGFpbmVyTm9MYXlvdXQge1xuXHR3aWR0aDogMTAwJTtcdC8qIG90aGVyd2lzZSBTY3JvbGxpbmdUYWJDb250cm9sbGVyIGdvZXMgdG8gNTBLIHBpeGVscyB3aWRlICovXG59XG5cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzLFxuLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMsXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMsXG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIHtcbiAgICB6LWluZGV4OiAxO1xuXHRvdmVyZmxvdzogdmlzaWJsZSAhaW1wb3J0YW50OyAgLyogc28gdGFicyBjYW4gY292ZXIgdXAgYm9yZGVyIGFkamFjZW50IHRvIGNvbnRhaW5lciAqL1xufVxuXG4uZGlqaXRUYWJDb250cm9sbGVyIHtcbiAgICB6LWluZGV4OiAxO1xufVxuLmRpaml0VGFiQ29udGFpbmVyQm90dG9tLWNvbnRhaW5lcixcbi5kaWppdFRhYkNvbnRhaW5lclRvcC1jb250YWluZXIsXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LWNvbnRhaW5lcixcbi5kaWppdFRhYkNvbnRhaW5lclJpZ2h0LWNvbnRhaW5lciB7XG5cdHotaW5kZXg6MDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcblx0Ym9yZGVyOiAxcHggc29saWQgYmxhY2s7XG59XG4ubm93cmFwVGFiU3RyaXAge1xuXHR3aWR0aDogNTAwMDBweDtcblx0ZGlzcGxheTogYmxvY2s7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0OyAgLyoganVzdCBpbiBjYXNlIGFuY2VzdG9yIGhhcyBub24tc3RhbmRhcmQgc2V0dGluZyAqL1xuICAgIHotaW5kZXg6IDE7XG59XG4uZGlqaXRUYWJMaXN0V3JhcHBlciB7XG5cdG92ZXJmbG93OiBoaWRkZW47XG4gICAgei1pbmRleDogMTtcbn1cblxuLmRqX2ExMXkgLnRhYlN0cmlwQnV0dG9uIGltZyB7XG5cdC8qIGhpZGUgdGhlIGljb25zIChvciByYXRoZXIgdGhlIGVtcHR5IHNwYWNlIHdoZXJlIHRoZXkgbm9ybWFsbHkgYXBwZWFyKSBiZWNhdXNlIHRleHQgd2lsbCBhcHBlYXIgaW5zdGVhZCAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJUb3AtdGFicyB7XG5cdGJvcmRlci1ib3R0b206IDFweCBzb2xpZCBibGFjaztcbn1cbi5kaWppdFRhYkNvbnRhaW5lclRvcC1jb250YWluZXIge1xuXHRib3JkZXItdG9wOiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMge1xuXHRib3JkZXItcmlnaHQ6IDFweCBzb2xpZCBibGFjaztcblx0ZmxvYXQ6IGxlZnQ7ICAgIC8qIG5lZWRlZCBmb3IgSUU3IFJUTCBtb2RlICovXG59XG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LWNvbnRhaW5lciB7XG5cdGJvcmRlci1sZWZ0OiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJCb3R0b20tdGFicyB7XG5cdGJvcmRlci10b3A6IDFweCBzb2xpZCBibGFjaztcbn1cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS1jb250YWluZXIge1xuXHRib3JkZXItYm90dG9tOiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIHtcblx0Ym9yZGVyLWxlZnQ6IDFweCBzb2xpZCBibGFjaztcblx0ZmxvYXQ6IGxlZnQ7ICAgIC8qIG5lZWRlZCBmb3IgSUU3IFJUTCBtb2RlICovXG59XG4uZGlqaXRUYWJDb250YWluZXJSaWdodC1jb250YWluZXIge1xuXHRib3JkZXItcmlnaHQ6IDA7XG59XG5cbmRpdi5kaWppdFRhYkRpc2FibGVkLCAuZGpfaWUgZGl2LmRpaml0VGFiRGlzYWJsZWQge1xuXHRjdXJzb3I6IGF1dG87XG59XG5cbi5kaWppdFRhYiB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRjdXJzb3I6cG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcblx0d2hpdGUtc3BhY2U6bm93cmFwO1xuXHR6LWluZGV4OjM7XG59XG4uZGlqaXRUYWIgKiB7XG5cdC8qIG1ha2UgdGFiIGljb25zIGFuZCBjbG9zZSBpY29uIGxpbmUgdXAgdy90ZXh0ICovXG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG4uZGlqaXRUYWJDaGVja2VkIHtcblx0Y3Vyc29yOiBkZWZhdWx0O1x0LyogYmVjYXVzZSBjbGlja2luZyB3aWxsIGhhdmUgbm8gZWZmZWN0ICovXG59XG5cbi5kaWppdFRhYkNvbnRhaW5lclRvcC10YWJzIC5kaWppdFRhYiB7XG5cdHRvcDogMXB4O1x0LyogdG8gb3ZlcmxhcCBib3JkZXIgb24gLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgKi9cbn1cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzIC5kaWppdFRhYiB7XG5cdHRvcDogLTFweDtcdC8qIHRvIG92ZXJsYXAgYm9yZGVyIG9uIC5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzICovXG59XG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMgLmRpaml0VGFiIHtcblx0bGVmdDogMXB4O1x0LyogdG8gb3ZlcmxhcCBib3JkZXIgb24gLmRpaml0VGFiQ29udGFpbmVyTGVmdC10YWJzICovXG59XG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIC5kaWppdFRhYiB7XG5cdGxlZnQ6IC0xcHg7XHQvKiB0byBvdmVybGFwIGJvcmRlciBvbiAuZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzICovXG59XG5cblxuLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgLmRpaml0VGFiLFxuLmRpaml0VGFiQ29udGFpbmVyQm90dG9tLXRhYnMgLmRpaml0VGFiIHtcblx0LyogSW5saW5lLWJsb2NrICovXG5cdGRpc3BsYXk6aW5saW5lLWJsb2NrO1x0XHRcdC8qIHdlYmtpdCBhbmQgRkYzICovXG5cdCN6b29tOiAxOyAvKiBzZXQgaGFzTGF5b3V0OnRydWUgdG8gbWltaWMgaW5saW5lLWJsb2NrICovXG5cdCNkaXNwbGF5OmlubGluZTsgLyogZG9uJ3QgdXNlIC5kal9pZSBzaW5jZSB0aGF0IGluY3JlYXNlcyB0aGUgcHJpb3JpdHkgKi9cbn1cblxuLnRhYlN0cmlwQnV0dG9uIHtcblx0ei1pbmRleDogMTI7XG59XG5cbi5kaWppdFRhYkJ1dHRvbkRpc2FibGVkIC50YWJTdHJpcEJ1dHRvbiB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cblxuLmRpaml0VGFiQ2xvc2VCdXR0b24ge1xuXHRtYXJnaW4tbGVmdDogMWVtO1xufVxuXG4uZGlqaXRUYWJDbG9zZVRleHQge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi5kaWppdFRhYiAudGFiTGFiZWwge1xuXHQvKiBtYWtlIHN1cmUgdGFicyB3L2Nsb3NlIGJ1dHRvbiBhbmQgdy9vdXQgY2xvc2UgYnV0dG9uIGFyZSBzYW1lIGhlaWdodCwgZXZlbiB3L3NtYWxsICg8MTVweCkgZm9udC5cblx0ICogYXNzdW1lcyA8PTE1cHggaGVpZ2h0IGZvciBjbG9zZSBidXR0b24gaWNvbi5cblx0ICovXG5cdG1pbi1oZWlnaHQ6IDE1cHg7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cbi5kaWppdE5vSWNvbiB7XG5cdC8qIGFwcGxpZWQgdG8gPGltZz4vPHNwYW4+IG5vZGUgd2hlbiB0aGVyZSBpcyBubyBpY29uIHNwZWNpZmllZCAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRqX2llNiAuZGlqaXRUYWIgLmRpaml0Tm9JY29uIHtcblx0LyogYmVjYXVzZSBtaW4taGVpZ2h0IChvbiAudGFiTGFiZWwsIGFib3ZlKSBkb2Vzbid0IHdvcmsgb24gSUU2ICovXG5cdGRpc3BsYXk6IGlubGluZTtcblx0aGVpZ2h0OiAxNXB4O1xuXHR3aWR0aDogMXB4O1xufVxuXG4vKiBpbWFnZXMgb2ZmLCBoaWdoLWNvbnRyYXN0IG1vZGUgc3R5bGVzICovXG5cbi5kal9hMTF5IC5kaWppdFRhYkNsb3NlQnV0dG9uIHtcblx0YmFja2dyb3VuZC1pbWFnZTogbm9uZSAhaW1wb3J0YW50O1xuXHR3aWR0aDogYXV0byAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcbn1cblxuLmRqX2ExMXkgLmRpaml0VGFiQ2xvc2VUZXh0IHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGlqaXRUYWJQYW5lLFxuLmRpaml0U3RhY2tDb250YWluZXItY2hpbGQsXG4uZGlqaXRBY2NvcmRpb25Db250YWluZXItY2hpbGQge1xuXHQvKiBjaGlsZHJlbiBvZiBUYWJDb250YWluZXIsIFN0YWNrQ29udGFpbmVyLCBhbmQgQWNjb3JkaW9uQ29udGFpbmVyIHNob3VsZG4ndCBoYXZlIGJvcmRlcnNcblx0ICogYi9jIGEgYm9yZGVyIGlzIGFscmVhZHkgdGhlcmUgZnJvbSB0aGUgVGFiQ29udGFpbmVyL1N0YWNrQ29udGFpbmVyL0FjY29yZGlvbkNvbnRhaW5lciBpdHNlbGYuXG5cdCAqL1xuICAgIGJvcmRlcjogbm9uZSAhaW1wb3J0YW50O1xufVxuXG4vKiBJbmxpbmVFZGl0Qm94ICovXG4uZGlqaXRJbmxpbmVFZGl0Qm94RGlzcGxheU1vZGUge1xuXHRib3JkZXI6IDFweCBzb2xpZCB0cmFuc3BhcmVudDtcdC8qIHNvIGtleWxpbmUgKGJvcmRlcikgb24gaG92ZXIgY2FuIGFwcGVhciB3aXRob3V0IHNjcmVlbiBqdW1wICovXG5cdGN1cnNvcjogdGV4dDtcbn1cblxuLmRqX2ExMXkgLmRpaml0SW5saW5lRWRpdEJveERpc3BsYXlNb2RlLFxuLmRqX2llNiAuZGlqaXRJbmxpbmVFZGl0Qm94RGlzcGxheU1vZGUge1xuXHQvKiBleGNlcHQgdGhhdCBJRTYgZG9lc24ndCBzdXBwb3J0IHRyYW5zcGFyZW50IGJvcmRlcnMsIG5vciBkb2VzIGhpZ2ggY29udHJhc3QgbW9kZSAqL1xuXHRib3JkZXI6IG5vbmU7XG59XG5cbi5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZUhvdmVyLFxuLmRqX2ExMXkgLmRpaml0SW5saW5lRWRpdEJveERpc3BsYXlNb2RlSG92ZXIsXG4uZGpfaWU2IC5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZUhvdmVyIHtcblx0LyogQW4gSW5saW5lRWRpdEJveCBpbiB2aWV3IG1vZGUgKGNsaWNrIHRoaXMgdG8gZWRpdCB0aGUgdGV4dCkgKi9cblx0YmFja2dyb3VuZC1jb2xvcjogI2UyZWJmMjtcblx0Ym9yZGVyOiBzb2xpZCAxcHggYmxhY2s7XG59XG5cbi5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZURpc2FibGVkIHtcblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4vKiBUcmVlICovXG4uZGlqaXRUcmVlIHtcblx0b3ZlcmZsb3c6IGF1dG87XHQvKiBmb3Igc2Nyb2xsYmFycyB3aGVuIFRyZWUgaGFzIGEgaGVpZ2h0IHNldHRpbmcsIGFuZCB0byBwcmV2ZW50IHdyYXBwaW5nIGFyb3VuZCBmbG9hdCBlbGVtZW50cywgc2VlICMxMTQ5MSAqL1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGlqaXRUcmVlQ29udGFpbmVyIHtcblx0ZmxvYXQ6IGxlZnQ7XHQvKiBmb3IgY29ycmVjdCBoaWdobGlnaHRpbmcgZHVyaW5nIGhvcml6b250YWwgc2Nyb2xsLCBzZWUgIzE2MTMyICovXG59XG5cbi5kaWppdFRyZWVJbmRlbnQge1xuXHQvKiBhbW91bnQgdG8gaW5kZW50IGVhY2ggdHJlZSBub2RlIChyZWxhdGl2ZSB0byBwYXJlbnQgbm9kZSkgKi9cblx0d2lkdGg6IDE5cHg7XG59XG5cbi5kaWppdFRyZWVSb3csIC5kaWppdFRyZWVDb250ZW50IHtcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcbn1cblxuLmRqX2llIC5kaWppdFRyZWVMYWJlbDpmb2N1cyB7XG5cdC8qIHdvcmthcm91bmQgSUU5IGJlaGF2aW9yIHdoZXJlIGRvd24gYXJyb3dpbmcgdGhyb3VnaCBUcmVlTm9kZXMgZG9lc24ndCBzaG93IGZvY3VzIG91dGxpbmUgKi9cblx0b3V0bGluZTogMXB4IGRvdHRlZCBibGFjaztcbn1cblxuLmRpaml0VHJlZVJvdyBpbWcge1xuXHQvKiBtYWtlIHRoZSBleHBhbmRvIGFuZCBmb2xkZXIgaWNvbnMgbGluZSB1cCB3aXRoIHRoZSBsYWJlbCAqL1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuXG4uZGlqaXRUcmVlQ29udGVudCB7XG4gICAgY3Vyc29yOiBkZWZhdWx0O1xufVxuXG4uZGlqaXRFeHBhbmRvVGV4dCB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cbi5kal9hMTF5IC5kaWppdEV4cGFuZG9UZXh0IHtcblx0ZGlzcGxheTogaW5saW5lO1xuXHRwYWRkaW5nLWxlZnQ6IDEwcHg7XG5cdHBhZGRpbmctcmlnaHQ6IDEwcHg7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG5cdGJvcmRlci13aWR0aDogdGhpbjtcblx0Y3Vyc29yOiBwb2ludGVyO1xufVxuXG4uZGlqaXRUcmVlTGFiZWwge1xuXHRtYXJnaW46IDAgNHB4O1xufVxuXG4vKiBEaWFsb2cgKi9cblxuLmRpaml0RGlhbG9nIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR6LWluZGV4OiA5OTk7XG5cdG92ZXJmbG93OiBoaWRkZW47XHQvKiBvdmVycmlkZSBvdmVyZmxvdzogYXV0bzsgZnJvbSBDb250ZW50UGFuZSB0byBtYWtlIGRyYWdnaW5nIHNtb290aGVyICovXG59XG5cbi5kaWppdERpYWxvZ1RpdGxlQmFyIHtcblx0Y3Vyc29yOiBtb3ZlO1xufVxuLmRpaml0RGlhbG9nRml4ZWQgLmRpaml0RGlhbG9nVGl0bGVCYXIge1xuXHRjdXJzb3I6ZGVmYXVsdDtcbn1cbi5kaWppdERpYWxvZ0Nsb3NlSWNvbiB7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cbi5kaWppdERpYWxvZ1BhbmVDb250ZW50IHtcblx0LXdlYmtpdC1vdmVyZmxvdy1zY3JvbGxpbmc6IHRvdWNoO1xufVxuLmRpaml0RGlhbG9nVW5kZXJsYXlXcmFwcGVyIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHRsZWZ0OiAwO1xuXHR0b3A6IDA7XG5cdHotaW5kZXg6IDk5ODtcblx0ZGlzcGxheTogbm9uZTtcblx0YmFja2dyb3VuZDogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbn1cblxuLmRpaml0RGlhbG9nVW5kZXJsYXkge1xuXHRiYWNrZ3JvdW5kOiAjZWVlO1xuXHRvcGFjaXR5OiAwLjU7XG59XG5cbi5kal9pZSAuZGlqaXREaWFsb2dVbmRlcmxheSB7XG5cdGZpbHRlcjogYWxwaGEob3BhY2l0eT01MCk7XG59XG5cbi8qIGltYWdlcyBvZmYsIGhpZ2gtY29udHJhc3QgbW9kZSBzdHlsZXMgKi9cbi5kal9hMTF5IC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGpfYTExeSAuZGlqaXREaWFsb2cge1xuXHRvcGFjaXR5OiAxICFpbXBvcnRhbnQ7XG5cdGJhY2tncm91bmQtY29sb3I6IHdoaXRlICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdERpYWxvZyAuY2xvc2VUZXh0IHtcblx0ZGlzcGxheTpub25lO1xuXHQvKiBmb3IgdGhlIG9uaG92ZXIgYm9yZGVyIGluIGhpZ2ggY29udHJhc3Qgb24gSUU6ICovXG5cdHBvc2l0aW9uOmFic29sdXRlO1xufVxuXG4uZGpfYTExeSAuZGlqaXREaWFsb2cgLmNsb3NlVGV4dCB7XG5cdGRpc3BsYXk6aW5saW5lO1xufVxuXG4vKiBTbGlkZXIgKi9cblxuLmRpaml0U2xpZGVyTW92ZWFibGUge1xuXHR6LWluZGV4Ojk5O1xuXHRwb3NpdGlvbjphYnNvbHV0ZSAhaW1wb3J0YW50O1xuXHRkaXNwbGF5OmJsb2NrO1xuXHR2ZXJ0aWNhbC1hbGlnbjptaWRkbGU7XG59XG5cbi5kaWppdFNsaWRlck1vdmVhYmxlSCB7XG5cdHJpZ2h0OjA7XG59XG4uZGlqaXRTbGlkZXJNb3ZlYWJsZVYge1xuXHRyaWdodDo1MCU7XG59XG5cbi5kal9hMTF5IGRpdi5kaWppdFNsaWRlckltYWdlSGFuZGxlLFxuLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRtYXJnaW46MDtcblx0cGFkZGluZzowO1xuXHRwb3NpdGlvbjpyZWxhdGl2ZSAhaW1wb3J0YW50O1xuXHRib3JkZXI6OHB4IHNvbGlkIGdyYXk7XG5cdHdpZHRoOjA7XG5cdGhlaWdodDowO1xuXHRjdXJzb3I6IHBvaW50ZXI7XG5cdC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRqX2ExMXkgLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRmb250LXNpemU6IDA7XG59XG4uZGpfaWU3IC5kaWppdFNsaWRlckltYWdlSGFuZGxlIHtcblx0b3ZlcmZsb3c6IGhpZGRlbjsgLyogSUU3IHdvcmthcm91bmQgdG8gbWFrZSBzbGlkZXIgaGFuZGxlIFZJU0lCTEUgaW4gbm9uLWExMXkgbW9kZSAqL1xufVxuLmRqX2llNyAuZGpfYTExeSAuZGlqaXRTbGlkZXJJbWFnZUhhbmRsZSB7XG5cdG92ZXJmbG93OiB2aXNpYmxlOyAvKiBJRTcgd29ya2Fyb3VuZCB0byBtYWtlIHNsaWRlciBoYW5kbGUgVklTSUJMRSBpbiBhMTF5IG1vZGUgKi9cbn1cbi5kal9hMTF5IC5kaWppdFNsaWRlckZvY3VzZWQgLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRib3JkZXI6NHB4IHNvbGlkICMwMDA7XG5cdGhlaWdodDo4cHg7XG5cdHdpZHRoOjhweDtcbn1cblxuLmRpaml0U2xpZGVySW1hZ2VIYW5kbGVWIHtcblx0dG9wOi04cHg7XG5cdHJpZ2h0OiAtNTAlO1xufVxuXG4uZGlqaXRTbGlkZXJJbWFnZUhhbmRsZUgge1xuXHRsZWZ0OjUwJTtcblx0dG9wOi01cHg7XG5cdHZlcnRpY2FsLWFsaWduOnRvcDtcbn1cblxuLmRpaml0U2xpZGVyQmFyIHtcblx0Ym9yZGVyLXN0eWxlOnNvbGlkO1xuXHRib3JkZXItY29sb3I6YmxhY2s7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLmRpaml0U2xpZGVyQmFyQ29udGFpbmVyViB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRoZWlnaHQ6MTAwJTtcblx0ei1pbmRleDoxO1xufVxuXG4uZGlqaXRTbGlkZXJCYXJDb250YWluZXJIIHtcblx0cG9zaXRpb246cmVsYXRpdmU7XG5cdHotaW5kZXg6MTtcbn1cblxuLmRpaml0U2xpZGVyQmFySCB7XG5cdGhlaWdodDo0cHg7XG5cdGJvcmRlci13aWR0aDoxcHggMDtcbn1cblxuLmRpaml0U2xpZGVyQmFyViB7XG5cdHdpZHRoOjRweDtcblx0Ym9yZGVyLXdpZHRoOjAgMXB4O1xufVxuXG4uZGlqaXRTbGlkZXJQcm9ncmVzc0JhciB7XG5cdGJhY2tncm91bmQtY29sb3I6cmVkO1xuXHR6LWluZGV4OjE7XG59XG5cbi5kaWppdFNsaWRlclByb2dyZXNzQmFyViB7XG5cdHBvc2l0aW9uOnN0YXRpYyAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6MDtcblx0dmVydGljYWwtYWxpZ246dG9wO1xuXHR0ZXh0LWFsaWduOmxlZnQ7XG59XG5cbi5kaWppdFNsaWRlclByb2dyZXNzQmFySCB7XG5cdHBvc2l0aW9uOmFic29sdXRlICFpbXBvcnRhbnQ7XG5cdHdpZHRoOjA7XG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0b3ZlcmZsb3c6dmlzaWJsZTtcbn1cblxuLmRpaml0U2xpZGVyUmVtYWluaW5nQmFyIHtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHRiYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFyZW50O1xuXHR6LWluZGV4OjE7XG59XG5cbi5kaWppdFNsaWRlclJlbWFpbmluZ0JhclYge1xuXHRoZWlnaHQ6MTAwJTtcblx0dGV4dC1hbGlnbjpsZWZ0O1xufVxuXG4uZGlqaXRTbGlkZXJSZW1haW5pbmdCYXJIIHtcblx0d2lkdGg6MTAwJSAhaW1wb3J0YW50O1xufVxuXG4vKiB0aGUgc2xpZGVyIGJ1bXBlciBpcyB0aGUgc3BhY2UgY29uc3VtZWQgYnkgdGhlIHNsaWRlciBoYW5kbGUgd2hlbiBpdCBoYW5ncyBvdmVyIGFuIGVkZ2UgKi9cbi5kaWppdFNsaWRlckJ1bXBlciB7XG5cdG92ZXJmbG93OmhpZGRlbjtcblx0ei1pbmRleDoxO1xufVxuXG4uZGlqaXRTbGlkZXJCdW1wZXJWIHtcblx0d2lkdGg6NHB4O1xuXHRoZWlnaHQ6OHB4O1xuXHRib3JkZXItd2lkdGg6MCAxcHg7XG59XG5cbi5kaWppdFNsaWRlckJ1bXBlckgge1xuXHR3aWR0aDo4cHg7XG5cdGhlaWdodDo0cHg7XG5cdGJvcmRlci13aWR0aDoxcHggMDtcbn1cblxuLmRpaml0U2xpZGVyQm90dG9tQnVtcGVyLFxuLmRpaml0U2xpZGVyTGVmdEJ1bXBlciB7XG5cdGJhY2tncm91bmQtY29sb3I6cmVkO1xufVxuXG4uZGlqaXRTbGlkZXJUb3BCdW1wZXIsXG4uZGlqaXRTbGlkZXJSaWdodEJ1bXBlciB7XG5cdGJhY2tncm91bmQtY29sb3I6dHJhbnNwYXJlbnQ7XG59XG5cbi5kaWppdFNsaWRlckRlY29yYXRpb24ge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvbkMsXG4uZGlqaXRTbGlkZXJEZWNvcmF0aW9uViB7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTsgLyogbmVlZGVkIGZvciBJRStxdWlya3MrUlRMK3ZlcnRpY2FsIChyZW5kZXJpbmcgYnVnKSBidXQgYWRkIGV2ZXJ5d2hlcmUgZm9yIGN1c3RvbSBzdHlsaW5nIGNvbnNpc3RlbmN5IGJ1dCB0aGlzIG1lc3NlcyB1cCBJRSBob3Jpem9udGFsIHNsaWRlcnMgKi9cbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvbkgge1xuXHR3aWR0aDogMTAwJTtcbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvblYge1xuXHRoZWlnaHQ6IDEwMCU7XG5cdHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi5kaWppdFNsaWRlckJ1dHRvbiB7XG5cdGZvbnQtZmFtaWx5Om1vbm9zcGFjZTtcblx0bWFyZ2luOjA7XG5cdHBhZGRpbmc6MDtcblx0ZGlzcGxheTpibG9jaztcbn1cblxuLmRqX2ExMXkgLmRpaml0U2xpZGVyQnV0dG9uSW5uZXIge1xuXHR2aXNpYmlsaXR5OnZpc2libGUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0U2xpZGVyQnV0dG9uQ29udGFpbmVyIHtcblx0dGV4dC1hbGlnbjpjZW50ZXI7XG5cdGhlaWdodDowO1x0LyogPz8/ICovXG59XG4uZGlqaXRTbGlkZXJCdXR0b25Db250YWluZXIgKiB7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLmRpaml0U2xpZGVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRwYWRkaW5nOjA7XG5cdGRpc3BsYXk6YmxvY2s7XG59XG5cbi5kaWppdFJ1bGVDb250YWluZXIge1xuXHRwb3NpdGlvbjpyZWxhdGl2ZTtcblx0b3ZlcmZsb3c6dmlzaWJsZTtcbn1cblxuLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRoZWlnaHQ6MTAwJTtcblx0bGluZS1oZWlnaHQ6MDtcblx0ZmxvYXQ6bGVmdDtcblx0dGV4dC1hbGlnbjpsZWZ0O1xufVxuXG4uZGpfb3BlcmEgLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRsaW5lLWhlaWdodDoyJTtcbn1cblxuLmRqX2llIC5kaWppdFJ1bGVDb250YWluZXJWIHtcblx0bGluZS1oZWlnaHQ6bm9ybWFsO1xufVxuXG4uZGpfZ2Vja28gLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRtYXJnaW46MCAwIDFweCAwOyAvKiBtb3ppbGxhIGJ1ZyB3b3JrYXJvdW5kIGZvciBmbG9hdDpsZWZ0LGhlaWdodDoxMDAlIGJsb2NrIGVsZW1lbnRzICovXG59XG5cbi5kaWppdFJ1bGVNYXJrIHtcblx0cG9zaXRpb246YWJzb2x1dGU7XG5cdGJvcmRlcjoxcHggc29saWQgYmxhY2s7XG5cdGxpbmUtaGVpZ2h0OjA7XG5cdGhlaWdodDoxMDAlO1xufVxuXG4uZGlqaXRSdWxlTWFya0gge1xuXHR3aWR0aDowO1xuXHRib3JkZXItdG9wLXdpZHRoOjAgIWltcG9ydGFudDtcblx0Ym9yZGVyLWJvdHRvbS13aWR0aDowICFpbXBvcnRhbnQ7XG5cdGJvcmRlci1sZWZ0LXdpZHRoOjAgIWltcG9ydGFudDtcbn1cblxuLmRpaml0UnVsZUxhYmVsQ29udGFpbmVyIHtcblx0cG9zaXRpb246YWJzb2x1dGU7XG59XG5cbi5kaWppdFJ1bGVMYWJlbENvbnRhaW5lckgge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0ZGlzcGxheTppbmxpbmUtYmxvY2s7XG59XG5cbi5kaWppdFJ1bGVMYWJlbEgge1xuXHRwb3NpdGlvbjpyZWxhdGl2ZTtcblx0bGVmdDotNTAlO1xufVxuXG4uZGlqaXRSdWxlTGFiZWxWIHtcblx0Lyogc28gdGhhdCBsb25nIGxhYmVscyBkb24ndCBvdmVyZmxvdyB0byBtdWx0aXBsZSByb3dzLCBvciBvdmVyd3JpdGUgc2xpZGVyIGl0c2VsZiAqL1xuXHR0ZXh0LW92ZXJmbG93OiBlbGxpcHNpcztcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLmRpaml0UnVsZU1hcmtWIHtcblx0aGVpZ2h0OjA7XG5cdGJvcmRlci1yaWdodC13aWR0aDowICFpbXBvcnRhbnQ7XG5cdGJvcmRlci1ib3R0b20td2lkdGg6MCAhaW1wb3J0YW50O1xuXHRib3JkZXItbGVmdC13aWR0aDowICFpbXBvcnRhbnQ7XG5cdHdpZHRoOjEwMCU7XG5cdGxlZnQ6MDtcbn1cblxuLmRqX2llIC5kaWppdFJ1bGVMYWJlbENvbnRhaW5lclYge1xuXHRtYXJnaW4tdG9wOi0uNTVlbTtcbn1cblxuLmRqX2ExMXkgLmRpaml0U2xpZGVyUmVhZE9ubHksXG4uZGpfYTExeSAuZGlqaXRTbGlkZXJEaXNhYmxlZCB7XG5cdG9wYWNpdHk6MC42O1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdFNsaWRlclJlYWRPbmx5IC5kaWppdFNsaWRlckJhcixcbi5kal9pZSAuZGpfYTExeSAuZGlqaXRTbGlkZXJEaXNhYmxlZCAuZGlqaXRTbGlkZXJCYXIge1xuXHRmaWx0ZXI6IGFscGhhKG9wYWNpdHk9NDApO1xufVxuXG4vKiArIGFuZCAtIFNsaWRlciBidXR0b25zOiBvdmVycmlkZSB0aGVtZSBzZXR0aW5ncyB0byBkaXNwbGF5IGljb25zICovXG4uZGpfYTExeSAuZGlqaXRTbGlkZXIgLmRpaml0U2xpZGVyQnV0dG9uQ29udGFpbmVyIGRpdiB7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7IC8qIG90aGVyd2lzZSBoeXBoZW4gaXMgbGFyZ2VyIGFuZCBtb3JlIHZlcnRpY2FsbHkgY2VudGVyZWQgKi9cblx0Zm9udC1zaXplOiAxZW07XG5cdGxpbmUtaGVpZ2h0OiAxZW07XG5cdGhlaWdodDogYXV0bztcblx0d2lkdGg6IGF1dG87XG5cdG1hcmdpbjogMCA0cHg7XG59XG5cbi8qIEljb24tb25seSBidXR0b25zIChvZnRlbiBpbiB0b29sYmFycykgc3RpbGwgZGlzcGxheSB0aGUgdGV4dCBpbiBoaWdoLWNvbnRyYXN0IG1vZGUgKi9cbi5kal9hMTF5IC5kaWppdEJ1dHRvbkNvbnRlbnRzIC5kaWppdEJ1dHRvblRleHQsXG4uZGpfYTExeSAuZGlqaXRUYWIgLnRhYkxhYmVsIHtcblx0ZGlzcGxheTogaW5saW5lICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uVGV4dCB7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jayAhaW1wb3J0YW50O1xufVxuXG4vKiBUZXh0QXJlYSwgU2ltcGxlVGV4dEFyZWEgKi9cbi5kaWppdFRleHRBcmVhIHtcblx0d2lkdGg6MTAwJTtcblx0b3ZlcmZsb3cteTogYXV0bztcdC8qIHcvb3V0IHRoaXMgSUUncyBTaW1wbGVUZXh0QXJlYSBnb2VzIHRvIG92ZXJmbG93OiBzY3JvbGwgKi9cbn1cbi5kaWppdFRleHRBcmVhW2NvbHNdIHtcblx0d2lkdGg6YXV0bzsgLyogU2ltcGxlVGV4dEFyZWEgY29scyAqL1xufVxuLmRqX2llIC5kaWppdFRleHRBcmVhQ29scyB7XG5cdHdpZHRoOmF1dG87XG59XG5cbi5kaWppdEV4cGFuZGluZ1RleHRBcmVhIHtcblx0LyogZm9yIGF1dG8gZXhhbmRpbmcgdGV4dGFyZWEgKGNhbGxlZCBUZXh0YXJlYSBjdXJyZW50bHksIHJlbmFtZSBmb3IgMi4wKSBkb24ndCB3YW50IHRvIGRpc3BsYXkgdGhlIGdyaXAgdG8gcmVzaXplICovXG5cdHJlc2l6ZTogbm9uZTtcbn1cblxuXG4vKiBUb29sYmFyXG4gKiBOb3RlIHRoYXQgb3RoZXIgdG9vbGJhciBydWxlcyAoZm9yIG9iamVjdHMgaW4gdG9vbGJhcnMpIGFyZSBzY2F0dGVyZWQgdGhyb3VnaG91dCB0aGlzIGZpbGUuXG4gKi9cblxuLmRpaml0VG9vbGJhclNlcGFyYXRvciB7XG5cdGhlaWdodDogMThweDtcblx0d2lkdGg6IDVweDtcblx0cGFkZGluZzogMCAxcHg7XG5cdG1hcmdpbjogMDtcbn1cblxuLyogRWRpdG9yICovXG4uZGlqaXRJRUZpeGVkVG9vbGJhciB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHQvKiB0b3A6MDsgKi9cblx0dG9wOiBleHByZXNzaW9uKGV2YWwoKGRvY3VtZW50LmRvY3VtZW50RWxlbWVudHx8ZG9jdW1lbnQuYm9keSkuc2Nyb2xsVG9wKSk7XG59XG5cbi5kaWppdEVkaXRvciB7XG5cdGRpc3BsYXk6IGJsb2NrO1x0LyogcHJldmVudHMgZ2xpdGNoIG9uIEZGIHdpdGggSW5saW5lRWRpdEJveCwgc2VlICM4NDA0ICovXG59XG5cbi5kaWppdEVkaXRvckRpc2FibGVkLFxuLmRpaml0RWRpdG9yUmVhZE9ubHkge1xuXHRjb2xvcjogZ3JheTtcbn1cblxuLyogVGltZVBpY2tlciAqL1xuXG4uZGlqaXRUaW1lUGlja2VyIHtcblx0YmFja2dyb3VuZC1jb2xvcjogd2hpdGU7XG59XG4uZGlqaXRUaW1lUGlja2VySXRlbSB7XG5cdGN1cnNvcjpwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0VGltZVBpY2tlckl0ZW1Ib3ZlciB7XG5cdGJhY2tncm91bmQtY29sb3I6Z3JheTtcblx0Y29sb3I6d2hpdGU7XG59XG4uZGlqaXRUaW1lUGlja2VySXRlbVNlbGVjdGVkIHtcblx0Zm9udC13ZWlnaHQ6Ym9sZDtcblx0Y29sb3I6IzMzMztcblx0YmFja2dyb3VuZC1jb2xvcjojYjdjZGVlO1xufVxuLmRpaml0VGltZVBpY2tlckl0ZW1EaXNhYmxlZCB7XG5cdGNvbG9yOmdyYXk7XG5cdHRleHQtZGVjb3JhdGlvbjpsaW5lLXRocm91Z2g7XG59XG5cbi5kaWppdFRpbWVQaWNrZXJJdGVtSW5uZXIge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0Ym9yZGVyOjA7XG5cdHBhZGRpbmc6MnB4IDhweCAycHggOHB4O1xufVxuXG4uZGlqaXRUaW1lUGlja2VyVGljayxcbi5kaWppdFRpbWVQaWNrZXJNYXJrZXIge1xuXHRib3JkZXItYm90dG9tOjFweCBzb2xpZCBncmF5O1xufVxuXG4uZGlqaXRUaW1lUGlja2VyIC5kaWppdERvd25BcnJvd0J1dHRvbiB7XG5cdGJvcmRlci10b3A6IG5vbmUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0VGltZVBpY2tlclRpY2sge1xuXHRjb2xvcjojQ0NDO1xufVxuXG4uZGlqaXRUaW1lUGlja2VyTWFya2VyIHtcblx0Y29sb3I6YmxhY2s7XG5cdGJhY2tncm91bmQtY29sb3I6I0NDQztcbn1cblxuLmRqX2ExMXkgLmRpaml0VGltZVBpY2tlckl0ZW1TZWxlY3RlZCAuZGlqaXRUaW1lUGlja2VySXRlbUlubmVyIHtcblx0Ym9yZGVyOiBzb2xpZCA0cHggYmxhY2s7XG59XG4uZGpfYTExeSAuZGlqaXRUaW1lUGlja2VySXRlbUhvdmVyIC5kaWppdFRpbWVQaWNrZXJJdGVtSW5uZXIge1xuXHRib3JkZXI6IGRhc2hlZCA0cHggYmxhY2s7XG59XG5cblxuLmRpaml0VG9nZ2xlQnV0dG9uSWNvbkNoYXIge1xuXHQvKiBjaGFyYWN0ZXIgKGluc3RlYWQgb2YgaWNvbikgdG8gc2hvdyB0aGF0IFRvZ2dsZUJ1dHRvbiBpcyBjaGVja2VkICovXG5cdGRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0VG9nZ2xlQnV0dG9uIC5kaWppdFRvZ2dsZUJ1dHRvbkljb25DaGFyIHtcblx0ZGlzcGxheTppbmxpbmUgIWltcG9ydGFudDtcblx0dmlzaWJpbGl0eTpoaWRkZW47XG59XG4uZGpfaWU2IC5kaWppdFRvZ2dsZUJ1dHRvbkljb25DaGFyLCAuZGpfaWU2IC50YWJTdHJpcEJ1dHRvbiAuZGlqaXRCdXR0b25UZXh0IHtcblx0Zm9udC1mYW1pbHk6IFwiQXJpYWwgVW5pY29kZSBNU1wiO1x0Lyogb3RoZXJ3aXNlIHRoZSBhMTF5IGNoYXJhY3RlciAoY2hlY2ttYXJrLCBhcnJvdywgZXRjLikgYXBwZWFycyBhcyBhIGJveCAqL1xufVxuLmRqX2ExMXkgLmRpaml0VG9nZ2xlQnV0dG9uQ2hlY2tlZCAuZGlqaXRUb2dnbGVCdXR0b25JY29uQ2hhciB7XG5cdGRpc3BsYXk6IGlubGluZSAhaW1wb3J0YW50OyAvKiBJbiBoaWdoIGNvbnRyYXN0IG1vZGUsIGRpc3BsYXkgdGhlIGNoZWNrIHN5bWJvbCAqL1xuXHR2aXNpYmlsaXR5OnZpc2libGUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0QXJyb3dCdXR0b25DaGFyIHtcblx0ZGlzcGxheTpub25lICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRBcnJvd0J1dHRvbkNoYXIge1xuXHRkaXNwbGF5OmlubGluZSAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXREcm9wRG93bkJ1dHRvbiAuZGlqaXRBcnJvd0J1dHRvbklubmVyLFxuLmRqX2ExMXkgLmRpaml0Q29tYm9CdXR0b24gLmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdGRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O1xufVxuXG4vKiBTZWxlY3QgKi9cbi5kal9hMTF5IC5kaWppdFNlbGVjdCB7XG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGUgIWltcG9ydGFudDtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG59XG4uZGpfaWUgLmRpaml0U2VsZWN0IHtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTsgLyogU2V0IHRoaXMgYmFjayBmb3Igd2hhdCB3ZSBoYWNrIGluIGRpaml0IGlubGluZSAqL1xufVxuLmRqX2llNiAuZGlqaXRTZWxlY3QgLmRpaml0VmFsaWRhdGlvbkNvbnRhaW5lcixcbi5kal9pZTggLmRpaml0U2VsZWN0IC5kaWppdEJ1dHRvblRleHQge1xuXHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuLmRqX2llNiAuZGlqaXRUZXh0Qm94IC5kaWppdElucHV0Q29udGFpbmVyLFxuLmRqX2llcXVpcmtzIC5kaWppdFRleHRCb3ggLmRpaml0SW5wdXRDb250YWluZXIsXG4uZGpfaWU2IC5kaWppdFRleHRCb3ggLmRpaml0QXJyb3dCdXR0b25Jbm5lcixcbi5kal9pZTYgLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uSW5uZXIsXG4uZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwge1xuXHR2ZXJ0aWNhbC1hbGlnbjogYmFzZWxpbmU7XG59XG5cbi5kaWppdE51bWJlclRleHRCb3gge1xuXHR0ZXh0LWFsaWduOiBsZWZ0O1xuXHRkaXJlY3Rpb246IGx0cjtcbn1cblxuLmRpaml0TnVtYmVyVGV4dEJveCAuZGlqaXRJbnB1dElubmVyIHtcblx0dGV4dC1hbGlnbjogaW5oZXJpdDsgLyogaW5wdXQgKi9cbn1cblxuLmRpaml0TnVtYmVyVGV4dEJveCBpbnB1dC5kaWppdElucHV0SW5uZXIsXG4uZGlqaXRDdXJyZW5jeVRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRpaml0U3Bpbm5lciBpbnB1dC5kaWppdElucHV0SW5uZXIge1xuXHR0ZXh0LWFsaWduOiByaWdodDtcbn1cblxuLmRqX2llOCAuZGlqaXROdW1iZXJUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXROdW1iZXJUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lcixcbi5kal9pZTggLmRpaml0Q3VycmVuY3lUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXRDdXJyZW5jeVRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRqX2llOCAuZGlqaXRTcGlubmVyIGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXRTcGlubmVyIGlucHV0LmRpaml0SW5wdXRJbm5lciB7XG5cdC8qIHdvcmthcm91bmQgYnVnIHdoZXJlIGNhcmV0IGludmlzaWJsZSBpbiBlbXB0eSB0ZXh0Ym94ZXMgKi9cblx0cGFkZGluZy1yaWdodDogMXB4ICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdFRvb2xiYXIgLmRpaml0U2VsZWN0IHtcblx0bWFyZ2luOiAwO1xufVxuLmRqX3dlYmtpdCAuZGlqaXRUb29sYmFyIC5kaWppdFNlbGVjdCB7XG5cdHBhZGRpbmctbGVmdDogMC4zZW07XG59XG4uZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRwYWRkaW5nOiAwO1xuXHR3aGl0ZS1zcGFjZTogbm93cmFwO1xuXHR0ZXh0LWFsaWduOiBsZWZ0O1xuXHRib3JkZXItc3R5bGU6IG5vbmUgc29saWQgbm9uZSBub25lO1xuXHRib3JkZXItd2lkdGg6IDFweDtcbn1cbi5kaWppdFNlbGVjdEZpeGVkV2lkdGggLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHR3aWR0aDogMTAwJTtcbn1cblxuLmRpaml0U2VsZWN0TWVudSAuZGlqaXRNZW51SXRlbUljb24ge1xuXHQvKiBhdm9pZCBibGFuayBhcmVhIGluIGxlZnQgc2lkZSBvZiBtZW51IChzaW5jZSB3ZSBoYXZlIG5vIGljb25zKSAqL1xuXHRkaXNwbGF5Om5vbmU7XG59XG4uZGpfaWU2IC5kaWppdFNlbGVjdE1lbnUgLmRpaml0TWVudUl0ZW1MYWJlbCxcbi5kal9pZTcgLmRpaml0U2VsZWN0TWVudSAuZGlqaXRNZW51SXRlbUxhYmVsIHtcblx0LyogU2V0IGJhY2sgdG8gc3RhdGljIGR1ZSB0byBidWcgaW4gaWU2L2llNyAtIFNlZSBCdWcgIzk2NTEgKi9cblx0cG9zaXRpb246IHN0YXRpYztcbn1cblxuLyogRml4IHRoZSBiYXNlbGluZSBvZiBvdXIgbGFiZWwgKGZvciBtdWx0aS1zaXplIGZvbnQgZWxlbWVudHMpICovXG4uZGlqaXRTZWxlY3RMYWJlbCAqXG57XG5cdHZlcnRpY2FsLWFsaWduOiBiYXNlbGluZTtcbn1cblxuLyogU3R5bGluZyBmb3IgdGhlIGN1cnJlbnRseS1zZWxlY3RlZCBvcHRpb24gKHJpY2ggdGV4dCBjYW4gbWVzcyB0aGlzIHVwKSAqL1xuLmRpaml0U2VsZWN0U2VsZWN0ZWRPcHRpb24gKiB7XG5cdGZvbnQtd2VpZ2h0OiBib2xkO1xufVxuXG4vKiBGaXggdGhlIHN0eWxpbmcgb2YgdGhlIGRyb3Bkb3duIG1lbnUgdG8gYmUgbW9yZSBjb21ib2JveC1saWtlICovXG4uZGlqaXRTZWxlY3RNZW51IHtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG59XG5cbi8qIFVzZWQgaW4gY2FzZXMsIHN1Y2ggYXMgRnVsbFNjcmVlbiBwbHVnaW4sIHdoZW4gd2UgbmVlZCB0byBmb3JjZSBzdHVmZiB0byBzdGF0aWMgcG9zaXRpb25pbmcuICovXG4uZGlqaXRGb3JjZVN0YXRpYyB7XG5cdHBvc2l0aW9uOiBzdGF0aWMgIWltcG9ydGFudDtcbn1cblxuLyoqKiogRGlzYWJsZWQgY3Vyc29yICoqKioqL1xuLmRpaml0UmVhZE9ubHkgKixcbi5kaWppdERpc2FibGVkICosXG4uZGlqaXRSZWFkT25seSxcbi5kaWppdERpc2FibGVkIHtcblx0LyogYSByZWdpb24gdGhlIHVzZXIgd291bGQgYmUgYWJsZSB0byBjbGljayBvbiwgYnV0IGl0J3MgZGlzYWJsZWQgKi9cblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4vKiBEcmFnIGFuZCBEcm9wICovXG4uZG9qb0RuZEl0ZW0ge1xuICAgIHBhZGRpbmc6IDJweDsgIC8qIHdpbGwgYmUgcmVwbGFjZWQgYnkgYm9yZGVyIGR1cmluZyBkcmFnIG92ZXIgKGRvam9EbmRJdGVtQmVmb3JlLCBkb2pvRG5kSXRlbUFmdGVyKSAqL1xuXG5cdC8qIFByZXZlbnQgbWFnbmlmeWluZy1nbGFzcyB0ZXh0IHNlbGVjdGlvbiBpY29uIHRvIGFwcGVhciBvbiBtb2JpbGUgd2Via2l0IGFzIGl0IGNhdXNlcyBhIHRvdWNob3V0IGV2ZW50ICovXG5cdC13ZWJraXQtdG91Y2gtY2FsbG91dDogbm9uZTtcblx0LXdlYmtpdC11c2VyLXNlbGVjdDogbm9uZTsgLyogRGlzYWJsZSBzZWxlY3Rpb24vQ29weSBvZiBVSVdlYlZpZXcgKi9cbn1cbi5kb2pvRG5kSG9yaXpvbnRhbCAuZG9qb0RuZEl0ZW0ge1xuICAgIC8qIG1ha2UgY29udGVudHMgb2YgaG9yaXpvbnRhbCBjb250YWluZXIgYmUgc2lkZSBieSBzaWRlLCByYXRoZXIgdGhhbiB2ZXJ0aWNhbCAqL1xuICAgICNkaXNwbGF5OiBpbmxpbmU7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4uZG9qb0RuZEl0ZW1CZWZvcmUsXG4uZG9qb0RuZEl0ZW1BZnRlciB7XG5cdGJvcmRlcjogMHB4IHNvbGlkICMzNjk7XG59XG4uZG9qb0RuZEl0ZW1CZWZvcmUge1xuICAgIGJvcmRlci13aWR0aDogMnB4IDAgMCAwO1xuICAgIHBhZGRpbmc6IDAgMnB4IDJweCAycHg7XG59XG4uZG9qb0RuZEl0ZW1BZnRlciB7XG4gICAgYm9yZGVyLXdpZHRoOiAwIDAgMnB4IDA7XG4gICAgcGFkZGluZzogMnB4IDJweCAwIDJweDtcbn1cbi5kb2pvRG5kSG9yaXpvbnRhbCAuZG9qb0RuZEl0ZW1CZWZvcmUge1xuICAgIGJvcmRlci13aWR0aDogMCAwIDAgMnB4O1xuICAgIHBhZGRpbmc6IDJweCAycHggMnB4IDA7XG59XG4uZG9qb0RuZEhvcml6b250YWwgLmRvam9EbmRJdGVtQWZ0ZXIge1xuICAgIGJvcmRlci13aWR0aDogMCAycHggMCAwO1xuICAgIHBhZGRpbmc6IDJweCAwIDJweCAycHg7XG59XG5cbi5kb2pvRG5kSXRlbU92ZXIge1xuXHRjdXJzb3I6cG9pbnRlcjtcbn1cbi5kal9nZWNrbyAuZGlqaXRBcnJvd0J1dHRvbklubmVyIElOUFVULFxuLmRqX2dlY2tvIElOUFVULmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdC1tb3otdXNlci1mb2N1czppZ25vcmU7XG59XG4uZGlqaXRGb2N1c2VkIC5kaWppdE1lbnVJdGVtU2hvcnRjdXRLZXkge1xuXHR0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTtcbn1cbiIsIi8qIERpaml0IGN1c3RvbSBzdHlsaW5nICovXG4uZGlqaXRCb3JkZXJDb250YWluZXIge1xuICAgIGhlaWdodDogMzUwcHg7XG59XG4uZGlqaXRUb29sdGlwQ29udGFpbmVyIHtcbiAgICBiYWNrZ3JvdW5kOiAjZmZmO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNjY2M7XG4gICAgYm9yZGVyLXJhZGl1czogNnB4O1xufVxuLmRpaml0Q29udGVudFBhbmUge1xuICAgIGJveC1zaXppbmc6IGNvbnRlbnQtYm94O1xuICAgIG92ZXJmbG93OiBhdXRvICFpbXBvcnRhbnQ7IC8qIFdpZGdldHMgbGlrZSB0aGUgZGF0YSBncmlkIHBhc3MgdGhlaXIgc2Nyb2xsXG4gICAgb2Zmc2V0IHRvIHRoZSBwYXJlbnQgaWYgdGhlcmUgaXMgbm90IGVub3VnaCByb29tIHRvIGRpc3BsYXkgYSBzY3JvbGwgYmFyXG4gICAgaW4gdGhlIHdpZGdldCBpdHNlbGYsIHNvIGRvIG5vdCBoaWRlIHRoZSBvdmVyZmxvdy4gKi9cbn1cblxuLyogR2xvYmFsIEJvb3RzdHJhcCBjaGFuZ2VzICovXG5cbi8qIENsaWVudCBkZWZhdWx0cyBhbmQgaGVscGVycyAqL1xuLm14LWRhdGF2aWV3LWNvbnRlbnQsIC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcjpub3QoLm14LXNjcm9sbGNvbnRhaW5lci1uZXN0ZWQpLCAubXgtdGFiY29udGFpbmVyLWNvbnRlbnQsIC5teC1ncmlkLWNvbnRlbnQge1xuICAgIC13ZWJraXQtb3ZlcmZsb3ctc2Nyb2xsaW5nOiB0b3VjaDtcbn1cbmh0bWwsIGJvZHksICNjb250ZW50IHtcbiAgICBoZWlnaHQ6IDEwMCU7XG59XG4jY29udGVudCA+IC5teC1wYWdlIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBtaW4taGVpZ2h0OiAxMDAlO1xufVxuXG4ubXgtbGVmdC1hbGlnbmVkIHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LXJpZ2h0LWFsaWduZWQge1xuICAgIHRleHQtYWxpZ246IHJpZ2h0O1xufVxuLm14LWNlbnRlci1hbGlnbmVkIHtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG5cbi5teC10YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtdGFibGUgdGgsXG4ubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuLm14LXRhYmxlIHRoLm5vcGFkZGluZyxcbi5teC10YWJsZSB0ZC5ub3BhZGRpbmcge1xuXHRwYWRkaW5nOiAwO1xufVxuXG4ubXgtb2Zmc2NyZWVuIHtcbiAgICAvKiBXaGVuIHBvc2l0aW9uIHJlbGF0aXZlIGlzIG5vdCBzZXQgSUUgZG9lc24ndCBwcm9wZXJseSByZW5kZXIgd2hlbiB0aGlzIGNsYXNzIGlzIHJlbW92ZWRcbiAgICAgKiB3aXRoIHRoZSBlZmZlY3QgdGhhdCBlbGVtZW50cyBhcmUgbm90IGRpc3BsYXllZCBvciBhcmUgbm90IGNsaWNrYWJsZS5cbiAgICAqL1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDA7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLm14LWllLWV2ZW50LXNoaWVsZCB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICBsZWZ0OiAwO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICB6LWluZGV4OiAtMTtcbn1cblxuLm14LXN3aXBlLW5hdmlnYXRpb24tcHJvZ3Jlc3Mge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBoZWlnaHQ6IDU0cHg7XG4gICAgd2lkdGg6IDU0cHg7XG4gICAgdG9wOiBjYWxjKDUwJSAtIDI3cHgpO1xuICAgIGxlZnQ6IGNhbGMoNTAlIC0gMjdweCk7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaE5nQTJBUE1BQVAvLy93QUFBSGg0ZUJ3Y0hBNE9EdGpZMkZSVVZOemMzTVRFeEVoSVNJcUtpZ0FBQUFBQUFBQUFBQUFBQUFBQUFDSDVCQWtLQUFBQUlmNGFRM0psWVhSbFpDQjNhWFJvSUdGcVlYaHNiMkZrTG1sdVptOEFJZjhMVGtWVVUwTkJVRVV5TGpBREFRQUFBQ3dBQUFBQU5nQTJBQUFFeXhESVNhdTlPT3ZOdS85Z0tJNWt5U0VKUVNTSTZVcUtLaFBLV3lMejNOcGltcXNKbnVnM0U0YUlNaVBJOXdzcVBUamlUbGt3cUF3RlRDeFhleFlHczBIMmdnSk9MWUxCUURDeTVnd213WXg5SkpyQXNzSFFYc0tyOUNGdU0zQWxjakowSUFkK0JBTUhMbWxySkFkdUJvNVBsNWlabXB1Y25aNmZjV3FJbUpDamFIT1poaXFtRkl1QWw2NFpzWml6RjZvRXJFSzN1Uk9sbTc2Z3djTER4TVhHeDhYQWo2SWt1NCtvSXJVazBoL1UwV0Vqem5IUUlzcWhrY2pCM3NuY3hkYkM1K0xseWN6aDdrOFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRNRU1oSnE3MDQ2ODI3LzJBb2ptUnBubVZoRUlSUm9HY3hzT3p3d3VSS3N3Wk83anZmQ0VnVGluUzduaEYwbU5FR2h3c2l3VW9nbHBTRHpoQzFLSWlLa1dBd0VKZ1FSTllWSk5pWlNkUjBJdVNzbGRKRlVKMHd1T01KSVcwMGJ5TnhSSE9CWklRamFHbHJXQnhmUUdHUUhsTlZqNVdhbTV5ZG5wOUxZMldib29zV2dpeW1RcWdFcWhON2ZaQ3dHYk95TzdFWHJLNDR1aHFscElxZ3dzUEV4Y2JIeU1lL0tNc2l2U2JQZExjbnRkSlAxTlBPYmlmUmlhUE13Y25DemNyYnlOWEc2TVhkeHVUaTd6NFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRPRU1oSnE3MDQ2ODI3LzJBb2ptUnBubWlxQXNJd0NLc3BFRFFCeCtOUUV3T2U3ejFmYUZhN0NVR3QxMUZZTU5BTUJWTFNTQ3JvYW9Qb2NFY1ZPWGNFZytoS0M1TEF0VEhRaEthSmlMUnU2THNUdjEzeTBJSE1PeXc5QjE4R2ZuK0Zob2VJaVlvWkNBazBDUWlMRmdwb0NobFRSd2h0QkpFV2NEWkNqbTBKRjN4bU1adHVGcVpDcVFRWG4za29vbWlrc0hpWm01MlNBSlJnbHJ3VGpZKzd3Y2JIeU1uS0U1Z296VzljSjdFL1dDZXNhdFVtMTF0RjB0RWp6eks0eTRuaHh0UEkyOGJxd2VqSTV1VHhKaEVBSWZrRUNRb0FBQUFzQUFBQUFEWUFOZ0FBQk1zUXlFbXJ2VGpyemJ2L1lDaU9aR21lYUtvQ3dqQUlxeWtRTkFISDQxQVRBNTd2UFY5b1Zyc0pRYTNYY1lsS0dtV3VKM0luRlJGcDFZNnVGaXh0YVYzUWwzY2FoejlYMnltZDdUaFRiNlo4VHEvYjcvaTh2R0NnR1FvYWNVSUZab0FYYkVkOU93UUdHR1pIaXpXT1FKQ1JCQmlJUW9vN2paaFJTd2RtQjNvVUI0b0dvNlNxcTZ5dE1RZ0pOQWtJckFxUkNpT0NJd2lXQkxSVFJTV3hsZ2toanlTOU5NYVV5TWxEVk1LOXhVT2ZKYnlXdjNxMmk3aEx1aFd3c3RsQ21hdkg1c3lyNWVyVnJ1NDRFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWlaY2dVR05BWUZKSk1pQldhZ1E0TWxuVHNFQmlLTElxczFya0Ftc1RSV3FDU3FPNjFXa1JrSUNUUUpDQmNIWmdkSENyRUt4cW9HeVVJSXRnVEZlc0syQ1h2VXQzcmNCSHZZc2RwNjA3Yldlc3VyelpYQncrZ2lFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWdTQ0FrMENRaVdDanMwQ3BRSW9qV2ZKWk1kbktjRUNhcURJSzQxWGtBaHREUzJYQ0d0cDdBa2p4Nm1ycW5Ca1NLaG9xUVhCUVkwQmdWTG01M0dGUVZtMHBUUG9nYVZ0Tit1bGR3NzNwUUhaZ2VXQjl3RzZwa29FUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2dktVU0Nsa0RnTFFvN05BcC9Fd2lDTlg1Q2NSWjdpQVFKaTFRWGp6VkNacFNWQkpkQUY0NklrVDVzRjRlUGlxSlJHWUdDaElXR2puMnVzck8wdFhZRkJqUUdCYlFGWnJ4UVNpSzVnZ1l5a3lHVkpwakpqOHVkSWNRN3hpV2pJUWRtQjJ1cEl3ZkVCdHEySG95ejFyUE01OURseUxUazR1OHBFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3a1JDVm9Db1dtOWhCTEZqcWFBZGhEVEdyUGtOSDZTV1VLQ3UvTjJ3cldTcmhiOG9HbHFZQWljSFpPSU5ETUhHOTdlWFhvZFVsTlZWbGRnUzRhS2k0eU5qbzhGQmpRR0JZOFhCV3MwQTVWUVhSbVNVd2FkWlJob1VKazhwV0duY2hlZ082SkNlRFlZQjZnREIxYWVHUWVnQnJtV3djTER4TVhHeDF5QUtic2lzNEVnemo5c0o3ZlNtdFN0UTZReTI4M0tLTXpJamVIRTBjYlY1OW5sM2NYazR1OG9FUUE3KTtcbn1cblxuIiwiLyogQmFjYXVzZSB3ZSB1c2UgY2hlY2tib3hlcyB3aXRob3V0IGxhYmVscywgYWxpZ24gdGhlbSB3aXRoIG90aGVyIHdpZGdldHMuICovXG5pbnB1dFt0eXBlPVwiY2hlY2tib3hcIl0ge1xuICAgIG1hcmdpbjogOXB4IDA7XG59XG5cbi5teC1jaGVja2JveCBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl0ge1xuICAgIG1hcmdpbi1sZWZ0OiAwO1xuICAgIG1hcmdpbi1yaWdodDogOHB4O1xuICAgIHBvc2l0aW9uOiBzdGF0aWM7XG59XG5cbi5mb3JtLXZlcnRpY2FsIC5mb3JtLWdyb3VwLm14LWNoZWNrYm94IGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB7XG4gICAgZGlzcGxheTogYmxvY2s7XG59XG5cbi5mb3JtLXZlcnRpY2FsIC5mb3JtLWdyb3VwLm14LWNoZWNrYm94LmxhYmVsLWFmdGVyIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4uZm9ybS1ob3Jpem9udGFsIC5mb3JtLWdyb3VwLm5vLWNvbHVtbnMge1xuICAgIHBhZGRpbmctbGVmdDogMTVweDtcbiAgICBwYWRkaW5nLXJpZ2h0OiAxNXB4O1xufVxuXG4ubXgtcmFkaW9idXR0b25zLmlubGluZSAucmFkaW8ge1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICBtYXJnaW4tcmlnaHQ6IDIwcHg7XG59XG5cbi5teC1yYWRpb2J1dHRvbnMgLnJhZGlvIGlucHV0W3R5cGU9XCJyYWRpb1wiXSB7XG4gICAgLyogUmVzZXQgYm9vdHN0cmFwIHJ1bGVzICovXG4gICAgcG9zaXRpb246IHN0YXRpYztcbiAgICBtYXJnaW4tcmlnaHQ6IDhweDtcbiAgICBtYXJnaW4tbGVmdDogMDtcbn1cblxuLm14LXJhZGlvYnV0dG9ucyAucmFkaW8gbGFiZWwge1xuICAgIC8qIFJlc2V0IGJvb3RzdHJhcCBydWxlcyAqL1xuICAgIHBhZGRpbmctbGVmdDogMDtcbn1cblxuLmFsZXJ0IHtcbiAgICBtYXJnaW4tdG9wOiA4cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbiAgICB3aGl0ZS1zcGFjZTogcHJlLWxpbmU7XG59XG5cbi5teC1jb21wb3VuZC1jb250cm9sIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xufVxuXG4ubXgtY29tcG91bmQtY29udHJvbCBidXR0b24ge1xuICAgIG1hcmdpbi1sZWZ0OiA1cHg7XG59XG5cbltkaXI9XCJydGxcIl0gLm14LWNvbXBvdW5kLWNvbnRyb2wgYnV0dG9uIHtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbn1cbiIsIi5teC10b29sdGlwIHtcbiAgICBtYXJnaW46IDEwcHg7XG59XG4ubXgtdG9vbHRpcC1jb250ZW50IHtcbiAgICB3aWR0aDogNDAwcHg7XG4gICAgb3ZlcmZsb3cteTogYXV0bztcbn1cbi5teC10b29sdGlwLXByZXBhcmUge1xuICAgIGhlaWdodDogMjRweDtcbiAgICBwYWRkaW5nOiA4cHg7XG4gICAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQgdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaEdBQVlBTVFkQUtYWjhuZkY2NFRMN1F1WDNGZTQ1emFxNGhPYjNmTDYvZnI5L3JyaTlkWHQrWnJVOEN5bTRVbXk1Y0hsOXVQeisySzg2T2oxL056dytyRGQ5TTNxK0pEUTcyckE2aU9pMyszNC9FQ3U0OGpvOXgyZjNnV1YyLy8vL3dBQUFBQUFBQ0gvQzA1RlZGTkRRVkJGTWk0d0F3RUFBQUFoL3d0WVRWQWdSR0YwWVZoTlVEdy9lSEJoWTJ0bGRDQmlaV2RwYmowaTc3dS9JaUJwWkQwaVZ6Vk5NRTF3UTJWb2FVaDZjbVZUZWs1VVkzcHJZemxrSWo4K0lEeDRPbmh0Y0cxbGRHRWdlRzFzYm5NNmVEMGlZV1J2WW1VNmJuTTZiV1YwWVM4aUlIZzZlRzF3ZEdzOUlrRmtiMkpsSUZoTlVDQkRiM0psSURVdU5pMWpNVFF3SURjNUxqRTJNRFExTVN3Z01qQXhOeTh3TlM4d05pMHdNVG93T0RveU1TQWdJQ0FnSUNBZ0lqNGdQSEprWmpwU1JFWWdlRzFzYm5NNmNtUm1QU0pvZEhSd09pOHZkM2QzTG5jekxtOXlaeTh4T1RrNUx6QXlMekl5TFhKa1ppMXplVzUwWVhndGJuTWpJajRnUEhKa1pqcEVaWE5qY21sd2RHbHZiaUJ5WkdZNllXSnZkWFE5SWlJZ2VHMXNibk02ZUcxd1BTSm9kSFJ3T2k4dmJuTXVZV1J2WW1VdVkyOXRMM2hoY0M4eExqQXZJaUI0Yld4dWN6cDRiWEJOVFQwaWFIUjBjRG92TDI1ekxtRmtiMkpsTG1OdmJTOTRZWEF2TVM0d0wyMXRMeUlnZUcxc2JuTTZjM1JTWldZOUltaDBkSEE2THk5dWN5NWhaRzlpWlM1amIyMHZlR0Z3THpFdU1DOXpWSGx3WlM5U1pYTnZkWEpqWlZKbFppTWlJSGh0Y0RwRGNtVmhkRzl5Vkc5dmJEMGlRV1J2WW1VZ1VHaHZkRzl6YUc5d0lFTkRJREl3TVRnZ0tFMWhZMmx1ZEc5emFDa2lJSGh0Y0UxTk9rbHVjM1JoYm1ObFNVUTlJbmh0Y0M1cGFXUTZSVUpGTmtVNE5FWkNORVZETVRGRk9EazNNREJCTlVVMVJVTTRRamczUVRVaUlIaHRjRTFOT2tSdlkzVnRaVzUwU1VROUluaHRjQzVrYVdRNlJVSkZOa1U0TlRCQ05FVkRNVEZGT0RrM01EQkJOVVUxUlVNNFFqZzNRVFVpUGlBOGVHMXdUVTA2UkdWeWFYWmxaRVp5YjIwZ2MzUlNaV1k2YVc1emRHRnVZMlZKUkQwaWVHMXdMbWxwWkRwRlFrVTJSVGcwUkVJMFJVTXhNVVU0T1Rjd01FRTFSVFZGUXpoQ09EZEJOU0lnYzNSU1pXWTZaRzlqZFcxbGJuUkpSRDBpZUcxd0xtUnBaRHBGUWtVMlJUZzBSVUkwUlVNeE1VVTRPVGN3TUVFMVJUVkZRemhDT0RkQk5TSXZQaUE4TDNKa1pqcEVaWE5qY21sd2RHbHZiajRnUEM5eVpHWTZVa1JHUGlBOEwzZzZlRzF3YldWMFlUNGdQRDk0Y0dGamEyVjBJR1Z1WkQwaWNpSS9QZ0gvL3YzOCsvcjUrUGYyOWZUejh2SHc3Kzd0N092cTZlam41dVhrNCtMaDROL2UzZHpiMnRuWTE5YlYxTlBTMGREUHpzM015OHJKeU1mR3hjVER3c0hBdjc2OXZMdTZ1YmkzdHJXMHM3S3hzSyt1cmF5cnFxbW9wNmFscEtPaW9hQ2ZucDJjbTVxWm1KZVdsWlNUa3BHUWo0Nk5qSXVLaVlpSGhvV0VnNEtCZ0g5K2ZYeDdlbmw0ZDNaMWRITnljWEJ2Ym0xc2EycHBhR2RtWldSalltRmdYMTVkWEZ0YVdWaFhWbFZVVTFKUlVFOU9UVXhMU2tsSVIwWkZSRU5DUVVBL1BqMDhPem81T0RjMk5UUXpNakV3THk0dExDc3FLU2duSmlVa0l5SWhJQjhlSFJ3Ykdoa1lGeFlWRkJNU0VSQVBEZzBNQ3dvSkNBY0dCUVFEQWdFQUFDSDVCQVVFQUIwQUxBQUFBQUFZQUJnQUFBVWNZQ2VPWkdtZWFLcXViT3UrY0N6UGRHM2ZlSzd2Zk8vL3dPQXJCQUFoK1FRRkJBQWRBQ3dBQUFBQUFRQUJBQUFGQTJBWEFnQWgrUVFGQkFBZEFDd1VBQXdBQVFBQ0FBQUZBeURUaEFBaCtRUUZCQUFkQUN3VEFBc0FBZ0FHQUFBRkMyQVhkRnhuZE1UUU1WMElBQ0g1QkFVRUFCMEFMQkVBQ3dBRUFBZ0FBQVVSWUNjMllpbHlvcldkVm1jTnA4aTBYUWdBSWZrRUJRUUFIUUFzRHdBT0FBWUFCZ0FBQlE5Z0ozYUJNWjRqaDQ0V0I0bkZjSVlBSWZrRUNRUUFIUUFzRFFBUEFBZ0FCZ0FBQlJGZ0o0NGRSSGJCcVlvcEdRd2NPUmhxQ0FBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRkxXQW5qbVJwbm1pcXJtenJ2bkFzejNSdDMzaXVrOEpnRHdRYlIyaWhCVGlOV1c4WTR6aDlHaGxnUnkyRkFBQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZNMkFuam1ScG5taXFybXpydm5Bc3ozUnQzMmh6YzN0U0M3emFZT2VvY1NBMFlNWlZJUWtHd1JhUVE2VjJpaklBYnFzS0FRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZObUFuam1ScG5taXFybXpydm5Bc3ozUnQzMmh6Yy90VVY3eWFJV01MMGppRVZRVUZMS3dDSEVPcFlqQ3lNcHlzbGloYjRMNnJFQUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGT21BbmptUnBubWlxcm16cnZuQXN6M1J0MzJoemN6dFFWN3phcG1BTG1vQXNqZzdGTUI0NWpGV0RzeWxWTnM1VmdjUHRFbU8rQ202c0NnRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCVDlnSjQ1a2FaNW9xcTVzNjc1d0xNOTBiZDhvY1hPQ3plMm14c2ExWVp4K0xRN2cxRUNxT0prVWc3TkljWXlxNXJDMGdicW1uSENZc1lRdGU3aDBLZ1FBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQlVSZ0o0NWthWjVvcXE1czY3NXdMTTkwYmQ4b1lRWXdKNVNjbmluNElwSVlGOWNsV1ZvWVY1ekZLZk5FY1RLcFN4WElURkc3SXkyMnhlQ1l6eGNwVFBxajRONm9FQUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGU21BbmptUnBubWlxcm16cnZuQXN6M1ROYm5iQXdZUzV2NXdBcWZKekZVZEhWckt6WWJnWU9OK2t4YW1jQ2dQV29KRGFaRk9EYUtyQWNaWVlIRzVydzJtN04xWllSUmkzMlZjaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVlBZQ2VPWkdtZWFLcXViT3UrY0N6UDVVYlFJb2QzZ3I3N3JodkpBbXh4TEtVaVM5bmhURjVNQThQRk1KaDZMbzdneEJpd0JsUFV4cHNhYkZZTVRwaVVYcXNFQm81OGJ0akN0aGI3YnI4S0FRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZVMkFuam1ScG5taXFybXpydmpETFhERXBjRFZwWlBtSTk1MGJVUFJ6UVVxUVlvdHpKQ2xaejhsenhabVVEQVZYd1hDYW9yeWRDM2Rsb0tFTTQzTWFkZUZrU3dXT2VSVXdjTzU0UXlBbU9BcUdnQzBoQUNINUJBVUVBQjBBTEFBQUFBQVlBQmdBQUFWWFlDZU9aR21lYUtxdWJMdHVsbnNhaG14dXRVMEduRjRPRFIrcEp4VHhpaUpDemhYNzJRYUVIZEUxSFZWWkhNQXY0OG9NVE1jV0ozRENzUXliMUdBNSs2bzJIRzRwdzBtekFnTU9aNURmazIwQlVYOUloQzBoQUNINUJBa0VBQjBBTEFJQUF3QVVBQk1BQUFVL1lDZUsxdENNYUpweWhPcU93L2JPOUd6VmM0dnY5YzJuc2w5QVpQaDFpajZqY3JRUW5YYlBEc1E0SFFWcFYxUld0VTFGUjE5WDlWZ1VqV20rWkNvRUFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVmJZQ2VPWkdtZWFLcU9GckdpeE1CeHpHc2FuR3VidzdhZkJ0K3ZST0FNVGJsanlhaGtNWnVkaG5BWEtFbUhtOFp5K0JRdHVpL09ZcWw3RlUvZ1ZQSTJUVzBNcVo1cU0xamh5cU1pM0R6amJEWjllRFlRRFZwalVJZy9JUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGWUdBbmptUnBubWlxaWxXWFpjUnFFaHczWE5jZ2t3WUg3U2ZPQlhneURJa2xHdExrVzVZNFRoSkJGeFZsamtCQjZZcThaRXBVWUpnRkpYSmFwT1lPVXBhMlY1eVl5U2k3R0ZKQzFlVmRWSlBZZHpJME5qZ0ROWEpFQkYrSVZZMUFJUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGWldBbmptUnBubWlxaWtKWEZNUnFOaHhuTUlWUngvTEFXYWFBck1OaERGRUQ0M0hHV1o1K3pwS2dHUzBacXFTQ2Npa2NhWjA0RXVHNk5QQkcxR01hRFJ4YTFpS2F1bkZLeWhpRFZGSEZnSnQ4YlNSdmVUSTBOZ3dNT2h4MFRnUXZIUzFZa2xFaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVm1ZQ2VPWkdtZWFLcUtRY01VeldwbUhMZDF4VlpuY2pjTUFWUGdwMXB3Q2lyR0RUVkE5azZad1JQRm1aNENWV3Vwc2RTT1h0cmdWMXRna0xqV1RZeVVmYlpISExFTU81UDJCanhUVTFhd240NHFCVzhtQzBSQ2hpczBOZ1U1TzFZdFptdGVrNU1oQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFWbllDZU9aR21lYUtxS1FYWmQyV29XSEhkMURWTVhjc1VOSjRHQnMrTHdVclFLeWlpam5RcEFXY2R3NGdTa3FBQVJlM0p4VDdkdngwS0NmYjBqTk5aTTJtTGRJeXRXTzR2S0JzY1NjK1ZjNXA5d1ZYWWtBUU9CS0RRMkdTNDdYeTB2SFZkaWs1UWlJUUFoK1FRRkJBQWRBQ3dBQUFBQUdBQVlBQUFGYm1BbmptUnBubWlxaWxheGJjVnFNaHpIZEExdHl3Sm5uQUlEUjZEaVpGUVpUc29vUzU0WVAxbkhjQ3NOcFNJbHlhTEZjZ0trUWhWcjJwQkZpOUttY1c2WVIrSXpJMGJxU3UxWm9qZFJnbUtwSjB3clRpaUNLSVFvUFZFbFFYZ29PZ3dOT1RWalVpMW1kR2VhbXlVaEFDSDVCQVVFQUIwQUxBSUFBZ0FVQUJRQUFBVmJZQ2VPa01HZG5BR05MSWx5dy9DdWJjZWNXWjJkVEhzYk5aYXBKNEtrZ2kwVDdZU3NNWTI1Sm10WDRraWRKdXVWaFJwc1dUTFlkeFRXamsrbXNTZ0ZIVk03ekcvY0NMd3FSei9wMElmVDhZSkdYV1VjTkVoVktDbzFJUUFoK1FRRkJBQWRBQ3dCQUFFQUZnQVdBQUFGWjJBbmptUFZCV1NxbmdaSGNnYTZqc2JyMG5OMTEyVEZjNmFVNnpZYnBtckVXY2ZGTzRrRXloSFUyYWsxbzlYc0VydHlCYm1xWUpKN1E0MnhMaG00MlBsaVRUc3QxeXBTYzZkcUpGa3VHazVWQWtZcE9pSlhiVDlLVnh4Smhpb0JMUytOVVNaMktpRUFJZmtFQ1FRQUhRQXNBUUFCQUJZQUZnQUFCV3BnSjQ2aWxWMVgxazFrUzE2Y3kxMHUyY1MxeURVMU0zSUVFZ0hYOGRsR3dWcXl3L3ZsY2tSYVovbE1TbVBFcDY0VHM0aW8ycVJKcXoyUm42aHpMcVd1cWI1dEtyWTk3MGpCU3BHVTI5Nk9tbE01UzRBaVJseFVReU9HTmxreWhDNHdNbnRrSmlncUxDNGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVYrWUNlT1pHbWVwVlZjVjlaTjZMbHhkRTF2OGRqWWZOM0VEQnVFQkxFeFRqdmE4RlNrL1VxMW5DaEttbkdXdVNadVJKVjJ1aGFsbDh1eGlESzBNZG5WdWFUVlg4NUY1T2JBNC9NTzJnNm5zZU5ZVWsxbVUyOWVYUjFXZ1NoYUpBdUlLSkFkU1ZlTVBpZEJrRTAwUnlpVVBaZFNWajFiYWhZWkxCbUVkM0FoQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFXQllDZU9aR21lcFZWY1Y5Rk42TGx4ZEUxdjhkallmTjNFakpyQlpLZ3hUanRhVE9BejFYS2lKMm5HRVVDakhOeUlOcngyaXB5UlJlbnRNRGtXVVlGY3ByazZGN2FYZGhIRncrVU9YUzIvdXJkVlpXY2tYR1ZnVTMweE55UUxVamsxQ3lWSmdTZG5IRDhtUVlVa0FtQWNSeWlUUFUxUVZEMWFaU29zQldsNXJoMGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVdDWUNlT1pHbWVwVlZjVjlGTjZMbHhkRTF2OGRqWWZOM0VqTnJGZEtreFRqdk9JRGVnL1VxMFphN1Q1SlJtMXFub1JxSU50WjFpdG1PaGdVYzBpNmhnUG5kb3JuRDc3QldKM1cvT2x6MEd3OUY5VXdCcEloTjFZSGNqV0hRY09GMUtXbFVtU1FNQU1WVlBKVUdISXdCaUhFY29TVDAybVRGWVBZNW5LaXd1TUhodUlRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZlbUFuam1ScG5xV1ZNVXlHdmhjbnovTDFqZzJ0ejgxYnpLNVNabFk0NVRpR20wSFdLOG1TdDg2U1U0cFJvNklhU1JiRURxOGRpd3k3NVZoRVgvS0lLMktNMVIwWm8vMVd5OUYxTWpzTDF2ZjNYaklUSTFaMkhEWmxVRXA1SWtlS0oxTk5KVCtBSTE4Y1JTaEhPelNTTUp5SGNHRXJMUjJEb25BaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVjlZQ2VPWkdtZVpkQXdUSU8rRnlmUDh2V09CRDFjMTBBVHI4SU1Zb0xNQ3FjY3h3YVRBVXUxbXlqR0tWR2xvMmlXUThSMmpGVlJRT2JkQmtRTnpxQXM4bzBZUzNZbnhoREJtV1Y2ZHMzMnVUcGpZV1ZrVzExWVlDUlhYbHBiZUUyQ09Jd25WRThsUWpLR0kyQWNTQzg2UEQ0elhsUTBrbGhuTEg5eWNpRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCWDFnSjQ1a2FaNWwwQlJGZzc0TUo4OHk4NDRFZlhYWlJST3ZqR3h3RWd4a21WT09rd3pLZ0NYa1RTVGtsR0xFcWVob0c4bTBwSzhvSUFaM1pBRlJnN016ZDN5akF0UE40eFJFY25yOUxtTFQ0V05sWUdoZUhBSnVnbGhtWEZGelUxVW1TMDBvVlZBbFZWa2xSbEl2T2hrOU5HQXhORE5kWmlvZExYcDZJUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGZ0dBbmptUnBucVhRRkZrbm9HakJ6ZlJjd0NORUR4M1JaUU1hQk5hWWJWQ2JXZU9rNCtCNnM5UE05K3hFU2JKanRaTzhqYTViQUZqQTRXMUZ3WmVJMHpyL25LSU1oK3BteCtGdWdoM2FQc3ZwWlc0ZFFTUmdXNFpaWjEwbFUxVjZlRG1OTUk5REprVWNXaVpKa0ZJekF4aytRRUpWTWpVMFhtY3ZHYUNDclIwaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVjZZQ2VPWkdtZXBkQmxHWUcrR1NmUGN2YU8xcnk1UWJmTmxoZEJWa0FWWks2VDdOWUpMRTJ5SHJQekhNV0swODdSTnFwbXF3TE9KanY2cVVTY0pIbG81WkJKSEc1TVNuWnkyZThPSGoxK203dHViMTVYWkZzbFVWK0JKRG1LS0U0Y1FTWkRIRmdtUjJrM09qd0VQMTR3TkRSY1pDb3NIV2Q1YnlFQUlma0VDUVFBSFFBc0FBQUFBQmdBR0FBQUJYcGdKNDVrYVo1bDFXVk5wNkpueHMzMG5NRmpRQmR1RnhTMEFJd3dHeFpSbkFGT05PQUlTOGRsSnlxU0VhUWk0bTFFbFVZckhCNVdCQ1J4eG1hSXFNRjVqY0d0RGh2TmpVK2ZZOTBJTEI2WHVXZG9WRlpqV2xDQlhvaG1Ta3ROZUNSRUhGY25rWk1uT2pNOEtqOUJVakkxTkZ0b0VBMHRiblJqSVFBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRmdHQW5qbVJwbmlaRWRCYnFObHdzeDQwN0NyR3hkbE5IR0RHQkM4SVp1QUlEam90anNJbUF3bExST1VxV1lBR3FLTUNwalpqYUVaREUyWVU3U3BFbGZhNXdXajcydVN3aXlNTjBFYWR5N3JoSEMzZGFIQXRmVFdkakkxaGhYRjVmUmxwV0ptQk9pU2xGV1NkSUhCQXVPRXc3UFQ4eFdqQXpNbzVoRml0d2ZYMGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVYxWUNlT1pHbWVwa1YwQWVvU1hDekhxeXRXOFVWTzNSWGJIWTdCWnVCWVRqZ2QwSGNTQWtmRkV1dzVXbkJxSW82UzJ1T1FPQzF1ZGhUd2lqc1RzR2g2RG1MTlozaTVIUXpYei9PUjlzd2NzYmxYSlU1VVVTVkpUejRWS0VJTEtBdEZSeWc0ZXlNOFBuQTJNRE15V0Z3QkJDc0FkR0loQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFWellDZU9aR21lWmdCMUFlb1NBeWZQQStHU2NWWldHVGZjQWM3bGR1RzBUaHpkclZQZ25BYkRwZWp5SXhHYzBoSEhOaG9vczUxTVZZUUZrMGRCcy9ZSUtaczVxN082QXhlbDUyNU9SVjF4ZTlWaVZtNVNXeVZRWUZSSUJWSk5LRUZSS0VWSEtEazdQV00zTURNMFhHWXFjWE5xSVFBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRmQyQW5qbVJwbm1iUVdkMkVvdERBY1lZeEQ5QkxEZ05oRWp4ZGdKUFJaVGlxRThlbkUzRk9nMkpUbEJtVVl0TmRidFRMam9Da3AzY2s3Z2pLWTQ1Z1pCaXpSNWEydTJOZ09lZWQ4Z1R0NWJoRVhXTmdPMjQ0SlZGZVZTWUxTMU1FZkdGU0tFZE5QRXdrUUZaVE1UTTFOMXRqYXl4L2VGa2hBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVZvWUNlT1pHbWVwdEFGYU50WkJtY3dUR3hZN21nWXA3QzdBZzdFQmVHMGpMa1ZzbVFZSmpzUUhnbjIxT0YwVlpKVXRNd3VmVm1kU3NRSWswZUJzcG5CRW0yejcyNjFheGhYd1NNcTNOU3NSazl5UnloQlRpaEZkaWMvS1lvNU1ESTBObVlkS20yU1dTRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCV3hnSjQ1a2FaNW0xUVZvdXhvYzB6UU1aN0N1YURBb1k3Z1ZUazRnUkJWekhjN0VaQkFnUllJZktjQjdpcW9qcVZWSE9tNlBGZXlXb1JJMXRxT3pDSWZ1cUsvdERubmt0WG9OaTdaMjFXYXdkVTVQVVNkMUxZVWlRWUVvUkRrN1BYc3RBVEF5TkRaL1ZwZHhUeUVBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQldOZ0o0NWthWjVtMVFsbzJ3V2IwWFJRWTJ5Qk8yN3oyV3c2ZzY0alJCa2NRK0xFQkV5S21xTkF6emw5T2tsUTRuVlVGRldwcXRWMkJCa0p5bU8wZDl5cGRxL3ZyRE1yM1g2MThOUGJaVmlhRm50NkN5NDhLRDlKTURJME5qaGpLaXhzV3lFQUlma0VDUVFBSFFBc0FBQUFBQmdBR0FBQUJWaGdKNDVrYVo3bTBnbG91MjdGMmxuRjVwSTJhdVV0M3dNb24wc29JZzVMQXN1dHBNUXRUYjdZa3lRVk5hZldFUXRMMnNxNDN5ejQycWxpemNhYmtMeGtkOUxCRTd5VUJzeUxhcmYxUG9JcFdUVmdJaXdxZ2xnaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVlpZQ2VPWkdtZXA5QUJhTnN4aE5xcGpPeSt0c25jeGQzMUtLQlBTTnI1UnNaUjdyaE1Ia1ZPd3BQVUlDMmZyT21wSXVKcVI5N1pWenlTZnF2SXNaTThiV3JYSXFKTFRxS2I3TVdyU0FCSHdUb0xZbjArWGdwalV5RUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCVkZnSjQ1a2FaNW5oYTVqWm9sSloyVXNTYVBBdlJKMXg2Ty9YdERXSTVZQVJaS3FsVFNLWHMxb2JTSmFTcSttbUlpSzVjcXVVSkd1T2NhYXlqVzBMemtzdFUvdmtwclpxOUNRSFdURzJ1U2JleUVBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQlVsZ0o0NWthWjVuaGE0anBJcE9CN0Vrd2Rwc1FIYzYydSsvMms0NExNcU1MZVF1cHV4TVJJdW05QlNGVGErZGwyaW01R0pMdUdLWUZNeXR5dEt4U2IzeWlpcnU0clA2WllVQUFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVTVZQ2VPWkdtZUo0Q3VZMUNxS2l1Nk1ydlVkNjJiOU43dnRaOFBTQ3dtUkxHaU1yVkVKWnZMMzdNcGxGV2hwWnpOaW0zeGxxcGpseFVDQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFVM1lDZU9aR21lNklTdTRtSzY3RmpGTkoyc2Q2M0g4MTdEUHFCdlNDeUtWRVdrY1lrUzZweE1VUys2azFCWDAxT1dCWVhxbE5kVENBQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZMR0Fuam1ScG5taXFvdFBxdm5Bc3oySkxxL2F0Ny96cDlNRGdLQmNqQ284OHhVdXBNNmFjVHRnUGFRb0JBQ0g1QkFVRUFCMEFMQUFBQUFBWUFCZ0FBQVVqWUNlT1pHbWVhS3F1Yk91K2NMeFNjbTNmZUk3VGV0L3p2cUJ3eUFLV2pDOGtNUVFBT3c9PSkgbm8tcmVwZWF0IHNjcm9sbCBjZW50ZXIgY2VudGVyO1xufVxuLm14LXRvb2x0aXAtY29udGVudCAudGFibGUgdGgsXG4ubXgtdG9vbHRpcC1jb250ZW50IC50YWJsZSB0ZCB7XG4gICAgcGFkZGluZzogMnB4IDhweDtcbn1cbiIsIi5teC10YWJjb250YWluZXItcGFuZSB7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuLm14LXRhYmNvbnRhaW5lci1jb250ZW50LmxvYWRpbmcge1xuICAgIG1pbi1oZWlnaHQ6IDQ4cHg7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaE5nQTJBUE1BQVAvLy93QUFBSGg0ZUJ3Y0hBNE9EdGpZMkZSVVZOemMzTVRFeEVoSVNJcUtpZ0FBQUFBQUFBQUFBQUFBQUFBQUFDSDVCQWtLQUFBQUlmNGFRM0psWVhSbFpDQjNhWFJvSUdGcVlYaHNiMkZrTG1sdVptOEFJZjhMVGtWVVUwTkJVRVV5TGpBREFRQUFBQ3dBQUFBQU5nQTJBQUFFeXhESVNhdTlPT3ZOdS85Z0tJNWt5U0VKUVNTSTZVcUtLaFBLV3lMejNOcGltcXNKbnVnM0U0YUlNaVBJOXdzcVBUamlUbGt3cUF3RlRDeFhleFlHczBIMmdnSk9MWUxCUURDeTVnd213WXg5SkpyQXNzSFFYc0tyOUNGdU0zQWxjakowSUFkK0JBTUhMbWxySkFkdUJvNVBsNWlabXB1Y25aNmZjV3FJbUpDamFIT1poaXFtRkl1QWw2NFpzWml6RjZvRXJFSzN1Uk9sbTc2Z3djTER4TVhHeDhYQWo2SWt1NCtvSXJVazBoL1UwV0Vqem5IUUlzcWhrY2pCM3NuY3hkYkM1K0xseWN6aDdrOFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRNRU1oSnE3MDQ2ODI3LzJBb2ptUnBubVZoRUlSUm9HY3hzT3p3d3VSS3N3Wk83anZmQ0VnVGluUzduaEYwbU5FR2h3c2l3VW9nbHBTRHpoQzFLSWlLa1dBd0VKZ1FSTllWSk5pWlNkUjBJdVNzbGRKRlVKMHd1T01KSVcwMGJ5TnhSSE9CWklRamFHbHJXQnhmUUdHUUhsTlZqNVdhbTV5ZG5wOUxZMldib29zV2dpeW1RcWdFcWhON2ZaQ3dHYk95TzdFWHJLNDR1aHFscElxZ3dzUEV4Y2JIeU1lL0tNc2l2U2JQZExjbnRkSlAxTlBPYmlmUmlhUE13Y25DemNyYnlOWEc2TVhkeHVUaTd6NFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRPRU1oSnE3MDQ2ODI3LzJBb2ptUnBubWlxQXNJd0NLc3BFRFFCeCtOUUV3T2U3ejFmYUZhN0NVR3QxMUZZTU5BTUJWTFNTQ3JvYW9Qb2NFY1ZPWGNFZytoS0M1TEF0VEhRaEthSmlMUnU2THNUdjEzeTBJSE1PeXc5QjE4R2ZuK0Zob2VJaVlvWkNBazBDUWlMRmdwb0NobFRSd2h0QkpFV2NEWkNqbTBKRjN4bU1adHVGcVpDcVFRWG4za29vbWlrc0hpWm01MlNBSlJnbHJ3VGpZKzd3Y2JIeU1uS0U1Z296VzljSjdFL1dDZXNhdFVtMTF0RjB0RWp6eks0eTRuaHh0UEkyOGJxd2VqSTV1VHhKaEVBSWZrRUNRb0FBQUFzQUFBQUFEWUFOZ0FBQk1zUXlFbXJ2VGpyemJ2L1lDaU9aR21lYUtvQ3dqQUlxeWtRTkFISDQxQVRBNTd2UFY5b1Zyc0pRYTNYY1lsS0dtV3VKM0luRlJGcDFZNnVGaXh0YVYzUWwzY2FoejlYMnltZDdUaFRiNlo4VHEvYjcvaTh2R0NnR1FvYWNVSUZab0FYYkVkOU93UUdHR1pIaXpXT1FKQ1JCQmlJUW9vN2paaFJTd2RtQjNvVUI0b0dvNlNxcTZ5dE1RZ0pOQWtJckFxUkNpT0NJd2lXQkxSVFJTV3hsZ2toanlTOU5NYVV5TWxEVk1LOXhVT2ZKYnlXdjNxMmk3aEx1aFd3c3RsQ21hdkg1c3lyNWVyVnJ1NDRFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWlaY2dVR05BWUZKSk1pQldhZ1E0TWxuVHNFQmlLTElxczFya0Ftc1RSV3FDU3FPNjFXa1JrSUNUUUpDQmNIWmdkSENyRUt4cW9HeVVJSXRnVEZlc0syQ1h2VXQzcmNCSHZZc2RwNjA3Yldlc3VyelpYQncrZ2lFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWdTQ0FrMENRaVdDanMwQ3BRSW9qV2ZKWk1kbktjRUNhcURJSzQxWGtBaHREUzJYQ0d0cDdBa2p4Nm1ycW5Ca1NLaG9xUVhCUVkwQmdWTG01M0dGUVZtMHBUUG9nYVZ0Tit1bGR3NzNwUUhaZ2VXQjl3RzZwa29FUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2dktVU0Nsa0RnTFFvN05BcC9Fd2lDTlg1Q2NSWjdpQVFKaTFRWGp6VkNacFNWQkpkQUY0NklrVDVzRjRlUGlxSlJHWUdDaElXR2puMnVzck8wdFhZRkJqUUdCYlFGWnJ4UVNpSzVnZ1l5a3lHVkpwakpqOHVkSWNRN3hpV2pJUWRtQjJ1cEl3ZkVCdHEySG95ejFyUE01OURseUxUazR1OHBFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3a1JDVm9Db1dtOWhCTEZqcWFBZGhEVEdyUGtOSDZTV1VLQ3UvTjJ3cldTcmhiOG9HbHFZQWljSFpPSU5ETUhHOTdlWFhvZFVsTlZWbGRnUzRhS2k0eU5qbzhGQmpRR0JZOFhCV3MwQTVWUVhSbVNVd2FkWlJob1VKazhwV0duY2hlZ082SkNlRFlZQjZnREIxYWVHUWVnQnJtV3djTER4TVhHeDF5QUtic2lzNEVnemo5c0o3ZlNtdFN0UTZReTI4M0tLTXpJamVIRTBjYlY1OW5sM2NYazR1OG9FUUE3KSBuby1yZXBlYXQgY2VudGVyIGNlbnRlcjtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDMycHggMzJweDtcbn1cbi5teC10YWJjb250YWluZXItdGFicyB7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuLm14LXRhYmNvbnRhaW5lci10YWJzIGxpIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG59XG4ubXgtdGFiY29udGFpbmVyLWluZGljYXRvciB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGJhY2tncm91bmQ6ICNmMmRlZGU7XG4gICAgYm9yZGVyLXJhZGl1czogOHB4O1xuICAgIGNvbG9yOiAjYjk0YTQ4O1xuICAgIHRvcDogMHB4O1xuICAgIHJpZ2h0OiAtNXB4O1xuICAgIHdpZHRoOiAxNnB4O1xuICAgIGhlaWdodDogMTZweDtcbiAgICBsaW5lLWhlaWdodDogMTZweDtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBmb250LXNpemU6IDEwcHg7XG4gICAgZm9udC13ZWlnaHQ6IDYwMDtcbiAgICB6LWluZGV4OiAxOyAvKiBpbmRpY2F0b3Igc2hvdWxkIG5vdCBoaWRlIGJlaGluZCBvdGhlciB0YWIgKi9cbn1cbiIsIi8qIGJhc2Ugc3RydWN0dXJlICovXG4ubXgtZ3JpZCB7XG4gICAgcGFkZGluZzogOHB4O1xuICAgIG92ZXJmbG93OiBoaWRkZW47IC8qIHRvIHByZXZlbnQgYW55IG1hcmdpbiBmcm9tIGVzY2FwaW5nIGdyaWQgYW5kIGZvb2JhcmluZyBvdXIgc2l6ZSBjYWxjdWxhdGlvbnMgKi9cbn1cbi5teC1ncmlkLWNvbnRyb2xiYXIsIC5teC1ncmlkLXNlYXJjaGJhciB7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBqdXN0aWZ5LWNvbnRlbnQ6IHNwYWNlLWJldHdlZW47XG4gICAgZmxleC13cmFwOiB3cmFwO1xufVxuLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uLFxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIC5teC1idXR0b24ge1xuICAgIG1hcmdpbi1ib3R0b206IDhweDtcbn1cblxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIC5teC1idXR0b24gKyAubXgtYnV0dG9uLFxuLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uICsgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWxlZnQ6IDAuM2VtO1xufVxuXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXNlYXJjaC1jb250cm9scyAubXgtYnV0dG9uICsgLm14LWJ1dHRvbixcbltkaXI9XCJydGxcIl0gLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uICsgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWxlZnQ6IDA7XG4gICAgbWFyZ2luLXJpZ2h0OiAwLjNlbTtcbn1cblxuLm14LWdyaWQtcGFnaW5nYmFyLFxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gICAgYWxpZ24taXRlbXM6IGJhc2VsaW5lO1xuICAgIG1hcmdpbi1sZWZ0OiBhdXRvO1xufVxuXG4ubXgtZ3JpZC10b29sYmFyLCAubXgtZ3JpZC1zZWFyY2gtaW5wdXRzIHtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbiAgICBmbGV4OiAxO1xufVxuXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXRvb2xiYXIsXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXNlYXJjaC1pbnB1dHMge1xuICAgIG1hcmdpbi1sZWZ0OiA1cHg7XG4gICAgbWFyZ2luLXJpZ2h0OiAwcHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXBhZ2luZ2JhcixcbltkaXI9XCJydGxcIl0gLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIHtcbiAgICBtYXJnaW4tbGVmdDogMHB4O1xuICAgIG1hcmdpbi1yaWdodDogYXV0bztcbn1cblxuLm14LWdyaWQtcGFnaW5nLXN0YXR1cyB7XG4gICAgcGFkZGluZzogMCA4cHggNXB4O1xufVxuXG4vKiBzZWFyY2ggZmllbGRzICovXG4ubXgtZ3JpZC1zZWFyY2gtaXRlbSB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuLm14LWdyaWQtc2VhcmNoLWxhYmVsIHtcbiAgICB3aWR0aDogMTEwcHg7XG4gICAgcGFkZGluZzogMCA1cHg7XG4gICAgdGV4dC1hbGlnbjogcmlnaHQ7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cbltkaXI9XCJydGxcIl0gLm14LWdyaWQtc2VhcmNoLWxhYmVsIHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LWdyaWQtc2VhcmNoLWlucHV0IHtcbiAgICB3aWR0aDogMTUwcHg7XG4gICAgcGFkZGluZzogMCA1cHg7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG59XG4ubXgtZ3JpZC1zZWFyY2gtbWVzc2FnZSB7XG4gICAgZmxleC1iYXNpczogMTAwJTtcbn1cblxuLyogd2lkZ2V0IGNvbWJpbmF0aW9ucyAqL1xuLm14LWRhdGF2aWV3IC5teC1ncmlkIHtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIGJvcmRlci1yYWRpdXM6IDNweDtcbn1cbiIsIi5teC1jYWxlbmRhciB7XG4gICAgei1pbmRleDogMTAwMDtcbn1cblxuLm14LWNhbGVuZGFyLW1vbnRoLWRyb3Bkb3duLW9wdGlvbnMge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbn1cblxuLm14LWNhbGVuZGFyLCAubXgtY2FsZW5kYXItbW9udGgtZHJvcGRvd24ge1xuICAgIHVzZXItc2VsZWN0OiBub25lO1xufVxuXG4ubXgtY2FsZW5kYXItbW9udGgtY3VycmVudCB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4ubXgtY2FsZW5kYXItbW9udGgtc3BhY2VyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgaGVpZ2h0OiAwcHg7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB2aXNpYmlsaXR5OiBoaWRkZW47XG59XG5cbi5teC1jYWxlbmRhciwgLm14LWNhbGVuZGFyLW1vbnRoLWRyb3Bkb3duLW9wdGlvbnMge1xuICAgIGJvcmRlcjogMXB4IHNvbGlkIGxpZ2h0Z3JleTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB3aGl0ZTtcbn1cbiIsIi5teC1kYXRhZ3JpZCB0ciB7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xufVxuXG4ubXgtZGF0YWdyaWQgdHIubXgtZGF0YWdyaWQtcm93LWVtcHR5IHtcbiAgICBjdXJzb3I6IGRlZmF1bHQ7XG59XG5cbi5teC1kYXRhZ3JpZCB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbWF4LXdpZHRoOiAxMDAlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuLm14LWRhdGFncmlkIHRoLCAubXgtZGF0YWdyaWQgdGQge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICBsaW5lLWhlaWdodDogMS40Mjg1NzE0MztcbiAgICB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNkZGQ7XG59XG5cbi8qIGhlYWQgKi9cbi5teC1kYXRhZ3JpZCB0aCB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlOyAvKiBSZXF1aXJlZCBmb3IgdGhlIHBvc2l0aW9uaW5nIG9mIHRoZSBjb2x1bW4gcmVzaXplcnMgKi9cbiAgICBib3JkZXItYm90dG9tLXdpZHRoOiAycHg7XG59XG4ubXgtZGF0YWdyaWQtaGVhZC1jYXB0aW9uIHtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG4ubXgtZGF0YWdyaWQtc29ydC1pY29uIHtcbiAgICBmbG9hdDogcmlnaHQ7XG4gICAgcGFkZGluZy1sZWZ0OiA1cHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kYXRhZ3JpZC1zb3J0LWljb24ge1xuICAgIGZsb2F0OiBsZWZ0O1xuICAgIHBhZGRpbmc6IDAgNXB4IDAgMDtcbn1cbi5teC1kYXRhZ3JpZC1jb2x1bW4tcmVzaXplciB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICBsZWZ0OiAtNnB4O1xuICAgIHdpZHRoOiAxMHB4O1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBjdXJzb3I6IGNvbC1yZXNpemU7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kYXRhZ3JpZC1jb2x1bW4tcmVzaXplciB7XG4gICAgbGVmdDogYXV0bztcbiAgICByaWdodDogLTZweDtcbn1cblxuLyogYm9keSAqL1xuLm14LWRhdGFncmlkIHRib2R5IHRyOmZpcnN0LWNoaWxkIHRkIHtcbiAgICBib3JkZXItdG9wOiBub25lO1xufVxuLm14LWRhdGFncmlkIHRib2R5IHRyOm50aC1jaGlsZCgybisxKSB0ZCB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI2Y5ZjlmOTtcbn1cbi5teC1kYXRhZ3JpZCB0Ym9keSAuc2VsZWN0ZWQgdGQge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNlZWU7XG59XG4ubXgtZGF0YWdyaWQtZGF0YS13cmFwcGVyIHtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG4ubXgtZGF0YWdyaWQgdGJvZHkgaW1nIHtcbiAgICBtYXgtd2lkdGg6IDE2cHg7XG4gICAgbWF4LWhlaWdodDogMTZweDtcbn1cbi5teC1kYXRhZ3JpZCBpbnB1dCxcbi5teC1kYXRhZ3JpZCBzZWxlY3QsXG4ubXgtZGF0YWdyaWQgdGV4dGFyZWEge1xuICAgIGN1cnNvcjogYXV0bztcbn1cblxuLyogZm9vdCAqL1xuLm14LWRhdGFncmlkIHRmb290IHRoLFxuLm14LWRhdGFncmlkIHRmb290IHRkIHtcbiAgICBwYWRkaW5nOiAzcHggOHB4O1xufVxuLm14LWRhdGFncmlkIHRmb290IHRoIHtcbiAgICBib3JkZXItdG9wOiAxcHggc29saWQgI2RkZDtcbn1cbi5teC1kYXRhZ3JpZC5teC1jb250ZW50LWxvYWRpbmcgLm14LWNvbnRlbnQtbG9hZGVyIHtcbiAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgd2lkdGg6IDkwJTtcbiAgICBhbmltYXRpb246IHBsYWNlaG9sZGVyR3JhZGllbnQgMXMgbGluZWFyIGluZmluaXRlO1xuICAgIGJvcmRlci1yYWRpdXM6IDRweDtcbiAgICBiYWNrZ3JvdW5kOiAjRjVGNUY1O1xuICAgIGJhY2tncm91bmQ6IHJlcGVhdGluZy1saW5lYXItZ3JhZGllbnQodG8gcmlnaHQsICNGNUY1RjUgMCUsICNGNUY1RjUgNSUsICNGOUY5RjkgNTAlLCAjRjVGNUY1IDk1JSwgI0Y1RjVGNSAxMDAlKTtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDIwMHB4IDEwMHB4O1xuICAgIGFuaW1hdGlvbi1maWxsLW1vZGU6IGJvdGg7XG59XG5Aa2V5ZnJhbWVzIHBsYWNlaG9sZGVyR3JhZGllbnQge1xuICAgIDAlIHsgYmFja2dyb3VuZC1wb3NpdGlvbjogMTAwcHggMDsgfVxuICAgIDEwMCUgeyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAtMTAwcHggMDsgfVxufVxuXG4ubXgtZGF0YWdyaWQtdGFibGUtcmVzaXppbmcgdGgsXG4ubXgtZGF0YWdyaWQtdGFibGUtcmVzaXppbmcgdGQge1xuICAgIGN1cnNvcjogY29sLXJlc2l6ZSAhaW1wb3J0YW50O1xufVxuIiwiLm14LXRlbXBsYXRlZ3JpZC1jb250ZW50LXdyYXBwZXIge1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbn1cbi5teC10ZW1wbGF0ZWdyaWQtcm93IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1yb3c7XG59XG4ubXgtdGVtcGxhdGVncmlkLWl0ZW0ge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNkZGQ7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG59XG4ubXgtdGVtcGxhdGVncmlkLWVtcHR5IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xufVxuLm14LXRlbXBsYXRlZ3JpZC1pdGVtLnNlbGVjdGVkIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNWY1O1xufVxuLm14LXRlbXBsYXRlZ3JpZC1pdGVtIC5teC10YWJsZSB0aCxcbi5teC10ZW1wbGF0ZWdyaWQtaXRlbSAubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDJweCA4cHg7XG59XG4iLCIubXgtc2Nyb2xsY29udGFpbmVyLWhvcml6b250YWwge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG59XG4ubXgtc2Nyb2xsY29udGFpbmVyLWhvcml6b250YWwgPiBkaXYge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdmVydGljYWwtYWxpZ246IHRvcDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItd3JhcHBlciB7XG4gICAgcGFkZGluZzogMTBweDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItbmVzdGVkIHtcbiAgICBwYWRkaW5nOiAwO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1maXhlZCA+IC5teC1zY3JvbGxjb250YWluZXItbWlkZGxlID4gLm14LXNjcm9sbGNvbnRhaW5lci13cmFwcGVyLFxuLm14LXNjcm9sbGNvbnRhaW5lci1maXhlZCA+IC5teC1zY3JvbGxjb250YWluZXItbGVmdCA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcixcbi5teC1zY3JvbGxjb250YWluZXItZml4ZWQgPiAubXgtc2Nyb2xsY29udGFpbmVyLWNlbnRlciA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcixcbi5teC1zY3JvbGxjb250YWluZXItZml4ZWQgPiAubXgtc2Nyb2xsY29udGFpbmVyLXJpZ2h0ID4gLm14LXNjcm9sbGNvbnRhaW5lci13cmFwcGVyIHtcbiAgICBvdmVyZmxvdzogYXV0bztcbn1cblxuLm14LXNjcm9sbGNvbnRhaW5lci1tb3ZlLWluIHtcbiAgICB0cmFuc2l0aW9uOiBsZWZ0IDI1MG1zIGVhc2Utb3V0O1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1tb3ZlLW91dCB7XG4gICAgdHJhbnNpdGlvbjogbGVmdCAyNTBtcyBlYXNlLWluO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zaHJpbmsgLm14LXNjcm9sbGNvbnRhaW5lci10b2dnbGVhYmxlIHtcbiAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiB3aWR0aDtcbn1cblxuLm14LXNjcm9sbGNvbnRhaW5lci10b2dnbGVhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zbGlkZSA+IC5teC1zY3JvbGxjb250YWluZXItdG9nZ2xlYWJsZSA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlciB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIHotaW5kZXg6IDE7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogaW5oZXJpdDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItcHVzaCB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zaHJpbmsgPiAubXgtc2Nyb2xsY29udGFpbmVyLXRvZ2dsZWFibGUge1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG59XG4ubXgtc2Nyb2xsY29udGFpbmVyLXB1c2gubXgtc2Nyb2xsY29udGFpbmVyLW9wZW4gPiBkaXYsXG4ubXgtc2Nyb2xsY29udGFpbmVyLXNsaWRlLm14LXNjcm9sbGNvbnRhaW5lci1vcGVuID4gZGl2IHtcbiAgICBwb2ludGVyLWV2ZW50czogbm9uZTtcbn1cbi5teC1zY3JvbGxjb250YWluZXItcHVzaC5teC1zY3JvbGxjb250YWluZXItb3BlbiA+IC5teC1zY3JvbGxjb250YWluZXItdG9nZ2xlYWJsZSxcbi5teC1zY3JvbGxjb250YWluZXItc2xpZGUubXgtc2Nyb2xsY29udGFpbmVyLW9wZW4gPiAubXgtc2Nyb2xsY29udGFpbmVyLXRvZ2dsZWFibGUge1xuICAgIHBvaW50ZXItZXZlbnRzOiBhdXRvO1xufVxuIiwiLm14LW5hdmJhci1pdGVtIGltZyxcbi5teC1uYXZiYXItc3ViaXRlbSBpbWcge1xuICAgIGhlaWdodDogMTZweDtcbn1cblxuIiwiLm14LW5hdmlnYXRpb250cmVlIC5uYXZiYXItaW5uZXIge1xuICAgIHBhZGRpbmctbGVmdDogMDtcbiAgICBwYWRkaW5nLXJpZ2h0OiAwO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIHtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHtcbiAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgI2RmZTZlYTtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSBsaTpsYXN0LWNoaWxkIHtcbiAgICBib3JkZXItc3R5bGU6IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgYSB7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgcGFkZGluZzogNXB4IDEwcHg7XG4gICAgY29sb3I6ICM3Nzc7XG4gICAgdGV4dC1zaGFkb3c6IDAgMXB4IDAgI2ZmZjtcbiAgICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgYS5hY3RpdmUge1xuICAgIGNvbG9yOiAjRkZGO1xuICAgIHRleHQtc2hhZG93OiBub25lO1xuICAgIGJhY2tncm91bmQ6ICMzNDk4REI7XG4gICAgYm9yZGVyLXJhZGl1czogM3B4O1xufVxuLm14LW5hdmlnYXRpb250cmVlIC5teC1uYXZpZ2F0aW9udHJlZS1jb2xsYXBzZWQgdWwge1xuICAgIGRpc3BsYXk6IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgdWwge1xuICAgIG1hcmdpbjogMDtcbiAgICBwYWRkaW5nOiAwO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHtcbiAgICBwYWRkaW5nOiA1cHggMDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCB7XG4gICAgcGFkZGluZzogMDtcbiAgICBtYXJnaW4tbGVmdDogMTBweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB7XG4gICAgbWFyZ2luLWxlZnQ6IDhweDtcbiAgICBwYWRkaW5nOiA1cHggMDtcbn1cbltkaXI9XCJydGxcIl0gLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHVsIGxpIHtcbiAgICBtYXJnaW4tbGVmdDogYXV0bztcbiAgICBtYXJnaW4tcmlnaHQ6IDhweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB1bCBsaSB7XG4gICAgZm9udC1zaXplOiAxMHB4O1xuICAgIHBhZGRpbmctdG9wOiAzcHg7XG4gICAgcGFkZGluZy1ib3R0b206IDNweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB1bCBsaSBpbWcge1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG59XG4iLCIubXgtbGluayBpbWcsXG4ubXgtYnV0dG9uIGltZyB7XG4gICAgaGVpZ2h0OiAxNnB4O1xufVxuLm14LWxpbmsge1xuICAgIHBhZGRpbmc6IDZweCAxMnB4O1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cbiIsIi5teC1ncm91cGJveCB7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbn1cbi5teC1ncm91cGJveC1oZWFkZXIge1xuICAgIG1hcmdpbjogMDtcbiAgICBwYWRkaW5nOiAxMHB4IDE1cHg7XG4gICAgY29sb3I6ICNlZWU7XG4gICAgYmFja2dyb3VuZDogIzMzMztcbiAgICBmb250LXNpemU6IGluaGVyaXQ7XG4gICAgbGluZS1oZWlnaHQ6IGluaGVyaXQ7XG4gICAgYm9yZGVyLXJhZGl1czogNHB4IDRweCAwIDA7XG59XG4ubXgtZ3JvdXBib3gtY29sbGFwc2libGUgPiAubXgtZ3JvdXBib3gtaGVhZGVyIHtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZ3JvdXBib3guY29sbGFwc2VkID4gLm14LWdyb3VwYm94LWhlYWRlciB7XG4gICAgYm9yZGVyLXJhZGl1czogNHB4O1xufVxuLm14LWdyb3VwYm94LWJvZHkge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIGJvcmRlci1yYWRpdXM6IDRweDtcbn1cbi5teC1ncm91cGJveC5jb2xsYXBzZWQgPiAubXgtZ3JvdXBib3gtYm9keSB7XG4gICAgZGlzcGxheTogbm9uZTtcbn1cbi5teC1ncm91cGJveC1oZWFkZXIgKyAubXgtZ3JvdXBib3gtYm9keSB7XG4gICAgYm9yZGVyLXRvcDogbm9uZTtcbiAgICBib3JkZXItcmFkaXVzOiAwIDAgNHB4IDRweDtcbn1cbi5teC1ncm91cGJveC1jb2xsYXBzZS1pY29uIHtcbiAgICBmbG9hdDogcmlnaHQ7XG59XG5bZGlyPVwicnRsXCJdIC5teC1ncm91cGJveC1jb2xsYXBzZS1pY29uIHtcbiAgICBmbG9hdDogbGVmdDtcbn1cbiIsIi5teC1kYXRhdmlldyB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLm14LWRhdGF2aWV3LWNvbnRyb2xzIHtcbiAgICBwYWRkaW5nOiAxOXB4IDIwcHggMTJweDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNWY1O1xuICAgIGJvcmRlci10b3A6IDFweCBzb2xpZCAjZWVlO1xufVxuXG4ubXgtZGF0YXZpZXctY29udHJvbHMgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuXG4ubXgtZGF0YXZpZXctY29udHJvbHMgLm14LWJ1dHRvbiArIC5teC1idXR0b24ge1xuICAgIG1hcmdpbi1sZWZ0OiAwLjNlbTtcbn1cblxuLm14LWRhdGF2aWV3LW1lc3NhZ2Uge1xuICAgIGJhY2tncm91bmQ6ICNmZmY7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICByaWdodDogMDtcbiAgICBib3R0b206IDA7XG4gICAgbGVmdDogMDtcbn1cbi5teC1kYXRhdmlldy1tZXNzYWdlID4gZGl2IHtcbiAgICBkaXNwbGF5OiB0YWJsZTtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG59XG4ubXgtZGF0YXZpZXctbWVzc2FnZSA+IGRpdiA+IHAge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi8qIFRvcC1sZXZlbCBkYXRhIHZpZXcgaW4gd2luZG93IGlzIGEgc3BlY2lhbCBjYXNlLCBoYW5kbGUgaXQgYXMgc3VjaC4gKi9cbi5teC13aW5kb3ctdmlldyAubXgtd2luZG93LWJvZHkge1xuICAgIHBhZGRpbmc6IDA7XG59XG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRlbnQsXG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LXBsYWNlaG9sZGVyID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRlbnQge1xuICAgIHBhZGRpbmc6IDE1cHg7XG59XG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRyb2xzLFxuLm14LXdpbmRvdy12aWV3IC5teC13aW5kb3ctYm9keSA+IC5teC1wbGFjZWhvbGRlciA+IC5teC1kYXRhdmlldyA+IC5teC1kYXRhdmlldy1jb250cm9scyB7XG4gICAgYm9yZGVyLXJhZGl1czogMHB4IDBweCA2cHggNnB4O1xufVxuIiwiLm14LWRpYWxvZyB7XG4gICAgcG9zaXRpb246IGZpeGVkO1xuICAgIGxlZnQ6IGF1dG87XG4gICAgcmlnaHQ6IGF1dG87XG4gICAgcGFkZGluZzogMDtcbiAgICB3aWR0aDogNTAwcHg7XG4gICAgLyogSWYgdGhlIG1hcmdpbiBpcyBzZXQgdG8gYXV0bywgSUU5IHJlcG9ydHMgdGhlIGNhbGN1bGF0ZWQgdmFsdWUgb2YgdGhlXG4gICAgICogbWFyZ2luIGFzIHRoZSBhY3R1YWwgdmFsdWUuIE90aGVyIGJyb3dzZXJzIHdpbGwganVzdCByZXBvcnQgMC4gRWxpbWluYXRlXG4gICAgICogdGhpcyBkaWZmZXJlbmNlIGJ5IHNldHRpbmcgbWFyZ2luIHRvIDAgZm9yIGV2ZXJ5IGJyb3dzZXIuICovXG4gICAgbWFyZ2luOiAwO1xufVxuLm14LWRpYWxvZy1oZWFkZXIge1xuICAgIGN1cnNvcjogbW92ZTtcbn1cbi5teC1kaWFsb2ctYm9keSB7XG4gICAgb3ZlcmZsb3c6IGF1dG87XG59XG4iLCIubXgtd2luZG93IHtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgbGVmdDogYXV0bztcbiAgICByaWdodDogYXV0bztcbiAgICBwYWRkaW5nOiAwO1xuICAgIHdpZHRoOiA2MDBweDtcbiAgICAvKiBJZiB0aGUgbWFyZ2luIGlzIHNldCB0byBhdXRvLCBJRTkgcmVwb3J0cyB0aGUgY2FsY3VsYXRlZCB2YWx1ZSBvZiB0aGVcbiAgICAgKiBtYXJnaW4gYXMgdGhlIGFjdHVhbCB2YWx1ZS4gT3RoZXIgYnJvd3NlcnMgd2lsbCBqdXN0IHJlcG9ydCAwLiBFbGltaW5hdGVcbiAgICAgKiB0aGlzIGRpZmZlcmVuY2UgYnkgc2V0dGluZyBtYXJnaW4gdG8gMCBmb3IgZXZlcnkgYnJvd3Nlci4gKi9cbiAgICBtYXJnaW46IDA7XG59XG4ubXgtd2luZG93LWNvbnRlbnQge1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xufVxuLm14LXdpbmRvdy1hY3RpdmUgLm14LXdpbmRvdy1oZWFkZXIge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNmNWY1ZjU7XG4gICAgYm9yZGVyLXJhZGl1czogNnB4IDZweCAwIDA7XG59XG4ubXgtd2luZG93LWhlYWRlciB7XG4gICAgY3Vyc29yOiBtb3ZlO1xufVxuLm14LXdpbmRvdy1ib2R5IHtcbiAgICBvdmVyZmxvdzogYXV0bztcbn1cbiIsIi5teC1kcm9wZG93bi1saXN0ICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1kcm9wZG93bi1saXN0IGltZyB7XG4gICAgd2lkdGg6IDM1cHg7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kcm9wZG93bi1saXN0IGltZyB7XG4gICAgbWFyZ2luLWxlZnQ6IDEwcHg7XG4gICAgbWFyZ2luLXJpZ2h0OiBhdXRvO1xufVxuXG4ubXgtZHJvcGRvd24tbGlzdCB7XG4gICAgcGFkZGluZzogMDtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LWRyb3Bkb3duLWxpc3QgPiBsaSB7XG4gICAgcGFkZGluZzogNXB4IDEwcHggMTBweDtcbiAgICBib3JkZXI6IDFweCAjZGRkO1xuICAgIGJvcmRlci1zdHlsZTogc29saWQgc29saWQgbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xufVxuLm14LWRyb3Bkb3duLWxpc3QgPiBsaTpmaXJzdC1jaGlsZCB7XG4gICAgYm9yZGVyLXRvcC1sZWZ0LXJhZGl1czogNHB4O1xuICAgIGJvcmRlci10b3AtcmlnaHQtcmFkaXVzOiA0cHg7XG59XG4ubXgtZHJvcGRvd24tbGlzdCA+IGxpOmxhc3QtY2hpbGQge1xuICAgIGJvcmRlci1ib3R0b20tc3R5bGU6IHNvbGlkO1xuICAgIGJvcmRlci1ib3R0b20tbGVmdC1yYWRpdXM6IDRweDtcbiAgICBib3JkZXItYm90dG9tLXJpZ2h0LXJhZGl1czogNHB4O1xufVxuLm14LWRyb3Bkb3duLWxpc3Qtc3RyaXBlZCA+IGxpOm50aC1jaGlsZCgybisxKSB7XG4gICAgYmFja2dyb3VuZDogI2Y5ZjlmOTtcbn1cbi5teC1kcm9wZG93bi1saXN0ID4gbGk6aG92ZXIge1xuICAgIGJhY2tncm91bmQ6ICNmNWY1ZjU7XG59XG4iLCIubXgtaGVhZGVyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgcGFkZGluZzogOXB4O1xuICAgIGJhY2tncm91bmQ6ICMzMzM7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuLm14LWhlYWRlci1jZW50ZXIge1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICBjb2xvcjogI2VlZTtcbiAgICBsaW5lLWhlaWdodDogMzBweDsgLyogaGVpZ2h0IG9mIGJ1dHRvbnMgKi9cbn1cbmJvZHlbZGlyPVwibHRyXCJdIC5teC1oZWFkZXItbGVmdCxcbmJvZHlbZGlyPVwicnRsXCJdIC5teC1oZWFkZXItcmlnaHQge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB0b3A6IDlweDtcbiAgICBsZWZ0OiA5cHg7XG59XG5ib2R5W2Rpcj1cImx0clwiXSAubXgtaGVhZGVyLXJpZ2h0LFxuYm9keVtkaXI9XCJydGxcIl0gLm14LWhlYWRlci1sZWZ0IHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgdG9wOiA5cHg7XG4gICAgcmlnaHQ6IDlweDtcbn1cbiIsIi5teC10aXRsZSB7XG4gICAgbWFyZ2luLWJvdHRvbTogMHB4O1xuICAgIG1hcmdpbi10b3A6IDBweDtcbn1cbiIsIi5teC1saXN0dmlldyB7XG4gICAgcGFkZGluZzogOHB4O1xufVxuLm14LWxpc3R2aWV3ID4gdWwge1xuICAgIHBhZGRpbmc6IDBweDtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LWxpc3R2aWV3ID4gdWwgPiBsaSB7XG4gICAgcGFkZGluZzogNXB4IDEwcHggMTBweDtcbiAgICBib3JkZXI6IDFweCAjZGRkO1xuICAgIGJvcmRlci1zdHlsZTogc29saWQgc29saWQgbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuICAgIG91dGxpbmU6IG5vbmU7XG59XG4ubXgtbGlzdHZpZXcgPiB1bCA+IGxpOmZpcnN0LWNoaWxkIHtcbiAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiA0cHg7XG4gICAgYm9yZGVyLXRvcC1yaWdodC1yYWRpdXM6IDRweDtcbn1cbi5teC1saXN0dmlldyA+IHVsID4gbGk6bGFzdC1jaGlsZCB7XG4gICAgYm9yZGVyLWJvdHRvbS1zdHlsZTogc29saWQ7XG4gICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogNHB4O1xuICAgIGJvcmRlci1ib3R0b20tcmlnaHQtcmFkaXVzOiA0cHg7XG59XG4ubXgtbGlzdHZpZXcgbGk6bnRoLWNoaWxkKDJuKzEpIHtcbiAgICBiYWNrZ3JvdW5kOiAjZjlmOWY5O1xufVxuLm14LWxpc3R2aWV3IGxpOm50aC1jaGlsZCgybisxKTpob3ZlciB7XG4gICAgYmFja2dyb3VuZDogI2Y1ZjVmNTtcbn1cbi5teC1saXN0dmlldyA+IHVsID4gbGkuc2VsZWN0ZWQge1xuICAgIGJhY2tncm91bmQ6ICNlZWU7XG59XG4ubXgtbGlzdHZpZXctY2xpY2thYmxlIHVsICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1saXN0dmlldy1lbXB0eSB7XG4gICAgY29sb3I6ICM5OTk7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuLm14LWxpc3R2aWV3IC5teC1saXN0dmlldy1sb2FkaW5nIHtcbiAgICBwYWRkaW5nOiAxMHB4O1xuICAgIGxpbmUtaGVpZ2h0OiAwO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5teC1saXN0dmlldy1zZWFyY2hiYXIge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbn1cbi5teC1saXN0dmlldy1zZWFyY2hiYXIgPiBpbnB1dCB7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtbGlzdHZpZXctc2VhcmNoYmFyID4gYnV0dG9uIHtcbiAgICBtYXJnaW4tbGVmdDogNXB4O1xufVxuW2Rpcj1cInJ0bFwiXSAubXgtbGlzdHZpZXctc2VhcmNoYmFyID4gYnV0dG9uIHtcbiAgICBtYXJnaW4tbGVmdDogMDtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbn1cbi5teC1saXN0dmlldy1zZWxlY3Rpb24ge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBwYWRkaW5nOiAwIDE1cHggMCA1cHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1saXN0dmlldy1zZWxlY3Rpb24ge1xuICAgIHBhZGRpbmc6IDAgNXB4IDAgMTVweDtcbn1cbi5teC1saXN0dmlldy1zZWxlY3RhYmxlIC5teC1saXN0dmlldy1jb250ZW50IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtbGlzdHZpZXcgLnNlbGVjdGVkIHtcbiAgICBiYWNrZ3JvdW5kOiAjZGVmO1xufVxuLm14LWxpc3R2aWV3IC5teC10YWJsZSB0aCxcbi5teC1saXN0dmlldyAubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDJweDtcbn1cbiIsIi5teC1sb2dpbiAuZm9ybS1jb250cm9sIHtcbiAgICBtYXJnaW4tdG9wOiAxMHB4O1xufVxuIiwiLm14LW1lbnViYXIge1xuICAgIHBhZGRpbmc6IDhweDtcbn1cbi5teC1tZW51YmFyLWljb24ge1xuICAgIGhlaWdodDogMTZweDtcbn1cbi5teC1tZW51YmFyLW1vcmUtaWNvbiB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHdpZHRoOiAxNnB4O1xuICAgIGhlaWdodDogMTZweDtcbiAgICBiYWNrZ3JvdW5kOiB1cmwoZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFDTUFBQUFqQ0FZQUFBQWUyYk5aQUFBQUdYUkZXSFJUYjJaMGQyRnlaUUJCWkc5aVpTQkpiV0ZuWlZKbFlXUjVjY2xsUEFBQUFLTkpSRUZVZU5waS9QLy9QOE5nQVV3TWd3aU1PbWJVTWFPT0dYWE1xR05HSFRQWUhNT0NUZkRzMmJNZVFLb09pSTFCWENCdU1qWTIza0ZyZFl6b1RRaWdSbThndFFXTEcwT0JCcXlobFRwYzBkU09JeFRyYUt3T3EyUFVjV2hXcDdFNnJJNjVpVVB6VFJxcncrcVlHaHlhbTJpc0R0TXh3RVMxQ1VnRkFmRnhxQkNJRGtKUGJOUldoelUzalJaNm80NFpkY3lvWTBZZE0rcVlVY2NNVXNjQUJCZ0FVWHBFakUvQnMvSUFBQUFBU1VWT1JLNUNZSUk9KSBuby1yZXBlYXQgY2VudGVyIGNlbnRlcjtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDE2cHggMTZweDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuIiwiLm14LW5hdmlnYXRpb25saXN0IHtcbiAgICBwYWRkaW5nOiA4cHg7XG59XG4ubXgtbmF2aWdhdGlvbmxpc3QgbGk6aG92ZXIsXG4ubXgtbmF2aWdhdGlvbmxpc3QgbGk6Zm9jdXMsXG4ubXgtbmF2aWdhdGlvbmxpc3QgbGkuYWN0aXZlIHtcbiAgICBjb2xvcjogI0ZGRjtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzQ5OERCO1xufVxuLm14LW5hdmlnYXRpb25saXN0ICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1uYXZpZ2F0aW9ubGlzdCAudGFibGUgdGgsXG4ubXgtbmF2aWdhdGlvbmxpc3QgLnRhYmxlIHRkIHtcbiAgICBwYWRkaW5nOiAycHg7XG59XG4iLCIubXgtcHJvZ3Jlc3Mge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICB0b3A6IDMwJTtcbiAgICBsZWZ0OiAwO1xuICAgIHJpZ2h0OiAwO1xuICAgIG1hcmdpbjogYXV0bztcbiAgICB3aWR0aDogMjUwcHg7XG4gICAgbWF4LXdpZHRoOiA5MCU7XG4gICAgYmFja2dyb3VuZDogIzMzMztcbiAgICBvcGFjaXR5OiAwLjg7XG4gICAgei1pbmRleDogNTAwMDtcbiAgICBib3JkZXItcmFkaXVzOiA0cHg7XG4gICAgcGFkZGluZzogMjBweCAxNXB4O1xuICAgIHRyYW5zaXRpb246IG9wYWNpdHkgMC40cyBlYXNlLWluLW91dDtcbn1cbi5teC1wcm9ncmVzcy1oaWRkZW4ge1xuICAgIG9wYWNpdHk6IDA7XG59XG4ubXgtcHJvZ3Jlc3MtbWVzc2FnZSB7XG4gICAgY29sb3I6ICNmZmY7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIG1hcmdpbi1ib3R0b206IDE1cHg7XG59XG4ubXgtcHJvZ3Jlc3MtZW1wdHkgLm14LXByb2dyZXNzLW1lc3NhZ2Uge1xuICAgIGRpc3BsYXk6IG5vbmU7XG59XG4ubXgtcHJvZ3Jlc3MtaW5kaWNhdG9yIHtcbiAgICB3aWR0aDogNzBweDtcbiAgICBoZWlnaHQ6IDEwcHg7XG4gICAgbWFyZ2luOiBhdXRvO1xuICAgIGJhY2tncm91bmQ6IHVybChkYXRhOmltYWdlL2dpZjtiYXNlNjQsUjBsR09EbGhSZ0FLQU1RQUFEbzZPb0dCZ1ZwYVduQndjSTZPanF5c3JGSlNVbVJrWkQ4L1AweE1UTTdPenFlbnAxaFlXRjFkWFVoSVNISnljb2VIaDB0TFMxZFhWNmlvcU0vUHoyVmxaVDA5UFRjM04wQkFRSVdGaGRiVzFseGNYSzJ0clVGQlFUTXpNd0FBQUNIL0MwNUZWRk5EUVZCRk1pNHdBd0VBQUFBaCtRUUVEQUFBQUN3QUFBQUFSZ0FLQUFBRms2RG5YUmFHV1plb3JxU0pybkI3cHJBcXY3VjQweDdRL1VCQXpnZjhDV3ZFNGhHV0RBNkx4aEVVeU5OTmYxWHBOWHU1ZHJoZWt0Y0NzNHpMNTVYNVNsYVBNVjRNREg2VnIraFR1d29QMVl2NFJTWnhjNE4zaFh1SGYzRnJVMjBxakZDT0lwQkZraDZVUUphWVB5aGhNWjRzb0RhaVZsczlVMHNyVFZGSXFFOVFxU3FySFVzN09Ub2xNN2NqdVRnNXRyZkFJUUFoK1FRRURBQUFBQ3dBQUFBQUNnQUtBQUFGSktEbkhZV2lGSWZvUVZyclFxTXJhK1RzbG5acjV0ckpvN3dVYXdZVFZRb1VDa29VQWdBaCtRUUVEQUFBQUN3QUFBQUFHUUFLQUFBRldhRG5NY1N5RUpLb3JrZWhLTVdoUGx4dFA2c0thWHdQZVJLYmtNUElIWHBJellFd3RCRnloV1N2c0dqV0ZqbUZsS2VvV3JFcjdWYkJ0RDVYMFcyQllTVWF0MG9QYllqTGVYYkpuNGcwbVJDS2RpSVZCUlFVTVNJaEFDSDVCQVFNQUFBQUxBQUFBQUFvQUFvQUFBV0tvT2NsUXhBTWthaXVETEVzaExUT1I2RW94YUUyV2U4M005R0RReXcrZ2g2SVpzbUVlQ0srYUNZeGt4U3ZIQWFOeWRVY0JsTGZZRWJBRmdtelFwZFpDSVI3Z2RuQ1RGek1GT3Vsd3YyT3IrWjBkaXQ0ZVFwZ2IyTXJaWFJvSzJwNUJRbHZVek1NZEZsYmVUbzhVa0JCUTFoSFFVcGRUaUlrSmdOVVNCNHRFeE1FV3F3VkJSUVVPU0loQUNINUJBUU1BQUFBTEFBQUFBQTNBQW9BQUFXOG9PY2hoaUFZaUtpdXlSQUVRN1RPRExFc2hEU3ZSNkVvaFlQS3NTa2FIVHRQSThOc05wSVBqblQ2U0VJMDJDeGtaT3h1VXF0SWM1eEp6Q1RUTkljeE8yVGZtb1BCYXpUTUJ1VG1ZRVpRVHdrekJYQlpCUUowUlFJekFYbE1BVE1MZmxJTE13cURXQXFHaDRrcmk0eU9LNUNSa3l1VmxncHpoM1lyZUl4N0szMlJnQ3VDbGdVSWgxOHpDWXhsTkpGcmJaWnhIa1JlU0R0TFpFODdVV3BWTzFkd1d5SVlKU2RnU1MwdkEyWkpIalVURXdSczNoVUZGQlJCSWlFQUlma0VCQXdBQUFBc0FBQUFBRVlBQ2dBQUJmQ2c1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkROSzhNc1N3RXlVNTFLQ2dVaFlNSzBHazZBVVBIWmtwMURCdVpyTFl4ZkhDKzRNY1FvaW1iSVNPbnVwTmlVZDhiMlNxaXJXY1NNd2w0ejJITURtYUJHZ2NXYTA0V013WndWQVl6QTNaYUF6TUVmR0FFTXdXQ1pnVVloazBZTXdLTFV3SXpBWkJaQVRNTGxWOExNd3FhWlFxZG5xQXJvcU9sSzZlb3FpdXNyYThyc2JJS2haNklLNHFqalN1UHFKSXJsSzJYSzVteUJSZWViRE1JbzNFMHFIY3pESzE5ZjdLREhreHJVRHRTY0ZZN1dIWmNPMTU4WWp0a2dtZ2lKRXlnR0NJQ2d3c1ljb2JVdURFQUQ4RWVFeVlROEVPd1FnRUtGSktJQ0FFQUlma0VCQXdBQUFBc0R3QUFBRGNBQ2dBQUJicWc1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkROSzhNc1N3RWlRclFLUm9CTzQ5ancydzZrbzJNZE5wSVBqalk3R05rN0haU3JLWjRJMXRGcHVoTVlpYkp1amtNaTlkb21SbkdUY05za0o0T1pnUnZXUVFZYzBVWU13SjRUQUl6QVgxU0FUTUxnbGdMaFlhSUs0cUxqU3VQa0pJcmxKVUxjb1oxSzNlTGVpdDhrSDhyZ1pVRUY0WmZNd2lMWkRTUWFqTU1sWEFlUkY1SU8wdGpUenRSYVZVN1YyOWJJaVFtS0VraUdDNHdaVWsxTndOcjJEMFRFd1FNSWlFQUlma0VCQXdBQUFBc0hnQUFBQ2dBQ2dBQUJZZWc1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkRwQUpkN3dNemtXTkRMRHFDbmtabXlXeU1mTkJPaWxXc2JtU3JDSE9iU1ZpaVBzdk1ZQzBhWmdNdWM0QUI5ekF6UVprb21BWFV5MERiRFYvSjUzVXJkM2dCWDI1aUsyUnpaeXRwZUFNWGJsSXpDSE5YTkhoZEhqeFJRRUZEVmtkQlNseE9JaVFtS0VnaUdDNHdXRWcxTndNSklpRUFJZmtFQkF3QUFBQXNMUUFBQUJrQUNnQUFCVldnNTEwV2hsbVhxSzZJSVFnR29nSmRiUU9yNm14ODc0eTJZQ2ZGNmhrM0NJdlFac2taamowRFpsbkQ1QVJRbm1CS3RhNndXWUdTMmx3OXM0WUxkWmhEWkpFZW1oQ1g4K3lPUHhISmhLcXJNQzR3TWg0aEFDSDVCQVFNQUFBQUxEd0FBQUFLQUFvQUFBVWlvT2RkRm9aWmwrZ0JYZXNDb3l0MzVPeVdkbXZtM2NtanZCUnJCaE9SVENoUkNBQTcpO1xufVxuIiwiLm14LXJlbG9hZC1ub3RpZmljYXRpb24ge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICB6LWluZGV4OiAxMDAxO1xuICAgIHRvcDogMDtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBwYWRkaW5nOiAxcmVtO1xuXG4gICAgYm9yZGVyOiAxcHggc29saWQgaHNsKDIwMCwgOTYlLCA0MSUpO1xuICAgIGJhY2tncm91bmQtY29sb3I6IGhzbCgyMDAsIDk2JSwgNDQlKTtcblxuICAgIGJveC1zaGFkb3c6IDAgNXB4IDIwcHggcmdiYSgxLCAzNywgNTUsIDAuMTYpO1xuICAgIGNvbG9yOiB3aGl0ZTtcblxuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBmb250LXNpemU6IDE0cHg7XG59XG4iLCIubXgtcmVzaXplci1uLFxuLm14LXJlc2l6ZXItcyB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGxlZnQ6IDA7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgaGVpZ2h0OiAxMHB4O1xufVxuLm14LXJlc2l6ZXItbiB7XG4gICAgdG9wOiAtNXB4O1xuICAgIGN1cnNvcjogbi1yZXNpemU7XG59XG4ubXgtcmVzaXplci1zIHtcbiAgICBib3R0b206IC01cHg7XG4gICAgY3Vyc29yOiBzLXJlc2l6ZTtcbn1cblxuLm14LXJlc2l6ZXItZSxcbi5teC1yZXNpemVyLXcge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB0b3A6IDA7XG4gICAgd2lkdGg6IDEwcHg7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuLm14LXJlc2l6ZXItZSB7XG4gICAgcmlnaHQ6IC01cHg7XG4gICAgY3Vyc29yOiBlLXJlc2l6ZTtcbn1cbi5teC1yZXNpemVyLXcge1xuICAgIGxlZnQ6IC01cHg7XG4gICAgY3Vyc29yOiB3LXJlc2l6ZTtcbn1cblxuLm14LXJlc2l6ZXItbncsXG4ubXgtcmVzaXplci1uZSxcbi5teC1yZXNpemVyLXN3LFxuLm14LXJlc2l6ZXItc2Uge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB3aWR0aDogMjBweDtcbiAgICBoZWlnaHQ6IDIwcHg7XG59XG5cbi5teC1yZXNpemVyLW53LFxuLm14LXJlc2l6ZXItbmUge1xuICAgIHRvcDogLTVweDtcbn1cbi5teC1yZXNpemVyLXN3LFxuLm14LXJlc2l6ZXItc2Uge1xuICAgIGJvdHRvbTogLTVweDtcbn1cbi5teC1yZXNpemVyLW53LFxuLm14LXJlc2l6ZXItc3cge1xuICAgIGxlZnQ6IC01cHg7XG59XG4ubXgtcmVzaXplci1uZSxcbi5teC1yZXNpemVyLXNlIHtcbiAgICByaWdodDogLTVweDtcbn1cblxuLm14LXJlc2l6ZXItbncge1xuICAgIGN1cnNvcjogbnctcmVzaXplO1xufVxuLm14LXJlc2l6ZXItbmUge1xuICAgIGN1cnNvcjogbmUtcmVzaXplO1xufVxuLm14LXJlc2l6ZXItc3cge1xuICAgIGN1cnNvcjogc3ctcmVzaXplO1xufVxuLm14LXJlc2l6ZXItc2Uge1xuICAgIGN1cnNvcjogc2UtcmVzaXplO1xufVxuIiwiLm14LXRleHQge1xuICAgIHdoaXRlLXNwYWNlOiBwcmUtbGluZTtcbn1cbiIsIi5teC10ZXh0YXJlYSB0ZXh0YXJlYSB7XG4gICAgcmVzaXplOiBub25lO1xuICAgIG92ZXJmbG93LXk6IGhpZGRlbjtcbn1cbi5teC10ZXh0YXJlYSAubXgtdGV4dGFyZWEtbm9yZXNpemUge1xuICAgIGhlaWdodDogYXV0bztcbiAgICByZXNpemU6IHZlcnRpY2FsO1xuICAgIG92ZXJmbG93LXk6IGF1dG87XG59XG4ubXgtdGV4dGFyZWEgLm14LXRleHRhcmVhLWNvdW50ZXIge1xuICAgIGZvbnQtc2l6ZTogc21hbGxlcjtcbn1cbi5teC10ZXh0YXJlYSAuZm9ybS1jb250cm9sLXN0YXRpYyB7XG4gICAgd2hpdGUtc3BhY2U6IHByZS1saW5lO1xufVxuIiwiLm14LXVuZGVybGF5IHtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgdG9wOiAwO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICB6LWluZGV4OiAxMDAwO1xuICAgIG9wYWNpdHk6IDAuNTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzMzO1xufVxuIiwiLm14LWltYWdlem9vbSB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjOTk5O1xufVxuLm14LWltYWdlem9vbS13cmFwcGVyIHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLm14LWltYWdlem9vbS1pbWFnZSB7XG4gICAgbWF4LXdpZHRoOiBub25lO1xufVxuIiwiLm14LWRyb3Bkb3duIGxpIHtcbiAgICBwYWRkaW5nOiAzcHggMjBweDtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZHJvcGRvd24gbGFiZWwge1xuICAgIHBhZGRpbmc6IDA7XG4gICAgY29sb3I6ICMzMzM7XG4gICAgd2hpdGUtc3BhY2U6IG5vd3JhcDtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZHJvcGRvd24gaW5wdXQge1xuICAgIG1hcmdpbjogMDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1kcm9wZG93biAuc2VsZWN0ZWQge1xuICAgIGJhY2tncm91bmQ6ICNmOGY4Zjg7XG59XG4ubXgtc2VsZWN0Ym94IHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LXNlbGVjdGJveC1jYXJldC13cmFwcGVyIHtcbiAgICBmbG9hdDogcmlnaHQ7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuIiwiLm14LWRlbW91c2Vyc3dpdGNoZXIge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICByaWdodDogMDtcbiAgICB3aWR0aDogMzYwcHg7XG4gICAgaGVpZ2h0OiAxMDAlO1xuICAgIHotaW5kZXg6IDIwMDAwO1xuICAgIGJveC1zaGFkb3c6IC0xcHggMCA1cHggcmdiYSgyOCw1OSw4NiwuMik7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlci1jb250ZW50IHtcbiAgICBwYWRkaW5nOiA4MHB4IDQwcHggMjBweDtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgY29sb3I6ICMzODdlYTI7XG4gICAgZm9udC1zaXplOiAxNHB4O1xuICAgIG92ZXJmbG93OiBhdXRvO1xuICAgIGJhY2tncm91bmQ6IHVybChkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQU9nQUFBQmdDQVlBQUFBWFNqN05BQUFBR1hSRldIUlRiMlowZDJGeVpRQkJaRzlpWlNCSmJXRm5aVkpsWVdSNWNjbGxQQUFBQXlScFZGaDBXRTFNT21OdmJTNWhaRzlpWlM1NGJYQUFBQUFBQUR3L2VIQmhZMnRsZENCaVpXZHBiajBpNzd1L0lpQnBaRDBpVnpWTk1FMXdRMlZvYVVoNmNtVlRlazVVWTNwcll6bGtJajgrSUR4NE9uaHRjRzFsZEdFZ2VHMXNibk02ZUQwaVlXUnZZbVU2Ym5NNmJXVjBZUzhpSUhnNmVHMXdkR3M5SWtGa2IySmxJRmhOVUNCRGIzSmxJRFV1TXkxak1ERXhJRFkyTGpFME5UWTJNU3dnTWpBeE1pOHdNaTh3TmkweE5EbzFOam95TnlBZ0lDQWdJQ0FnSWo0Z1BISmtaanBTUkVZZ2VHMXNibk02Y21SbVBTSm9kSFJ3T2k4dmQzZDNMbmN6TG05eVp5OHhPVGs1THpBeUx6SXlMWEprWmkxemVXNTBZWGd0Ym5NaklqNGdQSEprWmpwRVpYTmpjbWx3ZEdsdmJpQnlaR1k2WVdKdmRYUTlJaUlnZUcxc2JuTTZlRzF3UFNKb2RIUndPaTh2Ym5NdVlXUnZZbVV1WTI5dEwzaGhjQzh4TGpBdklpQjRiV3h1Y3pwNGJYQk5UVDBpYUhSMGNEb3ZMMjV6TG1Ga2IySmxMbU52YlM5NFlYQXZNUzR3TDIxdEx5SWdlRzFzYm5NNmMzUlNaV1k5SW1oMGRIQTZMeTl1Y3k1aFpHOWlaUzVqYjIwdmVHRndMekV1TUM5elZIbHdaUzlTWlhOdmRYSmpaVkpsWmlNaUlIaHRjRHBEY21WaGRHOXlWRzl2YkQwaVFXUnZZbVVnVUdodmRHOXphRzl3SUVOVE5pQW9UV0ZqYVc1MGIzTm9LU0lnZUcxd1RVMDZTVzV6ZEdGdVkyVkpSRDBpZUcxd0xtbHBaRG8wTXprd09UUkVNRFEyTkVZeE1VVTBRVFE0TVVJNU5UTkdNVVEzUXpFNU55SWdlRzF3VFUwNlJHOWpkVzFsYm5SSlJEMGllRzF3TG1ScFpEbzBNemt3T1RSRU1UUTJORVl4TVVVMFFUUTRNVUk1TlROR01VUTNRekU1TnlJK0lEeDRiWEJOVFRwRVpYSnBkbVZrUm5KdmJTQnpkRkpsWmpwcGJuTjBZVzVqWlVsRVBTSjRiWEF1YVdsa09qYzBSRU15TVVaR05EWTBRekV4UlRSQk5EZ3hRamsxTTBZeFJEZERNVGszSWlCemRGSmxaanBrYjJOMWJXVnVkRWxFUFNKNGJYQXVaR2xrT2pjMFJFTXlNakF3TkRZMFF6RXhSVFJCTkRneFFqazFNMFl4UkRkRE1UazNJaTgrSUR3dmNtUm1Pa1JsYzJOeWFYQjBhVzl1UGlBOEwzSmtaanBTUkVZK0lEd3ZlRHA0YlhCdFpYUmhQaUE4UDNod1lXTnJaWFFnWlc1a1BTSnlJajgrZzF0Umx3QUFFRkZKUkVGVWVOcnNuWWwzVmNVZHgyZHU4ckpESUpDd0NnalZhclZvc1ZYYzZqbldubnBJUWxKV2w2T0NyUFlma2gxY2l1d2xMRm81dFQzbFZKUlZFVVVFUlFRSlM0Q1FRRWpDUzk3MCs1Mlo5M0lUREd1Uzk4ajcvVGp6N3IyL2U5OTlaTzU4N205K003K1owY05YYnNxS2FUTmVLVlZvbEttT0tiWDM5RXNWS2wxRVY2MklLSzN3QjV1SGNZZy8zM3lDNHgybS9FMmpSRVNTTE1HSmw4dXZZcnNIaWR1aFNBK21Vd2FZaWhsUk0zSEdPdXp1Wlg0Zy9SbHBpdDY4TkZ1S2gwalNEWWd4emxBTVc3V3BDQmIwNlJqTmlEWUh6azZ2UEpaMm1iRnArYStKTEN4b0hyYm5vVnB0eW1lZGxXSWlrblJBS1VOWFZRMERvT01BcUlKMlg4MzB5cFBwQitteVFsL2xIWTNES0xaYlRmbnNMNldvaUNRZFVNcmdWVlZqQWVoSWFHTXhaWGFlbi83WGMybVpNWnVYVm1MenFGSTJmL1lCMm85TTJleW9GQm1ScEFKS0tWbTk4UkZvUndCUUZzZ2RnTFErVFNFZEIwQkxzWnNCUUd1d3Y4NlV6VGtqeFVZa3FZQlNpbGR2SEFkQWgyRzNDUloxUisyMFNRM3BDZW1TZ2RpVUFkQlJBTFFGKzl1UWRnTlVhZVVWU1I2Z2xBR3IvL0U0Tm9NQWFBTjgweDExMHlZMXBXMUdiVmxDdi9SMy92QVE5amVac3JsWHBBaUpkS2NFTnpqUDdoZFU3VlErMGhOOTFxeVBwR3RHd2Yrc3dvYmRNWmVRSGtENm05Nnk2SDRwUWlKSnM2RGVpa1pnUVIrSEJTMUNsYmZXYVBQWjVhbFRXdFBYa2k0dXNGVmVaUjV3Q3ZhZm1vOU42YnlyVXB4RWVoeFFTdjgxRzNJQUtDQTFoUUQwSFBaM1hVbGpTQjJvaTU3QjVua0FpbHFJdVlEOWpZRDB1QlFwa1I0SGxGSzRaa01lQUIwUFFQTUI2TmxXWlhZM1Q1MGFTM05JaXdIb2l3QjBqSEw5TWJ1UVBoRnJLdExqZ0ZMZ2crWUQwUEdnTWcrQW5zRjJUelROSWJXWnVIVWhxcnpxOS82dzFqWWdsYzcvVVlxWFNJOENTaWxZdTQ0VzlDa0F5bXJ2S2ZpbmUxdW5URE1DNmNJaDJQd0o2VmNBbFBteEY5YjFYMmJDL0NZcFppSTlCaWdsRDVDMnVyamRiQUJhRGRVK2dUUnNUWTJ6cHRxMitQNFRrSDRqT1NQU1k0QlNzdGV1TFFDZ1R3UFFMQnhXd3ovZFo2Wk1GMGd0cEF0S3NIa0JnTWE3WVk0QTJnL05oTGRxSlhkRWVnUlFTb1NRYXNQV3pBZ0FQVVZMQ2toamtxMCtjejljOEFRMlR5TDFVeTVzY2p2U0RvRGFLcmtqMHUyQVVqTFdyV0cvNEZNQWxPTW56K0NPZTh6a2x3VFNOa2laTHhNQTZDTmV4UzZaandEcEVja2RrVzRIMUVPYUQwQ2Z3bTRPN3NqeGs0UlVyRVE3VU4rK2p5OHlwSHU5Nmp1a2p3SHFCY2tka1c0RjFONW8zV3FHQTQ3SEhmT1VEUTgwdTgza2x3WFNhMEY5RnBzL0lQVlZkcnlwK3N4WGU2VzFWNlQ3QUUxQXFnMzlybndmWGJNTGtNb1l5bXNoemNYbUw4cU9ON1hDb1B2L0lPMEZxT0llaUhRUG9QYUc2MWZsT1F0aGFDSHE4QXM3emFSWG1pV3JmeEhVVWI3YUcyL3Q1Y0NFYmVLZmluUWJvQjdTSE44WDJCKy93SEdrbndOU0daclZPYWkveGVZeHBGRmU5Wk5peU9DRXR5UzJWd0R0bnE1THZmNkRMRnZvdE9HQVovaFhCcEMrZWtteS9JYitLV0V0OGFyRFNQOEdxS2NsZHdUUTdvQTBFNy9BUWM2RGZUL2dia0I2WHJMOXVwQnE1VUlHQ1dxaGNrSDRqRVQ2TDBDdGtSd1NRTHYrUnphczVOdytuRDRscG9MWUY2Ynl0V3JKK2h1Q0NqZEJ2YURhZ3ZBOXFCcWd6aGRRQmRDdWh2VHY3S2dmQVVENWd3Y0I2VkhKL3BzQ2xZMXR6M2tmMVQ0eWIxRzNBMVNaczFjQTdWSkl4d0xRa2Q0Z0hIV2d2aTd4dTdjRXFuNHNaRkhwbzM0S1VLVXhTUUR0b2gvYytONFFWMjJ6djN0S2FmV0ZxWGhkQWhwdUd0UUZCUFdQb2FvdnM1S0EvZy9waUNtZEx5ODhBZlNPSVdYd09BTWFzZ0RvUmV6dk1oVnZTRi9wcllIS1lJZW5rZTREb0lPOG1sWGVuVGo3bFNtZEp3RWlBdWlkUVBwdXZ2V3JORnNxRGNQY2RnTFNlbmtrdDVHWFd4YzhZMEZWeXJzUG1uM09YQXhxRjBDVnJpMEI5TFlocFFYbDhncTBBQzJLWTBvclpzak03YmNQS2h2aXhtSnZqRmZSZFRpbzJMMGxFNW9Kb0xmOW42aDZoMzJsdy8xVUlkOEMwaC9rMGR3SnFBdHBTVG5wK0VNaExhdS91NUVPbU5LNUVwZ3ZnTjR5cEhqekcxZEYwK29rOXZlYmlUT2w4ZWpPUUdXZ0EwZk9qTURSQ0srK0NwLzFBTFpmbXJLNUp5U1hCTkJiZ0hURllNVVJIbHBGQUdpZHJacE5uTmtvajZrcllGM0V5Q1NtKzFYaWtXdXVYTWVsRmZlYnNqbmlxd3FnTndWcEhnQmw1RkYvKzdaWFpvK1orS2FFQjNZZHFNVUE5RkZ2VmUveGFnNXhvMXZ4RlhTSFpKbEZBZlQ2LzZsTkt6SUJKZ3ZSRU8rWEhnU2tFbm5VMWZtOFpUR0h1VDNTd1ZkbEZmZ1FmVldrbzZaOHRyZ1pBbWhub0M1SDRURWp2RjlhYmYzUzhsa3Q4dGk2SEZUT216UlcyVVdoOUppMktqQUhrdXR2bFdzSlBvYThGMWdGMEk2UUxodGlDNDlXV1FDMHdmcWw1YlBFWCtvMldKZjBBNkQwVlVjck8zK1NqcDlxeFA1M09FZGdmMENOUmw2VUFtZ0MwbHlVRTFyVFltWDc5c3dCVkwya0JiSzc4MzN6RXVTMy9vMXlBOGtkcks2NHdFZlZkRGtZQzN6WVRKd3BMOHgwQnJTdHdDeWxYM3FQTHlYSFVWNitObVhpSS9WUTNoZmg4MEZrL1JoblhST1dsUS9qRkk2UFlJOE5UVCtiaWhreXIxSTZBdW9MQ254U3d5cFlnREp5R2Z0N1Rka2NDUkhzNlJxTjBteGdZdklOVEFucjJvejlZOHExQ2g4MUZXK2NreHhMSTBCOTFhdkErNlVEVUNyNHR2NEdrQjZUeDVrTVdKZHJWd1cyalV0czBCc1JzcTY4NGhMMFA5a2Fqd08zeGxTK0ppTnVlak9nb1FZTnh2SEcrL0k0Ync4NzNHVnR6bVErazZvVnVUNFdlTFNIZFdBb01JSWZET1Evb1dMQno2d09RMWN0c3o3MlVrQWRwSXM1bFFvYk1qaEZTQ09BWlFpYlZLdFNCdGgzKzNyTE9zcUhHN29KMFdKQi9BcldnR284cktkd0xWKzBaMlErNVY0Q3FJYzBSN2wrdkVIZUVUcUtsL1VoVXpwWEdwQlM3Vmx0ZkkvRERJY0QwT0hLTnZqcFVhR3pjVDgyNXNNUUFhcytBeDBEL1dzQ3BldlNiWm5MWGdGb0NOUnd3RDJiL3I4QXBIV0NSUW8vc3cwcmFVcUxMYlJLRHdXTWpNY2UxdWJISnFCbHErQlZEMm9OZEJmd3hRc1pTbk1GZ3d0WHBrNXBFa0R2Q2tnWGNRVEhRNjRCaVc5aXc3NjY3MDNwUEdtWXVGdWU0Zm9QTXF6dmFxZHIxU1dBa2RYaVlvRFp6NE5xb1NYWkdSN2tER01IcWRkQ1YwOUxpLzJMZ2RGczNlZHhQYTY2Y25aNjVWMFJYUEhraXUyWitMdnp0VkY5ZWgyZ2lZZThkWkdiUmRDOWZpOHFOaUNWenBQdW1MdFlNdGF0eWZLZ011Qy9DREFXQWRBaXhhM1JPUTVlRHpDM1JzY3RiOXdlTjBGM09YQWhqQTJFRnNlMHZFM2FUcTZ1bTNDdVVSdE4vemVLL1didGZPU3IwTVZDOTJvKzlPcUw3ZnA2SDM1L1c0RC9VN1pPL0xvT3NNMENaTmhxNkRsQ1MwZXd6Y1YxT2REeC81dURxN0d2OHFETGc0N1Yvd0p0MjFPMG5iK3gxd0xxSVVYVnlUeWc3QUs2ZHNRR1Y3cUdOWjB2SGVtOVRQcXNXYy9DM1E5UUZhTFFzeFpWQ1BnNHdWcGZIUGZWZGtFdmxVRm9BMTkxMWlHSTQ1K0JyVmJHd1ZZSnRQVzFzRnRkK0Y2MEJTRkE3ZFpDMW5hWDBIVWQ3aGZTYVJzdGh4ZUlVZlg2K2NXZjI3UEdmeG9kUDhKV3U3MlkxYnR6aVd2dE9XTkxmZnc2NC8vRmRIdy9acjhUaTkveG11KzA3Y2V2aVlYMEhmZGpmcjhWKzYzdDlQRy9NUDZ5TVNyeFZ6TmxYL2JXMU9wb1JiOVVMYmwxMTE3YnlYSGlDWVpmWnAzcE81N3JvTHZ6MTg2MUtuTVQxNFIxNWdiWG1jN3VwYS96M2M3T2RhSnZhOFc5d2JYdGZGQjFuU3F1dWdrTG1nTmRRVUNMcFRRdFZXN2dMRyt1dDFxd2FMQnVSc1BhcVlqZFY1cGZoU1hVR2FGNzBaSUhIUUJsOGJ3YUFyUlZXOHRMQkRRdE5NTWpvOVpTRzFwc1o3bHhkYU5tNzROUnNPaWFzZWFYdlRXM3hUa3pMVjZ2elFYN0FTbG5zMmZrQzZ0RXo2ck14dStSQjBkVU5FZGFldE5IbW55NmF5UkltMGNUemF0QitsVFppQmI3a3VNc2VNK3BTRk94bEZzUkFUUjFRTjJQengzS2RZNjdWY0V6bThhcHpPWnNLUTRpS2RlTzBwc2JpVzc0eDMrNGdGVmVocVRSNTRDUFlEalc4YmlaOEpaMHlZZ0lvQ2tDS1dkbzU0aU1JYjQxb2hicGEwQjZVWXFIaUFDYU9xQnlYbDVhMC9pYW5Cd1EvaTFBbGVCN0VRRTBkVUI5bXpHOUkrTWVLOUozaXZQeFNMVlhSQUJOR1VnNTN2UkJaVVBOckxEdjlLQ3NjQzBpZ0tZV3FFT1ZuWXZIOXAxU3pucFFaUTRlRVFFMGhVQmxueWtqa2ZLOGY4b1pBZzREVkJsb0xDS0FwZ2lrakxwNlNDVkNCcmthbS9vZTZVZUFLbE5RaWdpZ0tRSXFBN0RaZnpyRXEyaEZqOUNxQWxRSndoY1JRRk1FMUJMdm41WjRGY2Nqc3NYM3BMVDRpZ2lncVFNcUc1TFlMVFBRcXk1NVVFOExxQ0lDYU9xQVN0K1U4K3dNOEtwNlgvVTlKYUNLQ0tDcEErcG83NThXdFZsVWZkaUJPbDh5VzBRQVRSRlE2WjhPZGFEcWVOV1hyYjdWQUZVYWswUUUwTlFCVlE4SlZYMjVZdmdQeXFqanBuUytEQllYRVVCVEE5UUZJNzFGZFkxSmhxdUhxeCtaQUtwTTBpd2lnS1lJcUlSMEJBQ056K1JBSzNxQ3kvbVowbmtOa2tNaUFtZ3FaUHpXQlFSMGxFb0U1TnNaenhpTXozVTNhd0NyWkpLSUFKb0NvREl5NlY2L2JrbGNMbmxRVHdKVThWTUZVSkhrZzdxUXNiN3NvcUZsalhmUlJIMzE5eWRUT3ZleTVKSUFLcElhc0RMZ1liaUhWZmx1bXZOSXg3ajZseW1iSzkwMEFxaElDb0JhcU5xVzdYTmliSEErcDJNNUFWREZxZ3FnSXNrSGRaRmZ4Vm9OQnFBRFEyZHFQYXpWcG15T2ROVUlvQ0pKZjJCYkZ0RS92Y2Y1cWJyQXE5bVFkTnI3cStkTTJXeDVxQUtvU1BKaFhVdy9sZjJxZzBKYUxtMVFEVXQ3MHBUUGxxbERCVkNSRkFBMTExdFZWSC8xQU8rclVoajRjQkk2d0RwTC9GVUJWQ1Q1c0M3aFVvdkR1SDZtY3NzdXFsQ3cvaWttd0NycnBBcWdJa2wvdUp1WERGUnVPWG5DV2hBNjAyQmhOWW9ydnRXWmlXOUtaZ21nSXNtRmRTbGg5ZU5VN2NLMjhXb3cxNkxrZEtKbkZFTU1KODZVeUNVQlZDUzVzQzRyc3JBYU93U3VNTFNJTGdNZ3p1SDRETTZkTlJVenJraHVDYUFpeVN3QW01YWg2cXZaQ2x5c3dwRkxiWTFNTlRobUVQOTVVL0dHOUxVS29DTEpnM1U1NDRFQnF5N3gxalUzQWF4RDlxSUg5anlPYWszbDYxSWRGa0JGa2xZNHFsYjBkVmJWZHQyRSsxcUphOHdCcXhramZJSEpWTDRtRTNnTG9DTEpnZlVkcnNaTzMzV0FiUlZPaEJ3bS9GY1VwS0FlMk5aNlM0dXR2bXdtdlNLWko0Q0s5SGpCMmZndWdlM25yU3ZCTFFHZ3JwbXA3YXFvQTlWYTJqb2dYR2Ntdjl3b3VTZUFpdlE0c08vQmxBWjlBV2gvSFBiMzhCWjBxQlpUb2haV1oyWHJzVjhQZllPWk1sMkcwQW1nSWoxYXVEYXNqSVJnN1FjUTZkUG1ocXJGWVgvMkNtR0ZEV1pJNHFWQTZVc0VOenAxYWt3QUZSSHBxUUszL29Nc2ZIS2NLMU5mR3pSaFZKODRySUcvTG5EZ21zQUZValJrdUxWdkdqS01qWUpxZ0w2eGJ0cmtxQUFxSXRMZGhYRGRhbktaajcwK2dRdEp4RmIzSWJpQkJ6ZkRYd3RBUGNCVzN4SzRlWWFiQXFPNWJmUkFOMnUzNmx3ejlNMm5YNnE0SzYzdytCWGJBd0ZVSkdVbHNuYXRCbkE1QUM0L3d3S3M4Z0VvdDNtQnF5cEhFaGEzUGJpSlNqVDFnWnZiQ2RCcXprVWNoWTdIVVczWGVOVlJmNzVGRzgxdUl1T09OZThZWmZVYjMydnRjTytXUTYrKzJBNmNoOS9meHAvTTFDWitsZjNNME81ckVmd21WUkZ0VCtsTWZHVGFZNlBwQm1UaW9peXY1M0dXTWpwYjIvTUNxTWhkS29Wck5tUTZVRlV1QU1peFd3ZHVGZ3AzTm81em9NOEtQRnR4Yk9NdzZ3N1ZhdjFMa0p2UTkwSjYzY2tMb1FPZzdWNFV2NlR2N0Q0QWxQc3hBVlNrMTh2UVZWVzBTckJJT3N0YnM0aTNaaEZ2aGVQV2pEWHB3QjNyd0ZvNW83QzErakJFc0pUV0lvWjF4bG5oZG9DMmF0ZngxSUxmdEZ0M2JQVnhxMjJ0dWJmYVVhKy9Da0NiZDg3NFkvVC9BZ3dBMk1pN0hkQWUraWtBQUFBQVNVVk9SSzVDWUlJPSkgdG9wIHJpZ2h0IG5vLXJlcGVhdCAjMWIzMTQ5O1xuICAgIC8qIGJhY2tncm91bmQtYXR0YWNoZW1lbnQgbG9jYWwgaXMgbm90IHN1cHBvcnRlZCBvbiBJRThcbiAgICAgKiB3aGVuIHRoaXMgaXMgcGFydCBvZiBiYWNrZ3JvdW5kIHRoZSBjb21wbGV0ZSBiYWNrZ3JvdW5kIGlzIGlnbm9yZWQgKi9cbiAgICBiYWNrZ3JvdW5kLWF0dGFjaG1lbnQ6IGxvY2FsO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXIgdWwge1xuICAgIHBhZGRpbmc6IDA7XG4gICAgbWFyZ2luLXRvcDogMjVweDtcbiAgICBsaXN0LXN0eWxlLXR5cGU6IG5vbmU7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkICM0OTYwNzY7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBhIHtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICBwYWRkaW5nOiAxMHB4IDA7XG4gICAgY29sb3I6ICMzODdlYTI7XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICM0OTYwNzY7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBoMiB7XG4gICAgbWFyZ2luOiAyMHB4IDAgNXB4O1xuICAgIGNvbG9yOiAjNWJjNGZlO1xuICAgIGZvbnQtc2l6ZTogMjhweDtcbn1cbi5teC1kZW1vdXNlcnN3aXRjaGVyIGgzIHtcbiAgICBtYXJnaW46IDAgMCAycHg7XG4gICAgY29sb3I6ICM1YmM0ZmU7XG4gICAgZm9udC1zaXplOiAxOHB4O1xuICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICAgIHRleHQtb3ZlcmZsb3c6IGVsbGlwc2lzO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXIgLmFjdGl2ZSBoMyB7XG4gICAgY29sb3I6ICMxMWVmZGI7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBwIHtcbiAgICBtYXJnaW4tYm90dG9tOiAwO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXItdG9nZ2xlIHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgdG9wOiAyNSU7XG4gICAgbGVmdDogLTM1cHg7XG4gICAgd2lkdGg6IDM1cHg7XG4gICAgaGVpZ2h0OiAzOHB4O1xuICAgIG1hcmdpbi10b3A6IC00MHB4O1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAzcHg7XG4gICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogM3B4O1xuICAgIGJveC1zaGFkb3c6IC0xcHggMCA1cHggcmdiYSgyOCw1OSw4NiwuMik7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBQklBQUFBU0NBWUFBQUJXem81WEFBQUFHWFJGV0hSVGIyWjBkMkZ5WlFCQlpHOWlaU0JKYldGblpWSmxZV1I1Y2NsbFBBQUFBeVJwVkZoMFdFMU1PbU52YlM1aFpHOWlaUzU0YlhBQUFBQUFBRHcvZUhCaFkydGxkQ0JpWldkcGJqMGk3N3UvSWlCcFpEMGlWelZOTUUxd1EyVm9hVWg2Y21WVGVrNVVZM3ByWXpsa0lqOCtJRHg0T25odGNHMWxkR0VnZUcxc2JuTTZlRDBpWVdSdlltVTZibk02YldWMFlTOGlJSGc2ZUcxd2RHczlJa0ZrYjJKbElGaE5VQ0JEYjNKbElEVXVNeTFqTURFeElEWTJMakUwTlRZMk1Td2dNakF4TWk4d01pOHdOaTB4TkRvMU5qb3lOeUFnSUNBZ0lDQWdJajRnUEhKa1pqcFNSRVlnZUcxc2JuTTZjbVJtUFNKb2RIUndPaTh2ZDNkM0xuY3pMbTl5Wnk4eE9UazVMekF5THpJeUxYSmtaaTF6ZVc1MFlYZ3Ribk1qSWo0Z1BISmtaanBFWlhOamNtbHdkR2x2YmlCeVpHWTZZV0p2ZFhROUlpSWdlRzFzYm5NNmVHMXdQU0pvZEhSd09pOHZibk11WVdSdlltVXVZMjl0TDNoaGNDOHhMakF2SWlCNGJXeHVjenA0YlhCTlRUMGlhSFIwY0RvdkwyNXpMbUZrYjJKbExtTnZiUzk0WVhBdk1TNHdMMjF0THlJZ2VHMXNibk02YzNSU1pXWTlJbWgwZEhBNkx5OXVjeTVoWkc5aVpTNWpiMjB2ZUdGd0x6RXVNQzl6Vkhsd1pTOVNaWE52ZFhKalpWSmxaaU1pSUhodGNEcERjbVZoZEc5eVZHOXZiRDBpUVdSdlltVWdVR2h2ZEc5emFHOXdJRU5UTmlBb1RXRmphVzUwYjNOb0tTSWdlRzF3VFUwNlNXNXpkR0Z1WTJWSlJEMGllRzF3TG1scFpEbzNORVJETWpGR1JEUTJORU14TVVVMFFUUTRNVUk1TlROR01VUTNRekU1TnlJZ2VHMXdUVTA2Ukc5amRXMWxiblJKUkQwaWVHMXdMbVJwWkRvM05FUkRNakZHUlRRMk5FTXhNVVUwUVRRNE1VSTVOVE5HTVVRM1F6RTVOeUkrSUR4NGJYQk5UVHBFWlhKcGRtVmtSbkp2YlNCemRGSmxaanBwYm5OMFlXNWpaVWxFUFNKNGJYQXVhV2xrT2pjMFJFTXlNVVpDTkRZMFF6RXhSVFJCTkRneFFqazFNMFl4UkRkRE1UazNJaUJ6ZEZKbFpqcGtiMk4xYldWdWRFbEVQU0o0YlhBdVpHbGtPamMwUkVNeU1VWkRORFkwUXpFeFJUUkJORGd4UWprMU0wWXhSRGRETVRrM0lpOCtJRHd2Y21SbU9rUmxjMk55YVhCMGFXOXVQaUE4TDNKa1pqcFNSRVkrSUR3dmVEcDRiWEJ0WlhSaFBpQThQM2h3WVdOclpYUWdaVzVrUFNKeUlqOCsxWm92TkFBQUFXZEpSRUZVZU5xTTFNMHJSRkVZeC9FN1k1cUlRcE9VYklpeW1RV3lzQmd2SlZKSzJWZ3J5WlF0S1NVTFplbFBzQjBMWmFOWmpKVU5LMUZza0pxVXZDUzNOQXNaYzN6UDlOemlPT2ZlZWVwVGM4L2M4K3ZjOHhaVFNubU9ha0VHS2R6Z0RCWFh5NTRPTXNTd2pwTDZXOWNZc3J4ZlpXdmNVdTd5MFZkTFVDYytWWGdkMm9MaXhwZk9JT21GMTdUdEhUT296WXV1cEN4QWFOQjlEVUVmZURVYkU4YnpFWHhaZXJQMDBsOGhoM0xVaUhUSU1yNk45ajJrc1lvaWh2LzFkZXlMU1Z6S0ttMWpFVytXZlpWMkxmOGdza2pJY3djV3BPTSsrcEhDRlBMb3NnV3RvQ3lkN2pDUE9qemhHSEhMeURQWTFhY2hhSmhEeFJqNnJCd0pYVXVvTjBJRzhJSXY3T2lHQmp4YWR2QUlUdVQzcmV4NmMwU2JLQVNmbG5VY0JUM0pUVGhBanlXa0dVVnNCRUVGUjVDZXJ6WHBOSWFjckZJckpuQ0JCM211QnZraEIxVFAyN2hNL0x2eDN6bDZneEhxdTZjNzRraVU4SXhHaktKZExyclQzeGZkandBREFKYU14UDJidkQyQkFBQUFBRWxGVGtTdVFtQ0MpIGNlbnRlciBjZW50ZXIgbm8tcmVwZWF0ICMxYjMxNDk7XG59XG4iLCIvKiBtYXN0ZXIgZGV0YWlscyBzY3JlZW4gZm9yIG1vYmlsZSAqL1xuLm14LW1hc3Rlci1kZXRhaWwtc2NyZWVuIHtcbiAgICB0b3A6IDA7XG4gICAgbGVmdDogMDtcbiAgICBvdmVyZmxvdzogYXV0bztcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGJhY2tncm91bmQtY29sb3I6IHdoaXRlO1xuICAgIHdpbGwtY2hhbmdlOiB0cmFuc2Zvcm07XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLXNjcmVlbiAubXgtbWFzdGVyLWRldGFpbC1kZXRhaWxzIHtcbiAgICBwYWRkaW5nOiAxNXB4O1xufVxuXG4ubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgb3ZlcmZsb3c6IGF1dG87XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICNjY2M7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI2Y3ZjdmNztcbn1cblxuLm14LW1hc3Rlci1kZXRhaWwtc2NyZWVuLWhlYWRlci1jYXB0aW9uIHtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgZm9udC1zaXplOiAxN3B4O1xuICAgIGxpbmUtaGVpZ2h0OiAyNHB4O1xuICAgIGZvbnQtd2VpZ2h0OiA2MDA7XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLXNjcmVlbi1oZWFkZXItY2xvc2Uge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBsZWZ0OiAwO1xuICAgIHRvcDogMDtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgd2lkdGg6IDUwcHg7XG4gICAgYm9yZGVyOiBub25lO1xuICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgIGNvbG9yOiAjMDA3YWZmO1xufVxuXG5ib2R5W2Rpcj1cInJ0bFwiXSAubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyLWNsb3NlIHtcbiAgICByaWdodDogMDtcbiAgICBsZWZ0OiBhdXRvO1xufVxuXG4ubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyLWNsb3NlOjpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXFwyMDM5XCI7XG4gICAgZm9udC1zaXplOiA1MnB4O1xuICAgIGxpbmUtaGVpZ2h0OiAyNHB4O1xufVxuXG4vKiBjbGFzc2VzIGZvciBjb250ZW50IHBhZ2UgKi9cbi5teC1tYXN0ZXItZGV0YWlsLWNvbnRlbnQtZml4IHtcbiAgICBoZWlnaHQ6IDEwMHZoO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLWNvbnRlbnQtaGlkZGVuIHtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTIwMCUpO1xufVxuXG5ib2R5W2Rpcj1cInJ0bFwiXSAubXgtbWFzdGVyLWRldGFpbC1jb250ZW50LWhpZGRlbiB7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKDIwMCUpO1xufSIsIi5yZXBvcnRpbmdSZXBvcnQge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIC13ZWJraXQtYm9yZGVyLXJhZGl1czogM3B4O1xuICAgIC1tb3otYm9yZGVyLXJhZGl1czogM3B4O1xuICAgIGJvcmRlci1yYWRpdXM6IDNweDtcbn1cbiIsIi5yZXBvcnRpbmdSZXBvcnRQYXJhbWV0ZXIgdGgge1xuICAgIHRleHQtYWxpZ246IHJpZ2h0O1xufVxuIiwiLnJlcG9ydGluZ0RhdGVSYW5nZSB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdGFibGUtbGF5b3V0OiBmaXhlZDtcbn1cbi5yZXBvcnRpbmdEYXRlUmFuZ2UgdGgge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZWVlO1xufVxuLnJlcG9ydGluZ0RhdGVSYW5nZSB0ZCB7XG4gICAgcGFkZGluZzogNXB4O1xufVxuIiwiLm14LXJlcG9ydG1hdHJpeCB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbWF4LXdpZHRoOiAxMDAlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0aCwgLm14LXJlcG9ydG1hdHJpeCB0ZCB7XG4gICAgcGFkZGluZzogOHB4O1xuICAgIGxpbmUtaGVpZ2h0OiAxLjQyODU3MTQzO1xuICAgIHZlcnRpY2FsLWFsaWduOiBib3R0b207XG4gICAgYm9yZGVyOiAxcHggc29saWQgI2RkZDtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0Ym9keSB0cjpmaXJzdC1jaGlsZCB0ZCB7XG4gICAgYm9yZGVyLXRvcDogbm9uZTtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0Ym9keSB0cjpudGgtY2hpbGQoMm4rMSkgdGQge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNmOWY5Zjk7XG59XG5cbi5teC1yZXBvcnRtYXRyaXggdGJvZHkgaW1nIHtcbiAgICBtYXgtd2lkdGg6IDE2cHg7XG4gICAgbWF4LWhlaWdodDogMTZweDtcbn1cbiIsIi8qIFdBUk5JTkc6IElFOSBsaW1pdHMgbmVzdGVkIGltcG9ydHMgdG8gdGhyZWUgbGV2ZWxzIGRlZXA6IGh0dHA6Ly9qb3JnZWFsYmFsYWRlam8uY29tLzIwMTEvMDUvMjgvaW50ZXJuZXQtZXhwbG9yZXItbGltaXRzLW5lc3RlZC1pbXBvcnQtY3NzLXN0YXRlbWVudHMgKi9cblxuLyogZGlqaXQgYmFzZSAqL1xuXG4vKiBtZW5kaXggYmFzZSAqL1xuXG4vKiB3aWRnZXRzICovXG5cbi8qIHJlcG9ydGluZyAqL1xuIl0sInNvdXJjZVJvb3QiOiIifQ==*/\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n@mixin animations() {\r\n @keyframes slideInUp {\r\n from {\r\n visibility: visible;\r\n transform: translate3d(0, 100%, 0);\r\n }\r\n\r\n to {\r\n transform: translate3d(0, 0, 0);\r\n }\r\n }\r\n\r\n .animated {\r\n animation-duration: 0.4s;\r\n animation-fill-mode: both;\r\n }\r\n\r\n .slideInUp {\r\n animation-name: slideInUp;\r\n }\r\n\r\n @keyframes slideInDown {\r\n from {\r\n visibility: visible;\r\n transform: translate3d(0, -100%, 0);\r\n }\r\n\r\n to {\r\n transform: translate3d(0, 0, 0);\r\n }\r\n }\r\n\r\n .slideInDown {\r\n animation-name: slideInDown;\r\n }\r\n\r\n @keyframes fadeIn {\r\n from {\r\n opacity: 0;\r\n }\r\n\r\n to {\r\n opacity: 1;\r\n }\r\n }\r\n\r\n .fadeIn {\r\n animation-name: fadeIn;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n/* ==========================================================================\r\n Flex\r\n\r\n Flex classes\r\n========================================================================== */\r\n@mixin flex() {\r\n $important-flex-value: if($important-flex, \" !important\", \"\");\r\n\r\n // Flex layout\r\n .flexcontainer {\r\n display: flex;\r\n overflow: hidden;\r\n flex: 1;\r\n flex-direction: row;\r\n\r\n .flexitem {\r\n margin-right: $gutter-size;\r\n\r\n &:last-child {\r\n margin-right: 0;\r\n }\r\n }\r\n\r\n .flexitem-main {\r\n overflow: hidden;\r\n flex: 1;\r\n }\r\n }\r\n\r\n // These classes define the order of the children\r\n .flex-row {\r\n flex-direction: row #{$important-flex-value};\r\n }\r\n\r\n .flex-column {\r\n flex-direction: column #{$important-flex-value};\r\n }\r\n\r\n .flex-row-reverse {\r\n flex-direction: row-reverse #{$important-flex-value};\r\n }\r\n\r\n .flex-column-reverse {\r\n flex-direction: column-reverse #{$important-flex-value};\r\n }\r\n\r\n .flex-wrap {\r\n flex-wrap: wrap #{$important-flex-value};\r\n }\r\n\r\n .flex-nowrap {\r\n flex-wrap: nowrap #{$important-flex-value};\r\n }\r\n\r\n .flex-wrap-reverse {\r\n flex-wrap: wrap-reverse #{$important-flex-value};\r\n }\r\n\r\n // Align children in both directions\r\n .flex-center {\r\n align-items: center #{$important-flex-value};\r\n justify-content: center #{$important-flex-value};\r\n }\r\n\r\n // These classes define the alignment of the children\r\n .justify-content-start {\r\n justify-content: flex-start #{$important-flex-value};\r\n }\r\n\r\n .justify-content-end {\r\n justify-content: flex-end #{$important-flex-value};\r\n }\r\n\r\n .justify-content-center {\r\n justify-content: center #{$important-flex-value};\r\n }\r\n\r\n .justify-content-between {\r\n justify-content: space-between #{$important-flex-value};\r\n }\r\n\r\n .justify-content-around {\r\n justify-content: space-around #{$important-flex-value};\r\n }\r\n\r\n .justify-content-evenly {\r\n // Not Supported in IE11\r\n justify-content: space-evenly #{$important-flex-value};\r\n }\r\n\r\n .justify-content-stretch {\r\n justify-content: stretch #{$important-flex-value};\r\n }\r\n\r\n /// These classes define the alignment of the children in the cross-direction\r\n .align-children-start {\r\n align-items: flex-start #{$important-flex-value};\r\n }\r\n\r\n .align-children-end {\r\n align-items: flex-end #{$important-flex-value};\r\n }\r\n\r\n .align-children-center {\r\n align-items: center #{$important-flex-value};\r\n }\r\n\r\n .align-children-baseline {\r\n align-items: baseline #{$important-flex-value};\r\n }\r\n\r\n .align-children-stretch {\r\n align-items: stretch #{$important-flex-value};\r\n }\r\n\r\n /// These classes define the alignment of the rows of children in the cross-direction\r\n .align-content-start {\r\n align-content: flex-start #{$important-flex-value};\r\n }\r\n\r\n .align-content-end {\r\n align-content: flex-end #{$important-flex-value};\r\n }\r\n\r\n .align-content-center {\r\n align-content: center #{$important-flex-value};\r\n }\r\n\r\n .align-content-between {\r\n align-content: space-between #{$important-flex-value};\r\n }\r\n\r\n .align-content-around {\r\n align-content: space-around #{$important-flex-value};\r\n }\r\n\r\n .align-content-stretch {\r\n align-content: stretch #{$important-flex-value};\r\n }\r\n\r\n /// These classes allow the default alignment to be overridden for individual items\r\n .align-self-auto {\r\n align-self: auto #{$important-flex-value};\r\n }\r\n\r\n .align-self-start {\r\n align-self: flex-start #{$important-flex-value};\r\n }\r\n\r\n .align-self-end {\r\n align-self: flex-end #{$important-flex-value};\r\n }\r\n\r\n .align-self-center {\r\n align-self: center #{$important-flex-value};\r\n }\r\n\r\n .align-self-baseline {\r\n align-self: baseline #{$important-flex-value};\r\n }\r\n\r\n .align-self-stretch {\r\n align-self: stretch #{$important-flex-value};\r\n }\r\n\r\n @include flex-items($number: 12);\r\n}\r\n\r\n/// These classes define the percentage of available free space within a flex container a flex item will take.\r\n@mixin flex-items($number) {\r\n @if not $exclude-flex {\r\n @for $i from 1 through $number {\r\n .flexitem-#{$i} {\r\n flex: #{$i} #{$i} 1%;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// ██████╗ █████╗ ███████╗██╗ ██████╗\r\n// ██╔══██╗██╔══██╗██╔════╝██║██╔════╝\r\n// ██████╔╝███████║███████╗██║██║\r\n// ██╔══██╗██╔══██║╚════██║██║██║\r\n// ██████╔╝██║ ██║███████║██║╚██████╗\r\n// ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝\r\n//\r\n\r\n//== Gray Shades\r\n//## Different gray shades to be used for our variables and components\r\n$gray-darker: #0a1325;\r\n$gray-dark: #474e5c;\r\n$gray: #787d87;\r\n$gray-light: #a9acb3;\r\n$gray-primary: #e7e7e9;\r\n$gray-lighter: #f8f8f8;\r\n\r\n//== Step 1: Brand Colors\r\n$brand-default: $gray-primary;\r\n$brand-primary: #264ae5;\r\n$brand-success: #3cb33d;\r\n$brand-warning: #eca51c;\r\n$brand-danger: #e33f4e;\r\n\r\n$brand-logo: false;\r\n$brand-logo-height: 32px;\r\n$brand-logo-width: 32px; // Only used for CSS brand logo\r\n\r\n//== Step 2: UI Customization\r\n\r\n// Default Font Size & Color\r\n$font-size-default: 14px;\r\n$font-color-default: #0a1325;\r\n\r\n// Global Border Color\r\n$border-color-default: #ced0d3;\r\n$border-radius-default: 4px;\r\n\r\n// Topbar\r\n$topbar-bg: #020557;\r\n$topbar-minimalheight: 48px;\r\n$topbar-border-color: $border-color-default;\r\n\r\n// Sidebar\r\n$sidebar-bg: #24276c;\r\n\r\n// Topbar mobile\r\n$m-header-height: 45px;\r\n$m-header-bg: $topbar-bg;\r\n$m-header-color: #fff;\r\n$m-header-title-size: 16px;\r\n\r\n// Navbar Brand Name / For your company, product, or project name (used in layouts/base/)\r\n$navbar-brand-name: #fff;\r\n\r\n// Background Colors\r\n// Backgrounds\r\n$bg-color: #f8f8f8;\r\n$bg-color-secondary: #fff;\r\n\r\n// Default Link Color\r\n$link-color: $brand-primary;\r\n$link-hover-color: darken($link-color, 15%);\r\n\r\n//\r\n// █████╗ ██████╗ ██╗ ██╗ █████╗ ███╗ ██╗ ██████╗███████╗██████╗\r\n// ██╔══██╗██╔══██╗██║ ██║██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗\r\n// ███████║██║ ██║██║ ██║███████║██╔██╗ ██║██║ █████╗ ██║ ██║\r\n// ██╔══██║██║ ██║╚██╗ ██╔╝██╔══██║██║╚██╗██║██║ ██╔══╝ ██║ ██║\r\n// ██║ ██║██████╔╝ ╚████╔╝ ██║ ██║██║ ╚████║╚██████╗███████╗██████╔╝\r\n// ╚═╝ ╚═╝╚═════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚══════╝╚═════╝\r\n//\r\n\r\n//== Typography\r\n//## Change your font family, weight, line-height, headings and more (used in components/typography)\r\n\r\n// Font Family Import (Used for google font plugin in theme creater)\r\n$font-family-import: \"resources/fonts/open-sans/open-sans.css\";\r\n\r\n// Font Family / False = fallback from Bootstrap (Helvetica Neue)\r\n$font-family-base: \"Open Sans\", sans-serif;\r\n\r\n// Font Sizes\r\n$font-size-large: 18px;\r\n$font-size-small: 12px;\r\n\r\n// Font Weights\r\n$font-weight-light: 100;\r\n$font-weight-normal: normal;\r\n$font-weight-semibold: 600;\r\n$font-weight-bold: bold;\r\n\r\n// Font Size Headers\r\n$font-size-h1: 31px;\r\n$font-size-h2: 26px;\r\n$font-size-h3: 24px;\r\n$font-size-h4: 18px;\r\n$font-size-h5: $font-size-default;\r\n$font-size-h6: 12px;\r\n\r\n// Font Weight Headers\r\n$font-weight-header: $font-weight-semibold;\r\n\r\n// Line Height\r\n$line-height-base: 1.428571429;\r\n\r\n// Spacing\r\n$font-header-margin: 0 0 8px 0;\r\n\r\n// Text Colors\r\n$font-color-detail: #6c717e;\r\n$font-color-header: #0a1325;\r\n\r\n//== Navigation\r\n//## Used in components/navigation\r\n\r\n// Default Navigation styling\r\n$navigation-item-height: unset;\r\n$navigation-item-padding: 8px;\r\n\r\n$navigation-font-size: 14px;\r\n$navigation-sub-font-size: $font-size-small;\r\n$navigation-glyph-size: 20px; // For glyphicons that you can select in the Mendix Modeler\r\n\r\n$navigation-color: #fff;\r\n$navigation-color-hover: #fff;\r\n$navigation-color-active: #fff;\r\n\r\n$navigation-sub-color: #fff;\r\n$navigation-sub-color-hover: #fff;\r\n$navigation-sub-color-active: #fff;\r\n\r\n// Navigation Sidebar\r\n$navsidebar-bg: $sidebar-bg;\r\n$navsidebar-bg-hover: darken($navsidebar-bg, 10%);\r\n$navsidebar-bg-active: darken($navsidebar-bg, 10%);\r\n\r\n$navsidebar-sub-bg: $navsidebar-bg-hover;\r\n$navsidebar-sub-bg-hover: $navsidebar-bg;\r\n$navsidebar-sub-bg-active: $navsidebar-bg;\r\n\r\n$navsidebar-border-color: $navsidebar-bg-hover;\r\n\r\n$navsidebar-font-size: $font-size-default;\r\n$navsidebar-sub-font-size: $font-size-small;\r\n$navsidebar-glyph-size: 20px; // For glyphicons that you can select in the Mendix Modeler\r\n\r\n$navsidebar-color: #fff;\r\n$navsidebar-color-hover: #fff;\r\n$navsidebar-color-active: #fff;\r\n\r\n$navsidebar-sub-color: #fff;\r\n$navsidebar-sub-color-hover: #fff;\r\n$navsidebar-sub-color-active: #fff;\r\n\r\n$navsidebar-width-closed: 52px;\r\n$navsidebar-width-open: 232px;\r\n\r\n// Navigation topbar\r\n$navtopbar-font-size: $font-size-default;\r\n$navtopbar-sub-font-size: $font-size-small;\r\n$navtopbar-glyph-size: 1.2em; // For glyphicons that you can select in the Mendix Modeler\r\n\r\n$navtopbar-bg: $topbar-bg;\r\n$navtopbar-bg-hover: mix($topbar-bg, white, 85%);\r\n$navtopbar-bg-active: mix($topbar-bg, white, 85%);\r\n$navtopbar-color: #fff;\r\n$navtopbar-color-hover: $navtopbar-color;\r\n$navtopbar-color-active: $navtopbar-color;\r\n\r\n$navtopbar-sub-bg: $topbar-bg;\r\n$navtopbar-sub-bg-hover: $navtopbar-bg-hover;\r\n$navtopbar-sub-bg-active: $navtopbar-bg-hover;\r\n$navtopbar-sub-color: #fff;\r\n$navtopbar-sub-color-hover: #fff;\r\n$navtopbar-sub-color-active: #fff;\r\n\r\n//## Used in layouts/base\r\n$navtopbar-border-color: $topbar-border-color;\r\n\r\n//== Form\r\n//## Used in components/inputs\r\n\r\n// Values that can be used default | lined\r\n$form-input-style: default;\r\n\r\n// Form Label\r\n$form-label-color: $font-color-default;\r\n$form-label-size: $font-size-default;\r\n$form-label-weight: $font-weight-semibold;\r\n$form-label-gutter: 8px;\r\n\r\n// Form Input dimensions\r\n$form-input-height: auto;\r\n$form-input-padding-y: 8px;\r\n$form-input-padding-x: 8px;\r\n$form-input-static-padding-y: 8px;\r\n$form-input-static-padding-x: 0;\r\n$form-input-font-size: $form-label-size;\r\n$form-input-line-height: $line-height-base;\r\n$form-input-border-radius: $border-radius-default;\r\n\r\n// Form Input styling\r\n$form-input-bg: #fff;\r\n$form-input-bg-focus: #fff;\r\n$form-input-bg-hover: $gray-primary;\r\n$form-input-bg-disabled: $bg-color;\r\n$form-input-color: $font-color-default;\r\n$form-input-focus-color: $form-input-color;\r\n$form-input-disabled-color: #9da1a8;\r\n$form-input-placeholder-color: #6c717c;\r\n$form-input-border-color: $gray-primary;\r\n$form-input-border-focus-color: $brand-primary;\r\n\r\n// Form Input Static styling\r\n$form-input-static-border-color: $gray-primary;\r\n\r\n// Form Group\r\n$form-group-margin-bottom: 16px;\r\n$form-group-gutter: 16px;\r\n\r\n//== Buttons\r\n//## Define background-color, border-color and text. Used in components/buttons\r\n\r\n// Default button style\r\n$btn-font-size: 14px;\r\n$btn-bordered: false; // Default value false, set to true if you want this effect\r\n$btn-border-radius: $border-radius-default;\r\n\r\n// Button Background Color\r\n$btn-default-bg: #fff;\r\n$btn-primary-bg: $brand-primary;\r\n$btn-success-bg: $brand-success;\r\n$btn-warning-bg: $brand-warning;\r\n$btn-danger-bg: $brand-danger;\r\n\r\n// Button Border Color\r\n$btn-default-border-color: $gray-primary;\r\n$btn-primary-border-color: $brand-primary;\r\n$btn-success-border-color: $brand-success;\r\n$btn-warning-border-color: $brand-warning;\r\n$btn-danger-border-color: $brand-danger;\r\n\r\n// Button Text Color\r\n$btn-default-color: $brand-primary;\r\n$btn-primary-color: #fff;\r\n$btn-success-color: #fff;\r\n$btn-warning-color: #fff;\r\n$btn-danger-color: #fff;\r\n\r\n// Button Icon Color\r\n$btn-default-icon-color: $gray;\r\n\r\n// Button Background Color\r\n$btn-default-bg-hover: $btn-default-border-color;\r\n$btn-primary-bg-hover: mix($btn-primary-bg, black, 80%);\r\n$btn-success-bg-hover: mix($btn-success-bg, black, 80%);\r\n$btn-warning-bg-hover: mix($btn-warning-bg, black, 80%);\r\n$btn-danger-bg-hover: mix($btn-danger-bg, black, 80%);\r\n$btn-link-bg-hover: $gray-lighter;\r\n\r\n//== Header blocks\r\n//## Define look and feel over multible building blocks that serve as header\r\n\r\n$header-min-height: 240px;\r\n$header-bg-color: $brand-primary;\r\n$header-bgimage-filter: brightness(60%);\r\n$header-text-color: #fff;\r\n$header-text-color-detail: rgba(0, 0, 0, 0.2);\r\n\r\n//\r\n// ███████╗██╗ ██╗██████╗ ███████╗██████╗ ████████╗\r\n// ██╔════╝╚██╗██╔╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝\r\n// █████╗ ╚███╔╝ ██████╔╝█████╗ ██████╔╝ ██║\r\n// ██╔══╝ ██╔██╗ ██╔═══╝ ██╔══╝ ██╔══██╗ ██║\r\n// ███████╗██╔╝ ██╗██║ ███████╗██║ ██║ ██║\r\n// ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝\r\n//\r\n\r\n//== Color variations\r\n//## These variations are used to support several other variables and components\r\n\r\n// Color variations\r\n$color-default-darker: mix($brand-default, black, 60%);\r\n$color-default-dark: mix($brand-default, black, 70%);\r\n$color-default-light: mix($brand-default, white, 40%);\r\n$color-default-lighter: mix($brand-default, white, 20%);\r\n\r\n$color-primary-darker: mix($brand-primary, black, 60%);\r\n$color-primary-dark: mix($brand-primary, black, 70%);\r\n$color-primary-light: mix($brand-primary, white, 40%);\r\n$color-primary-lighter: mix($brand-primary, white, 20%);\r\n\r\n$color-success-darker: mix($brand-success, black, 60%);\r\n$color-success-dark: mix($brand-success, black, 70%);\r\n$color-success-light: mix($brand-success, white, 40%);\r\n$color-success-lighter: mix($brand-success, white, 20%);\r\n\r\n$color-warning-darker: mix($brand-warning, black, 60%);\r\n$color-warning-dark: mix($brand-warning, black, 70%);\r\n$color-warning-light: mix($brand-warning, white, 40%);\r\n$color-warning-lighter: mix($brand-warning, white, 20%);\r\n\r\n$color-danger-darker: mix($brand-danger, black, 60%);\r\n$color-danger-dark: mix($brand-danger, black, 70%);\r\n$color-danger-light: mix($brand-danger, white, 40%);\r\n$color-danger-lighter: mix($brand-danger, white, 20%);\r\n\r\n$brand-gradient: linear-gradient(to right top, #264ae5, #2239c5, #1b29a6, #111988, #03096c);\r\n\r\n//== Grids\r\n//## Used for Datagrid, Templategrid, Listview & Tables (see components folder)\r\n\r\n// Default Border Colors\r\n$grid-border-color: $border-color-default;\r\n\r\n// Spacing\r\n// Default\r\n$grid-padding-top: 16px;\r\n$grid-padding-right: 16px;\r\n$grid-padding-bottom: 16px;\r\n$grid-padding-left: 16px;\r\n\r\n// Listview\r\n$listview-padding-top: 16px;\r\n$listview-padding-right: 16px;\r\n$listview-padding-bottom: 16px;\r\n$listview-padding-left: 16px;\r\n\r\n// Background Colors\r\n$grid-bg: transparent;\r\n$grid-bg-header: transparent; // Grid Headers\r\n$grid-bg-hover: mix($grid-border-color, #fff, 20%);\r\n$grid-bg-selected: mix($grid-border-color, #fff, 30%);\r\n$grid-bg-selected-hover: mix($grid-border-color, #fff, 50%);\r\n\r\n// Striped Background Color\r\n$grid-bg-striped: mix($grid-border-color, #fff, 10%);\r\n\r\n// Background Footer Color\r\n$grid-footer-bg: $gray-primary;\r\n\r\n// Text Color\r\n$grid-selected-color: $font-color-default;\r\n\r\n// Paging Colors\r\n$grid-paging-bg: transparent;\r\n$grid-paging-bg-hover: transparent;\r\n$grid-paging-border-color: transparent;\r\n$grid-paging-border-color-hover: transparent;\r\n$grid-paging-color: $gray-light;\r\n$grid-paging-color-hover: $brand-primary;\r\n\r\n//== Tabs\r\n//## Default variables for Tab Container Widget (used in components/tabcontainer)\r\n\r\n// Text Color\r\n$tabs-color: $font-color-detail;\r\n$tabs-color-active: $font-color-default;\r\n$tabs-lined-color-active: $font-color-default;\r\n\r\n$tabs-lined-border-width: 3px;\r\n\r\n// Border Color\r\n$tabs-border-color: $border-color-default;\r\n$tabs-lined-border-color: $brand-primary;\r\n\r\n// Background Color\r\n$tabs-bg: transparent;\r\n$tabs-bg-pills: #e7e7e9;\r\n$tabs-bg-hover: lighten($tabs-border-color, 5);\r\n$tabs-bg-active: $brand-primary;\r\n\r\n//== Modals\r\n//## Default Mendix Modal, Blocking Modal and Login Modal (used in components/modals)\r\n\r\n// Background Color\r\n$modal-header-bg: transparent;\r\n\r\n// Border Color\r\n$modal-header-border-color: $border-color-default;\r\n\r\n// Text Color\r\n$modal-header-color: $font-color-default;\r\n\r\n//== Dataview\r\n//## Default variables for Dataview Widget (used in components/dataview)\r\n\r\n// Controls\r\n$dataview-controls-bg: transparent;\r\n$dataview-controls-border-color: $border-color-default;\r\n\r\n// Empty Message\r\n$dataview-emptymessage-bg: $bg-color;\r\n$dataview-emptymessage-color: $font-color-default;\r\n\r\n//== Alerts\r\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\r\n\r\n// Background Color\r\n$alert-success-bg: $color-success-lighter;\r\n$alert-warning-bg: $color-warning-lighter;\r\n$alert-danger-bg: $color-danger-lighter;\r\n\r\n// Text Color\r\n$alert-success-color: $color-success-darker;\r\n$alert-warning-color: $color-warning-darker;\r\n$alert-danger-color: $color-danger-darker;\r\n\r\n// Border Color\r\n$alert-success-border-color: $color-success-dark;\r\n$alert-warning-border-color: $color-warning-dark;\r\n$alert-danger-border-color: $color-danger-dark;\r\n\r\n//== Wizard\r\n\r\n$wizard-step-height: 48px;\r\n$wizard-step-number-size: 64px;\r\n$wizard-step-number-font-size: $font-size-h3;\r\n\r\n//Wizard step states\r\n$wizard-default-bg: #fff;\r\n$wizard-default-color: #fff;\r\n$wizard-default-step-color: $font-color-default;\r\n$wizard-default-border-color: $border-color-default;\r\n\r\n$wizard-active-bg: $color-primary-lighter;\r\n$wizard-active-color: $color-primary-dark;\r\n$wizard-active-step-color: $color-primary-dark;\r\n$wizard-active-border-color: $color-primary-dark;\r\n\r\n$wizard-visited-bg: $color-success-lighter;\r\n$wizard-visited-color: $color-success-dark;\r\n$wizard-visited-step-color: $color-success-dark;\r\n$wizard-visited-border-color: $color-success-dark;\r\n\r\n//== Labels\r\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\r\n\r\n// Background Color\r\n$label-default-bg: $brand-default;\r\n$label-primary-bg: $brand-primary;\r\n$label-success-bg: $brand-success;\r\n$label-warning-bg: $brand-warning;\r\n$label-danger-bg: $brand-danger;\r\n\r\n// Border Color\r\n$label-default-border-color: $brand-default;\r\n$label-primary-border-color: $brand-primary;\r\n$label-success-border-color: $brand-success;\r\n$label-warning-border-color: $brand-warning;\r\n$label-danger-border-color: $brand-danger;\r\n\r\n// Text Color\r\n$label-default-color: $font-color-default;\r\n$label-primary-color: #fff;\r\n$label-success-color: #fff;\r\n$label-warning-color: #fff;\r\n$label-danger-color: #fff;\r\n\r\n//== Groupbox\r\n//## Default variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Background Color\r\n$groupbox-default-bg: $gray-primary;\r\n$groupbox-primary-bg: $brand-primary;\r\n$groupbox-success-bg: $brand-success;\r\n$groupbox-warning-bg: $brand-warning;\r\n$groupbox-danger-bg: $brand-danger;\r\n$groupbox-white-bg: #fff;\r\n\r\n// Text Color\r\n$groupbox-default-color: $font-color-default;\r\n$groupbox-primary-color: #fff;\r\n$groupbox-success-color: #fff;\r\n$groupbox-warning-color: #fff;\r\n$groupbox-danger-color: #fff;\r\n$groupbox-white-color: $font-color-default;\r\n\r\n//== Callout (groupbox) Colors\r\n//## Extended variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Text and Border Color\r\n$callout-default-color: $font-color-default;\r\n$callout-success-color: $brand-success;\r\n$callout-warning-color: $brand-warning;\r\n$callout-danger-color: $brand-danger;\r\n\r\n// Background Color\r\n$callout-default-bg: $color-default-lighter;\r\n$callout-success-bg: $color-success-lighter;\r\n$callout-warning-bg: $color-warning-lighter;\r\n$callout-danger-bg: $color-danger-lighter;\r\n\r\n//== Timeline\r\n//## Extended variables for Timeline Widget\r\n// Colors\r\n$timeline-icon-color: $brand-primary;\r\n$timeline-border-color: $border-color-default;\r\n$timeline-event-time-color: $brand-primary;\r\n\r\n// Sizes\r\n$timeline-icon-size: 18px;\r\n$timeline-image-size: 36px;\r\n\r\n//Timeline grouping\r\n$timeline-grouping-size: 120px;\r\n$timeline-grouping-border-radius: 30px;\r\n$timeline-grouping-border-color: $timeline-border-color;\r\n\r\n//== Accordions\r\n//## Extended variables for Accordion Widget\r\n\r\n// Default\r\n$accordion-header-default-bg: $bg-color-secondary;\r\n$accordion-header-default-bg-hover: $bg-color;\r\n$accordion-header-default-color: $font-color-header;\r\n$accordion-default-border-color: $border-color-default;\r\n\r\n$accordion-bg-striped: $grid-bg-striped;\r\n$accordion-bg-striped-hover: $grid-bg-selected;\r\n\r\n// Semantic background colors\r\n$accordion-header-primary-bg: $btn-primary-bg;\r\n$accordion-header-secondary-bg: $btn-default-bg;\r\n$accordion-header-success-bg: $btn-success-bg;\r\n$accordion-header-warning-bg: $btn-warning-bg;\r\n$accordion-header-danger-bg: $btn-danger-bg;\r\n\r\n$accordion-header-primary-bg-hover: $btn-primary-bg-hover;\r\n$accordion-header-secondary-bg-hover: $btn-default-bg-hover;\r\n$accordion-header-success-bg-hover: $btn-success-bg-hover;\r\n$accordion-header-warning-bg-hover: $btn-warning-bg-hover;\r\n$accordion-header-danger-bg-hover: $btn-danger-bg-hover;\r\n\r\n// Semantic text colors\r\n$accordion-header-primary-color: $btn-primary-color;\r\n$accordion-header-secondary-color: $btn-default-color;\r\n$accordion-header-success-color: $btn-success-color;\r\n$accordion-header-warning-color: $btn-warning-color;\r\n$accordion-header-danger-color: $btn-danger-color;\r\n\r\n// Semantic border colors\r\n$accordion-primary-border-color: $btn-primary-border-color;\r\n$accordion-secondary-border-color: $btn-default-border-color;\r\n$accordion-success-border-color: $btn-success-border-color;\r\n$accordion-warning-border-color: $btn-warning-border-color;\r\n$accordion-danger-border-color: $btn-danger-border-color;\r\n\r\n//== Spacing\r\n//## Advanced layout options (used in base/mixins/default-spacing)\r\n\r\n// Smallest spacing\r\n$spacing-smallest: 2px;\r\n\r\n// Smaller spacing\r\n$spacing-smaller: 4px;\r\n\r\n// Small spacing\r\n$spacing-small: 8px;\r\n\r\n// Medium spacing\r\n$spacing-medium: 16px;\r\n$t-spacing-medium: 16px;\r\n$m-spacing-medium: 16px;\r\n\r\n// Large spacing\r\n$spacing-large: 24px;\r\n$t-spacing-large: 24px;\r\n$m-spacing-large: 16px;\r\n\r\n// Larger spacing\r\n$spacing-larger: 32px;\r\n\r\n// Largest spacing\r\n$spacing-largest: 48px;\r\n\r\n// Layout spacing\r\n$layout-spacing-top: 24px;\r\n$layout-spacing-right: 24px;\r\n$layout-spacing-bottom: 24px;\r\n$layout-spacing-left: 24px;\r\n\r\n$t-layout-spacing-top: 24px;\r\n$t-layout-spacing-right: 24px;\r\n$t-layout-spacing-bottom: 24px;\r\n$t-layout-spacing-left: 24px;\r\n\r\n$m-layout-spacing-top: 16px;\r\n$m-layout-spacing-right: 16px;\r\n$m-layout-spacing-bottom: 16px;\r\n$m-layout-spacing-left: 16px;\r\n\r\n// Combined layout spacing\r\n$layout-spacing: $layout-spacing-top $layout-spacing-right $layout-spacing-bottom $layout-spacing-left;\r\n$m-layout-spacing: $m-layout-spacing-top $m-layout-spacing-right $m-layout-spacing-bottom $m-layout-spacing-left;\r\n$t-layout-spacing: $t-layout-spacing-top $t-layout-spacing-right $t-layout-spacing-bottom $t-layout-spacing-left;\r\n\r\n// Gutter size\r\n$gutter-size: 8px;\r\n\r\n//== Tables\r\n//## Table spacing options (used in components/tables)\r\n\r\n$padding-table-cell-top: 8px;\r\n$padding-table-cell-bottom: 8px;\r\n$padding-table-cell-left: 8px;\r\n$padding-table-cell-right: 8px;\r\n\r\n//== Media queries breakpoints\r\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\r\n\r\n$screen-xs: 480px;\r\n$screen-sm: 576px;\r\n$screen-md: 768px;\r\n$screen-lg: 992px;\r\n$screen-xl: 1200px;\r\n\r\n// So media queries don't overlap when required, provide a maximum (used for max-width)\r\n$screen-xs-max: calc(#{$screen-sm} - 1px);\r\n$screen-sm-max: calc(#{$screen-md} - 1px);\r\n$screen-md-max: calc(#{$screen-lg} - 1px);\r\n$screen-lg-max: calc(#{$screen-xl} - 1px);\r\n\r\n//== Settings\r\n//## Enable or disable your desired framework features\r\n// Use of !important\r\n$important-flex: true; // ./base/flex.scss\r\n$important-spacing: true; // ./base/spacing.scss\r\n$important-helpers: true; // ./helpers/helperclasses.scss\r\n\r\n//===== Legacy variables =====\r\n\r\n//== Step 1: Brand Colors\r\n$brand-inverse: #24276c;\r\n$brand-info: #0086d9;\r\n\r\n//== Step 2: UI Customization\r\n\r\n//== Buttons\r\n//## Define background-color, border-color and text. Used in components/buttons\r\n\r\n// Button Background Color\r\n$btn-inverse-bg: $brand-inverse;\r\n$btn-info-bg: $brand-info;\r\n\r\n// Button Border Color\r\n$btn-inverse-border-color: $brand-inverse;\r\n$btn-info-border-color: $brand-info;\r\n\r\n// Button Text Color\r\n$btn-inverse-color: #fff;\r\n$btn-info-color: #fff;\r\n\r\n// Button Background Color\r\n$btn-inverse-bg-hover: mix($btn-inverse-bg, white, 80%);\r\n$btn-info-bg-hover: mix($btn-info-bg, black, 80%);\r\n\r\n//== Color variations\r\n//## These variations are used to support several other variables and components\r\n\r\n// Color variations\r\n$color-inverse-darker: mix($brand-inverse, black, 60%);\r\n$color-inverse-dark: mix($brand-inverse, black, 70%);\r\n$color-inverse-light: mix($brand-inverse, white, 60%);\r\n$color-inverse-lighter: mix($brand-inverse, white, 20%);\r\n\r\n$color-info-darker: mix($brand-info, black, 60%);\r\n$color-info-dark: mix($brand-info, black, 70%);\r\n$color-info-light: mix($brand-info, white, 60%);\r\n$color-info-lighter: mix($brand-info, white, 20%);\r\n\r\n//== Alerts\r\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\r\n\r\n// Background Color\r\n$alert-info-bg: $color-primary-lighter;\r\n\r\n// Text Color\r\n$alert-info-color: $color-primary-darker;\r\n\r\n// Border Color\r\n$alert-info-border-color: $color-primary-dark;\r\n\r\n//== Labels\r\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\r\n\r\n// Background Color\r\n$label-info-bg: $brand-info;\r\n$label-inverse-bg: $brand-inverse;\r\n\r\n// Border Color\r\n$label-info-border-color: $brand-info;\r\n$label-inverse-border-color: $brand-inverse;\r\n\r\n// Text Color\r\n$label-info-color: #fff;\r\n$label-inverse-color: #fff;\r\n\r\n//== Groupbox\r\n//## Default variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Background Color\r\n$groupbox-inverse-bg: $brand-inverse;\r\n$groupbox-info-bg: $brand-info;\r\n\r\n// Text Color\r\n$groupbox-inverse-color: #fff;\r\n$groupbox-info-color: #fff;\r\n\r\n//== Callout (groupbox) Colors\r\n//## Extended variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Text and Border Color\r\n$callout-info-color: $brand-info;\r\n\r\n// Background Color\r\n$callout-info-bg: $color-info-lighter;\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n/* ==========================================================================\r\n Spacing\r\n\r\n Spacing classes\r\n========================================================================== */\r\n@mixin spacing() {\r\n $important-spacing-value: if($important-spacing, \" !important\", \"\");\r\n\r\n // Spacing none\r\n .spacing-inner-none {\r\n padding: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-top-none {\r\n padding-top: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-right-none {\r\n padding-right: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-bottom-none {\r\n padding-bottom: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-left-none {\r\n padding-left: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-none {\r\n margin: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-top-none {\r\n margin-top: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-right-none {\r\n margin-right: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-bottom-none {\r\n margin-bottom: 0 #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-left-none {\r\n margin-left: 0 #{$important-spacing-value};\r\n }\r\n\r\n // Spacing small\r\n .spacing-inner {\r\n padding: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-top {\r\n padding-top: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-right {\r\n padding-right: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-bottom {\r\n padding-bottom: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-left {\r\n padding-left: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-vertical {\r\n padding-top: $spacing-small #{$important-spacing-value};\r\n padding-bottom: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-inner-horizontal {\r\n padding-left: $spacing-small #{$important-spacing-value};\r\n padding-right: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer {\r\n margin: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-top {\r\n margin-top: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-right {\r\n margin-right: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-bottom {\r\n margin-bottom: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-left {\r\n margin-left: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-vertical {\r\n margin-top: $spacing-small #{$important-spacing-value};\r\n margin-bottom: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n .spacing-outer-horizontal {\r\n margin-left: $spacing-small #{$important-spacing-value};\r\n margin-right: $spacing-small #{$important-spacing-value};\r\n }\r\n\r\n // Spacing Medium\r\n .spacing-inner-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: all,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-top-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-right-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-bottom-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-left-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-vertical-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-horizontal-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-medium(\r\n $type: padding,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: all,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-top-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-right-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-bottom-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-left-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-vertical-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-horizontal-medium {\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-medium(\r\n $type: margin,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n // Spacing Large\r\n .spacing-inner-large {\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: all,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-top-large {\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-right-large {\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-bottom-large {\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-left-large {\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-vertical-large {\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-horizontal-large {\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-large(\r\n $type: padding,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-large {\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: all,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-top-large {\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-right-large {\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-bottom-large {\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-left-large {\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-vertical-large {\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: top,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: bottom,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-horizontal-large {\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: left,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include get-responsive-spacing-large(\r\n $type: margin,\r\n $direction: right,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n // Spacing layouts\r\n .spacing-inner-layout {\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: all,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-top-layout {\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: top,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-right-layout {\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: right,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-bottom-layout {\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: bottom,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-left-layout {\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: left,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-inner-vertical-layout {\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: top,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: bottom,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n .spacing-inner-horizontal-layout {\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: left,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include layout-spacing(\r\n $type: padding,\r\n $direction: right,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-layout {\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: all,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-top-layout {\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: top,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-right-layout {\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: right,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-bottom-layout {\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: bottom,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-left-layout {\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: left,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n\r\n .spacing-outer-vertical-layout {\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: top,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: bottom,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n .spacing-outer-horizontal-layout {\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: left,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n @include layout-spacing(\r\n $type: margin,\r\n $direction: right,\r\n $device: responsive,\r\n $is_important: #{$important-spacing-value}\r\n );\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin get-responsive-spacing-large($type: padding, $direction: all, $is_important: false) {\r\n @if not $exclude-spacing {\r\n $suffix: \"\";\r\n $dash: \"-\"; // Otherwise it will be interpreted as a minus symbol. Needed for the Gonzales PE version: 3.4.7 compiler (used by the Webmodeler)\r\n\r\n @if $is_important != false {\r\n $suffix: \" !important\";\r\n }\r\n @if $direction==all {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}: #{$m-spacing-large}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}: #{$t-spacing-large}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}: #{$spacing-large}#{$suffix};\r\n }\r\n } @else {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}#{$dash}#{$direction}: #{$m-spacing-large}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}#{$dash}#{$direction}: #{$t-spacing-large}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}#{$dash}#{$direction}: #{$spacing-large}#{$suffix};\r\n }\r\n }\r\n }\r\n}\r\n\r\n@mixin get-responsive-spacing-medium($type: padding, $direction: all, $is_important: false) {\r\n @if not $exclude-spacing {\r\n $suffix: \"\";\r\n $dash: \"-\"; // Otherwise it will be interpreted as a minus symbol. Needed for the Gonzales PE version: 3.4.7 compiler (used by the Webmodeler)\r\n\r\n @if $is_important != false {\r\n $suffix: \" !important\";\r\n }\r\n @if $direction==all {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}: #{$m-spacing-medium}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}: #{$t-spacing-medium}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}: #{$spacing-medium}#{$suffix};\r\n }\r\n } @else {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}#{$dash}#{$direction}: #{$m-spacing-medium}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}#{$dash}#{$direction}: #{$t-spacing-medium}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}#{$dash}#{$direction}: #{$spacing-medium}#{$suffix};\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin layout-spacing($type: padding, $direction: all, $device: responsive, $is_important: false) {\r\n @if not $exclude-spacing {\r\n $suffix: \"\";\r\n @if $is_important != false {\r\n $suffix: \" !important\";\r\n }\r\n @if $device==responsive {\r\n @if $direction==all {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}: #{$m-layout-spacing}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}: #{$t-layout-spacing}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}: #{$layout-spacing}#{$suffix};\r\n }\r\n } @else if $direction==top {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}-top: #{$m-layout-spacing-top}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}-top: #{$t-layout-spacing-top}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}-top: #{$layout-spacing-top}#{$suffix};\r\n }\r\n } @else if $direction==right {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}-right: #{$m-layout-spacing-right}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}-right: #{$t-layout-spacing-right}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}-right: #{$layout-spacing-right}#{$suffix};\r\n }\r\n } @else if $direction==bottom {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}-bottom: #{$m-layout-spacing-bottom}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}-bottom: #{$t-layout-spacing-bottom}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}-bottom: #{$layout-spacing-bottom}#{$suffix};\r\n }\r\n } @else if $direction==left {\r\n @media (max-width: $screen-sm-max) {\r\n #{$type}-left: #{$m-layout-spacing-left}#{$suffix};\r\n }\r\n @media (min-width: $screen-md) {\r\n #{$type}-left: #{$t-layout-spacing-left}#{$suffix};\r\n }\r\n @media (min-width: $screen-lg) {\r\n #{$type}-left: #{$layout-spacing-left}#{$suffix};\r\n }\r\n }\r\n } @else if $device==tablet {\r\n @if $direction==all {\r\n #{$type}: #{$t-layout-spacing}#{$suffix};\r\n } @else if $direction==top {\r\n #{$type}-top: #{$t-layout-spacing-top}#{$suffix};\r\n } @else if $direction==right {\r\n #{$type}-right: #{$t-layout-spacing-right}#{$suffix};\r\n } @else if $direction==bottom {\r\n #{$type}-bottom: #{$t-layout-spacing-bottom}#{$suffix};\r\n } @else if $direction==left {\r\n #{$type}-left: #{$t-layout-spacing-left}#{$suffix};\r\n }\r\n } @else if $device==mobile {\r\n @if $direction==all {\r\n #{$type}: #{$m-layout-spacing}#{$suffix};\r\n } @else if $direction==top {\r\n #{$type}-top: #{$m-layout-spacing-top}#{$suffix};\r\n } @else if $direction==right {\r\n #{$type}-right: #{$m-layout-spacing-right}#{$suffix};\r\n } @else if $direction==bottom {\r\n #{$type}-bottom: #{$m-layout-spacing-bottom}#{$suffix};\r\n } @else if $direction==left {\r\n #{$type}-left: #{$m-layout-spacing-left}#{$suffix};\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n/* ==========================================================================\r\n Base\r\n\r\n Default settings\r\n========================================================================== */\r\n@mixin base() {\r\n html {\r\n height: 100%;\r\n }\r\n\r\n body {\r\n min-height: 100%;\r\n color: $font-color-default;\r\n background-color: $bg-color;\r\n font-family: $font-family-base;\r\n font-size: $font-size-default;\r\n font-weight: $font-weight-normal;\r\n line-height: $line-height-base;\r\n }\r\n\r\n a {\r\n transition: 0.25s;\r\n color: $link-color;\r\n -webkit-backface-visibility: hidden;\r\n }\r\n\r\n a:hover {\r\n text-decoration: underline;\r\n color: $link-hover-color;\r\n }\r\n\r\n // Address `outline` inconsistency between Chrome and other browsers.\r\n a:focus {\r\n outline: thin dotted;\r\n }\r\n\r\n // Improve readability when focused and also mouse hovered in all browsers\r\n a:active,\r\n a:hover {\r\n outline: 0;\r\n }\r\n\r\n // Removes large blue border in chrome on focus and active states\r\n input:focus,\r\n button:focus,\r\n .mx-link:focus {\r\n outline: 0;\r\n }\r\n\r\n // Removes large blue border for tabindexes from widgets\r\n div[tabindex] {\r\n outline: 0;\r\n }\r\n\r\n // Disabled State\r\n .disabled,\r\n [disabled] {\r\n cursor: not-allowed;\r\n opacity: 0.65;\r\n box-shadow: none;\r\n }\r\n\r\n .mx-underlay {\r\n position: fixed;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 1000;\r\n opacity: 0.5;\r\n background-color: #0a1325;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin login() {\r\n body {\r\n height: 100%;\r\n }\r\n\r\n .loginpage {\r\n display: flex;\r\n height: 100%;\r\n }\r\n .loginpage-logo {\r\n position: absolute;\r\n top: 30px;\r\n right: 30px;\r\n\r\n & > svg {\r\n width: 120px;\r\n }\r\n }\r\n\r\n .loginpage-left {\r\n display: none;\r\n }\r\n\r\n .loginpage-right {\r\n display: flex;\r\n flex: 1;\r\n flex-direction: column;\r\n justify-content: space-around;\r\n }\r\n .loginpage-formwrapper {\r\n width: 400px;\r\n margin: 0 auto;\r\n }\r\n\r\n .loginpage-fullscreenDiv {\r\n background-color: #e8e8e8;\r\n width: 100%;\r\n height: auto;\r\n bottom: 0;\r\n top: 0;\r\n left: 0;\r\n position: absolute;\r\n }\r\n\r\n .loginpage-center {\r\n position: absolute;\r\n top: 50%;\r\n left: 50%;\r\n transform: translate(-50%, -50%);\r\n }\r\n\r\n // Form\r\n .loginpage-form {\r\n .alert {\r\n display: none;\r\n }\r\n\r\n .btn {\r\n border-radius: $border-radius-default;\r\n }\r\n\r\n // Form label + input\r\n .form-group {\r\n width: 100%;\r\n align-items: center;\r\n @media only screen and (max-width: $screen-sm-max) {\r\n align-items: flex-start;\r\n }\r\n\r\n .control-label {\r\n flex: 4;\r\n margin-bottom: 0;\r\n font-size: $font-size-default;\r\n font-weight: 500;\r\n @media only screen and (max-width: $screen-sm-max) {\r\n flex: 1;\r\n margin-bottom: $spacing-small;\r\n }\r\n }\r\n\r\n .inputwrapper {\r\n flex: 8;\r\n position: relative;\r\n width: 100%;\r\n @media only screen and (max-width: $screen-sm-max) {\r\n flex: 1;\r\n }\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n &:before {\r\n transition: color 0.4s;\r\n }\r\n\r\n position: absolute;\r\n top: 50%;\r\n left: $form-input-padding-x;\r\n transform: translateY(-50%);\r\n\r\n &-eye-open:hover,\r\n &-eye-close:hover {\r\n cursor: pointer;\r\n color: $brand-primary;\r\n }\r\n }\r\n\r\n .form-control {\r\n padding: $form-input-padding-y $form-input-padding-x $form-input-padding-y 45px;\r\n width: 100%;\r\n }\r\n\r\n .form-control:focus ~ .glyphicon:before {\r\n color: $brand-primary;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Divider - only on login-with-mendixsso-button.html\r\n .loginpage-alternativelabel {\r\n display: flex;\r\n align-items: center;\r\n flex-direction: row;\r\n flex-wrap: nowrap;\r\n justify-content: space-between;\r\n margin: 25px 0px;\r\n\r\n hr {\r\n flex: 1;\r\n margin: 20px 0 20px 10px;\r\n border: 0;\r\n border-color: #d8d8d8;\r\n border-top: 1px solid #eeeeee;\r\n }\r\n }\r\n\r\n .loginpage-signin {\r\n color: #555555;\r\n }\r\n\r\n .loginpage-form .btn {\r\n img {\r\n vertical-align: middle;\r\n top: -1px;\r\n position: relative;\r\n }\r\n }\r\n\r\n // Show only on wide screens\r\n @media screen and (min-width: $screen-xl) {\r\n .loginpage-left {\r\n position: relative;\r\n display: block;\r\n flex: 1;\r\n width: 100%;\r\n height: 100%;\r\n }\r\n // Image and clipping mask\r\n .loginpage-image {\r\n height: 100%;\r\n animation: makePointer 1s ease-out both;\r\n background: left / cover no-repeat\r\n linear-gradient(to right, rgba($brand-primary, 0.9) 0%, rgba($brand-primary, 0.6) 100%),\r\n left / cover no-repeat url(\"./resources/work-do-more.jpeg\");\r\n -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);\r\n clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);\r\n }\r\n\r\n .loginpage-logo {\r\n & > svg {\r\n width: 150px;\r\n }\r\n }\r\n\r\n .loginpage-formwrapper {\r\n width: 400px;\r\n }\r\n }\r\n\r\n // Animate image clipping mask\r\n @keyframes makePointer {\r\n 100% {\r\n -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\r\n clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\r\n }\r\n }\r\n @-webkit-keyframes makePointer {\r\n 100% {\r\n -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\r\n clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin input() {\r\n /* ==========================================================================\r\n Input\r\n\r\n The form-control class style all inputs\r\n ========================================================================== */\r\n .form-control {\r\n display: flex;\r\n flex: 1;\r\n min-width: 50px;\r\n height: $form-input-height;\r\n padding: $form-input-padding-y $form-input-padding-x;\r\n transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\r\n color: $form-input-color;\r\n border: 1px solid $form-input-border-color;\r\n border-radius: $form-input-border-radius;\r\n background-color: $form-input-bg;\r\n background-image: none;\r\n box-shadow: none;\r\n font-size: $form-input-font-size;\r\n line-height: $form-input-line-height;\r\n appearance: none;\r\n -moz-appearance: none;\r\n -webkit-appearance: none;\r\n @if $form-input-style==lined {\r\n @extend .form-control-lined;\r\n }\r\n\r\n &::placeholder {\r\n color: $form-input-placeholder-color;\r\n }\r\n }\r\n\r\n .form-control:not([readonly]) {\r\n &:focus,\r\n &:focus-within {\r\n border-color: $form-input-border-focus-color;\r\n outline: 0;\r\n background-color: $form-input-bg-focus;\r\n box-shadow: none;\r\n }\r\n }\r\n\r\n .form-control[disabled],\r\n .form-control[readonly],\r\n fieldset[disabled] .form-control {\r\n opacity: 1;\r\n background-color: $form-input-bg-disabled;\r\n }\r\n\r\n .form-control[disabled],\r\n fieldset[disabled] .form-control {\r\n cursor: not-allowed;\r\n }\r\n\r\n // Lined\r\n .form-control-lined {\r\n border: 0;\r\n border-bottom: 1px solid $form-input-border-color;\r\n border-radius: 0;\r\n background-color: transparent;\r\n\r\n &:focus {\r\n background-color: transparent;\r\n }\r\n }\r\n\r\n // Read only form control class\r\n .form-control-static {\r\n overflow: hidden;\r\n flex: 1;\r\n min-height: auto;\r\n padding: $form-input-static-padding-y $form-input-static-padding-x;\r\n //border-bottom: 1px solid $form-input-static-border-color;\r\n font-size: $form-input-font-size;\r\n line-height: $form-input-line-height;\r\n\r\n & + .control-label {\r\n margin-left: $form-label-gutter;\r\n }\r\n }\r\n\r\n // Dropdown input widget\r\n select.form-control {\r\n $arrow: \"resources/arrow.svg\";\r\n padding-right: 30px;\r\n background-image: url($arrow);\r\n background-repeat: no-repeat;\r\n background-position: calc(100% - #{$form-input-padding-x}) center;\r\n appearance: none;\r\n -moz-appearance: none;\r\n -webkit-appearance: none;\r\n }\r\n\r\n .form-control.mx-selectbox {\r\n align-items: center;\r\n flex-direction: row-reverse;\r\n justify-content: space-between;\r\n }\r\n\r\n // Not editable textarea, textarea will be rendered as a label\r\n .mx-textarea .control-label {\r\n height: auto;\r\n }\r\n\r\n .mx-textarea-counter {\r\n display: block;\r\n width: 100%;\r\n text-align: right;\r\n margin-top: $spacing-small;\r\n }\r\n\r\n textarea.form-control {\r\n flex-basis: auto;\r\n }\r\n\r\n .mx-compound-control {\r\n display: flex;\r\n flex: 1;\r\n flex-wrap: wrap;\r\n max-width: 100%;\r\n\r\n .btn {\r\n margin-left: $spacing-small;\r\n }\r\n\r\n .mx-validation-message {\r\n flex-basis: 100%;\r\n margin-top: 4px;\r\n }\r\n }\r\n\r\n .has-error .mx-validation-message {\r\n margin-top: $spacing-small;\r\n margin-bottom: 0;\r\n padding: $spacing-small;\r\n color: $alert-danger-color;\r\n border-color: $alert-danger-border-color;\r\n background-color: $alert-danger-bg;\r\n }\r\n\r\n // Form Group\r\n .form-group {\r\n display: flex;\r\n flex-direction: row;\r\n margin-bottom: $form-group-margin-bottom;\r\n\r\n & > div[class*=\"col-\"] {\r\n display: flex;\r\n align-items: center;\r\n flex-wrap: wrap;\r\n }\r\n\r\n & > [class*=\"col-\"] {\r\n padding-right: $form-group-gutter;\r\n padding-left: $form-group-gutter;\r\n }\r\n\r\n // Alignment content\r\n div[class*=\"textBox\"] > .control-label,\r\n div[class*=\"textArea\"] > .control-label,\r\n div[class*=\"datePicker\"] > .control-label {\r\n @extend .form-control-static;\r\n }\r\n\r\n // Label\r\n .control-label {\r\n overflow: hidden;\r\n margin-bottom: 4px;\r\n text-align: left;\r\n text-overflow: ellipsis;\r\n color: $form-label-color;\r\n font-size: $form-label-size;\r\n font-weight: $form-label-weight;\r\n }\r\n\r\n .mx-validation-message {\r\n flex-basis: 100%;\r\n }\r\n\r\n &.no-columns:not(.label-after) {\r\n flex-direction: column;\r\n }\r\n }\r\n\r\n .form-group.label-after {\r\n .form-control-static {\r\n flex: unset;\r\n }\r\n\r\n .control-label {\r\n margin-bottom: 0;\r\n }\r\n }\r\n\r\n .mx-dateinput,\r\n .mx-referenceselector,\r\n .mx-referencesetselector {\r\n flex: 1;\r\n }\r\n\r\n // Targets only webkit iOS devices\r\n .dj_webkit.dj_ios .form-control {\r\n transform: translateZ(0);\r\n }\r\n\r\n @media only screen and (min-width: $screen-md) {\r\n .form-horizontal {\r\n .control-label {\r\n margin-bottom: 0;\r\n padding-top: $form-input-padding-y;\r\n padding-bottom: $form-input-padding-y;\r\n line-height: $form-input-line-height;\r\n }\r\n }\r\n }\r\n\r\n @media only screen and (max-width: $screen-sm-max) {\r\n .form-group {\r\n flex-direction: column;\r\n }\r\n }\r\n\r\n @media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 0) {\r\n // Fixes alignment bug on iPads / iPhones where datefield is not aligned vertically\r\n input[type=\"date\"],\r\n input[type=\"time\"],\r\n input[type=\"datetime-local\"],\r\n input[type=\"month\"] {\r\n line-height: 1;\r\n }\r\n // Fix shrinking of date inputs because inability of setting a placeholder\r\n input[type=\"time\"]:not(.has-value):before,\r\n input[type=\"date\"]:not(.has-value):before,\r\n input[type=\"month\"]:not(.has-value):before,\r\n input[type=\"datetime-local\"]:not(.has-value):before {\r\n margin-right: 0.5em;\r\n content: attr(placeholder) !important;\r\n color: #aaaaaa;\r\n }\r\n input[type=\"time\"].has-value:before,\r\n input[type=\"date\"].has-value:before,\r\n input[type=\"month\"].has-value:before,\r\n input[type=\"datetime-local\"].has-value:before {\r\n content: \"\" !important;\r\n }\r\n }\r\n\r\n @media (-ms-high-contrast: none), (-ms-high-contrast: active) {\r\n // Target IE10+\r\n .form-group {\r\n display: block;\r\n }\r\n }\r\n\r\n [dir=\"rtl\"] {\r\n // Dropdown input widget\r\n select.form-control {\r\n padding-right: 30px;\r\n padding-left: 0;\r\n background-position: #{$form-input-padding-x} center;\r\n }\r\n\r\n .mx-compound-control .btn {\r\n margin-right: $spacing-small;\r\n margin-left: 0;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin background-helpers() {\r\n /* ==========================================================================\r\n Background\r\n\r\n Different background components, all managed by variables\r\n ========================================================================== */\r\n\r\n .background-main {\r\n background-color: $bg-color !important;\r\n }\r\n\r\n //Brand variations\r\n\r\n .background-primary {\r\n background-color: $brand-primary !important;\r\n }\r\n\r\n .background-primary-darker {\r\n background-color: $color-primary-darker !important;\r\n }\r\n\r\n .background-primary.background-dark,\r\n .background-primary-dark {\r\n background-color: $color-primary-dark !important;\r\n }\r\n\r\n .background-primary.background-light,\r\n .background-primary-light {\r\n background-color: $color-primary-light !important;\r\n }\r\n\r\n .background-primary-lighter {\r\n background-color: $color-primary-lighter !important;\r\n }\r\n\r\n .background-secondary {\r\n background-color: $bg-color-secondary !important;\r\n }\r\n\r\n .background-secondary.background-light {\r\n background-color: $bg-color-secondary !important;\r\n }\r\n\r\n .background-secondary.background-dark {\r\n background-color: $bg-color-secondary !important;\r\n }\r\n\r\n .background-brand-gradient {\r\n background-image: $brand-gradient !important;\r\n }\r\n\r\n //Semantic variations\r\n\r\n .background-success {\r\n background-color: $brand-success !important;\r\n }\r\n\r\n .background-success-darker {\r\n background-color: $color-success-darker !important;\r\n }\r\n\r\n .background-success.background-dark,\r\n .background-success-dark {\r\n background-color: $color-success-dark !important;\r\n }\r\n\r\n .background-success.background-light,\r\n .background-success-light {\r\n background-color: $color-success-light !important;\r\n }\r\n\r\n .background-success-lighter {\r\n background-color: $color-success-lighter !important;\r\n }\r\n\r\n .background-warning {\r\n background-color: $brand-warning !important;\r\n }\r\n\r\n .background-warning-darker {\r\n background-color: $color-warning-darker !important;\r\n }\r\n\r\n .background-warning.background-dark,\r\n .background-warning-dark {\r\n background-color: $color-warning-dark !important;\r\n }\r\n\r\n .background-warning.background-light,\r\n .background-warning-light {\r\n background-color: $color-warning-light !important;\r\n }\r\n\r\n .background-warning-lighter {\r\n background-color: $color-warning-lighter !important;\r\n }\r\n\r\n .background-danger {\r\n background-color: $brand-danger !important;\r\n }\r\n\r\n .background-danger-darker {\r\n background-color: $color-danger-darker !important;\r\n }\r\n\r\n .background-danger.background-dark,\r\n .background-danger-dark {\r\n background-color: $color-danger-dark !important;\r\n }\r\n\r\n .background-danger.background-light,\r\n .background-danger-light {\r\n background-color: $color-danger-light !important;\r\n }\r\n\r\n .background-danger-lighter {\r\n background-color: $color-danger-lighter !important;\r\n }\r\n\r\n //Bootstrap variations\r\n\r\n .background-default {\r\n background-color: $brand-default !important;\r\n }\r\n\r\n .background-default-darker {\r\n background-color: $color-default-darker !important;\r\n }\r\n\r\n .background-default-dark {\r\n background-color: $color-default-dark !important;\r\n }\r\n\r\n .background-default-light {\r\n background-color: $color-default-light !important;\r\n }\r\n\r\n .background-default-lighter {\r\n background-color: $color-default-lighter !important;\r\n }\r\n\r\n .background-inverse {\r\n background-color: $brand-inverse !important;\r\n }\r\n\r\n .background-inverse-darker {\r\n background-color: $color-inverse-darker !important;\r\n }\r\n\r\n .background-inverse-dark {\r\n background-color: $color-inverse-dark !important;\r\n }\r\n\r\n .background-inverse-light {\r\n background-color: $color-inverse-light !important;\r\n }\r\n\r\n .background-inverse-lighter {\r\n background-color: $color-inverse-lighter !important;\r\n }\r\n\r\n .background-info {\r\n background-color: $brand-info !important;\r\n }\r\n\r\n .background-info-darker {\r\n background-color: $color-info-darker !important;\r\n }\r\n\r\n .background-info-dark {\r\n background-color: $color-info-dark !important;\r\n }\r\n\r\n .background-info-light {\r\n background-color: $color-info-light !important;\r\n }\r\n\r\n .background-info-lighter {\r\n background-color: $color-info-lighter !important;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin label() {\r\n /* ==========================================================================\r\n Label\r\n\r\n Default label combined with Bootstrap label\r\n ========================================================================== */\r\n\r\n .label {\r\n display: inline-block;\r\n margin: 0;\r\n padding: $spacing-smaller $spacing-small;\r\n text-align: center;\r\n vertical-align: baseline;\r\n white-space: nowrap;\r\n color: #ffffff;\r\n border-radius: 0.25em;\r\n font-size: 100%;\r\n line-height: 1;\r\n\r\n .form-control-static {\r\n font-weight: $font-weight-normal;\r\n all: unset;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin badge() {\r\n /* ==========================================================================\r\n Badge\r\n\r\n Override of default Bootstrap badge style\r\n ========================================================================== */\r\n\r\n .badge {\r\n display: inline-block;\r\n margin: 0;\r\n padding: $spacing-smaller $spacing-small;\r\n text-align: center;\r\n vertical-align: baseline;\r\n white-space: nowrap;\r\n color: #ffffff;\r\n font-size: 100%;\r\n line-height: 1;\r\n\r\n .form-control-static {\r\n font-weight: $font-weight-normal;\r\n all: unset;\r\n }\r\n }\r\n\r\n /* ==========================================================================\r\n Badge-web\r\n\r\n Widget styles\r\n ========================================================================== */\r\n\r\n .widget-badge {\r\n color: $label-primary-color;\r\n background-color: $label-primary-bg;\r\n }\r\n\r\n .widget-badge-clickable {\r\n cursor: pointer;\r\n }\r\n\r\n .widget-badge.badge:empty {\r\n display: initial;\r\n /* Fix padding to stay round */\r\n padding: $spacing-smaller calc(#{$spacing-small} + 2px);\r\n }\r\n\r\n .widget-badge.label:empty {\r\n display: initial;\r\n /* Fix padding to stay square */\r\n padding: $spacing-smaller calc(#{$spacing-small} + 2px);\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin label-helpers() {\r\n /* ==========================================================================\r\n Label\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component including\r\n badge widget\r\n ========================================================================== */\r\n // Color variations\r\n .label-secondary,\r\n .label-default {\r\n color: $label-default-color;\r\n background-color: $label-default-bg;\r\n }\r\n\r\n .label-primary {\r\n color: $label-primary-color;\r\n background-color: $label-primary-bg;\r\n }\r\n\r\n .label-success {\r\n color: $label-success-color;\r\n background-color: $label-success-bg;\r\n }\r\n\r\n .label-inverse {\r\n color: $label-inverse-color;\r\n background-color: $label-inverse-bg;\r\n }\r\n\r\n .label-info {\r\n color: $label-info-color;\r\n background-color: $label-info-bg;\r\n }\r\n\r\n .label-warning {\r\n color: $label-warning-color;\r\n background-color: $label-warning-bg;\r\n }\r\n\r\n .label-danger {\r\n color: $label-danger-color;\r\n background-color: $label-danger-bg;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin badge-button() {\r\n /* ==========================================================================\r\n Badge button\r\n\r\n Widget styles\r\n ========================================================================== */\r\n .widget-badge-button {\r\n display: inline-block;\r\n\r\n .widget-badge-button-text {\r\n white-space: nowrap;\r\n padding-right: 5px;\r\n }\r\n\r\n .badge {\r\n top: unset;\r\n display: inline-block;\r\n margin: 0;\r\n padding: $spacing-smaller $spacing-small;\r\n text-align: center;\r\n vertical-align: baseline;\r\n white-space: nowrap;\r\n background-color: $btn-primary-color;\r\n color: $btn-primary-bg;\r\n font-size: 100%;\r\n line-height: 1;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin badge-button-helpers() {\r\n /* ==========================================================================\r\n Badge button\r\n\r\n Different background components, all managed by variables\r\n ========================================================================== */\r\n\r\n //Badge button color variation\r\n .btn-secondary,\r\n .btn-default {\r\n .badge {\r\n color: $btn-default-bg;\r\n background-color: $btn-primary-bg;\r\n }\r\n }\r\n\r\n .btn-success {\r\n .badge {\r\n color: $btn-success-bg;\r\n }\r\n }\r\n\r\n .btn-warning {\r\n .badge {\r\n color: $btn-warning-bg;\r\n }\r\n }\r\n\r\n .btn-danger {\r\n .badge {\r\n color: $btn-danger-bg;\r\n }\r\n }\r\n\r\n //Badge button bordered variation\r\n\r\n .btn-bordered.btn-primary {\r\n .badge {\r\n background: $btn-primary-bg;\r\n color: $btn-primary-color;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n .badge {\r\n background-color: $btn-primary-color;\r\n color: $btn-primary-bg;\r\n }\r\n }\r\n }\r\n\r\n .btn-bordered.btn-success {\r\n .badge {\r\n background: $btn-success-bg;\r\n color: $btn-success-color;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n .badge {\r\n background-color: $btn-success-color;\r\n color: $btn-success-bg;\r\n }\r\n }\r\n }\r\n\r\n .btn-bordered.btn-warning {\r\n .badge {\r\n background: $btn-warning-bg;\r\n color: $btn-warning-color;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n .badge {\r\n background-color: $btn-warning-color;\r\n color: $btn-warning-bg;\r\n }\r\n }\r\n }\r\n\r\n .btn-bordered.btn-danger {\r\n .badge {\r\n background: $btn-danger-bg;\r\n color: $btn-danger-color;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n .badge {\r\n background-color: $btn-danger-color;\r\n color: $btn-danger-bg;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin button() {\r\n /* ==========================================================================\r\n Button\r\n\r\n Default Bootstrap and Mendix button\r\n ========================================================================== */\r\n\r\n .btn,\r\n .mx-button {\r\n display: inline-block;\r\n margin-bottom: 0;\r\n padding: 0.6em 1em;\r\n cursor: pointer;\r\n -webkit-user-select: none;\r\n user-select: none;\r\n transition: all 0.2s ease-in-out;\r\n text-align: center;\r\n vertical-align: middle;\r\n white-space: nowrap;\r\n color: $btn-default-color;\r\n border: 1px solid $btn-default-border-color;\r\n border-radius: $btn-border-radius;\r\n background-color: $btn-default-bg;\r\n background-image: none;\r\n box-shadow: none;\r\n text-shadow: none;\r\n font-size: $btn-font-size;\r\n line-height: $line-height-base;\r\n\r\n &:hover,\r\n &:focus,\r\n &:active,\r\n &:active:focus {\r\n outline: none;\r\n box-shadow: none;\r\n }\r\n\r\n &[aria-disabled] {\r\n cursor: not-allowed;\r\n pointer-events: none;\r\n opacity: 0.65;\r\n }\r\n\r\n @if $btn-bordered != false {\r\n @extend .btn-bordered;\r\n }\r\n }\r\n\r\n // Mendix button link\r\n .mx-link {\r\n padding: 0;\r\n color: $link-color;\r\n\r\n &[aria-disabled=\"true\"] {\r\n cursor: not-allowed;\r\n pointer-events: none;\r\n opacity: 0.65;\r\n }\r\n }\r\n\r\n .link-back {\r\n color: $font-color-detail;\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n top: 2px;\r\n }\r\n }\r\n\r\n // Images and icons in buttons\r\n .btn,\r\n .mx-button,\r\n .mx-link {\r\n img {\r\n //height: auto; // MXUI override who set the height on 16px default\r\n height: calc(#{$font-size-default} + 4px);\r\n margin-right: 4px;\r\n vertical-align: text-top;\r\n }\r\n }\r\n\r\n //== Phone specific\r\n //-------------------------------------------------------------------------------------------------------------------//\r\n .profile-phone {\r\n .btn,\r\n .mx-link {\r\n &:active {\r\n transform: translateY(1px);\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin button-helpers() {\r\n /* ==========================================================================\r\n Button\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Color variations\r\n .btn,\r\n .btn-default {\r\n @include button-variant($btn-default-color, $btn-default-bg, $btn-default-border-color, $btn-default-bg-hover);\r\n }\r\n\r\n .btn-primary {\r\n @include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border-color, $btn-primary-bg-hover);\r\n }\r\n\r\n .btn-inverse {\r\n @include button-variant($btn-inverse-color, $btn-inverse-bg, $btn-inverse-border-color, $btn-inverse-bg-hover);\r\n }\r\n\r\n .btn-success {\r\n @include button-variant($btn-success-color, $btn-success-bg, $btn-success-border-color, $btn-success-bg-hover);\r\n }\r\n\r\n .btn-info {\r\n @include button-variant($btn-info-color, $btn-info-bg, $btn-info-border-color, $btn-info-bg-hover);\r\n }\r\n\r\n .btn-warning {\r\n @include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border-color, $btn-warning-bg-hover);\r\n }\r\n\r\n .btn-danger {\r\n @include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border-color, $btn-danger-bg-hover);\r\n }\r\n\r\n // Button Sizes\r\n .btn-lg {\r\n font-size: $font-size-large;\r\n\r\n img {\r\n height: calc(#{$font-size-small} + 4px);\r\n }\r\n }\r\n\r\n .btn-sm {\r\n font-size: $font-size-small;\r\n\r\n img {\r\n height: calc(#{$font-size-small} + 4px);\r\n }\r\n }\r\n\r\n // Button Image\r\n .btn-image {\r\n padding: 0;\r\n vertical-align: middle;\r\n border-style: none;\r\n background-color: transparent;\r\n\r\n img {\r\n display: block; // or else the button doesn't get a width\r\n height: auto; // Image set height\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: transparent;\r\n }\r\n }\r\n\r\n // Icon buttons\r\n .btn-icon {\r\n & > img,\r\n & > .glyphicon,\r\n & > .mx-icon-lined,\r\n & > .mx-icon-filled {\r\n margin: 0;\r\n }\r\n }\r\n\r\n .btn-icon-right {\r\n display: inline-flex;\r\n flex-direction: row-reverse;\r\n align-items: center;\r\n\r\n & > img,\r\n & > .glyphicon,\r\n & > .mx-icon-lined,\r\n & > .mx-icon-filled {\r\n top: 0;\r\n margin-left: 4px;\r\n }\r\n }\r\n\r\n .btn-icon-top {\r\n padding-right: 0;\r\n padding-left: 0;\r\n\r\n & > img,\r\n & > .glyphicon,\r\n & > .mx-icon-lined,\r\n & > .mx-icon-filled {\r\n display: block;\r\n margin: 0 0 4px 0;\r\n }\r\n }\r\n\r\n .btn-icon-only {\r\n @extend .btn-icon;\r\n padding: 0;\r\n color: $btn-default-icon-color;\r\n border: none;\r\n }\r\n\r\n .btn-block {\r\n display: block;\r\n width: 100%;\r\n }\r\n\r\n .btn-block + .btn-block {\r\n margin-top: 4px;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin button-variant($color, $background, $border, $hover) {\r\n @if not $exclude-button {\r\n color: $color;\r\n border-color: $border;\r\n background-color: $background;\r\n\r\n &:hover,\r\n &:focus,\r\n &:active,\r\n &.active,\r\n .open > &.dropdown-toggle {\r\n color: $color;\r\n border-color: $hover;\r\n background-color: $hover;\r\n }\r\n &:active,\r\n &.active,\r\n .open > &.dropdown-toggle {\r\n background-image: none;\r\n }\r\n &.disabled,\r\n &[disabled],\r\n &[aria-disabled],\r\n fieldset[disabled] {\r\n &,\r\n &:hover,\r\n &:focus,\r\n &:active,\r\n &.active {\r\n border-color: $border;\r\n background-color: $background;\r\n }\r\n }\r\n // Button bordered\r\n &.btn-bordered {\r\n background-color: transparent;\r\n @if $color != $btn-default-color {\r\n color: $border;\r\n }\r\n\r\n &:hover,\r\n &:focus,\r\n &:active,\r\n &.active,\r\n .open > &.dropdown-toggle {\r\n color: $color;\r\n border-color: $border;\r\n background-color: $border;\r\n }\r\n }\r\n // Button as link\r\n &.btn-link {\r\n text-decoration: none;\r\n border-color: transparent;\r\n background-color: transparent;\r\n @if $color != $btn-default-color {\r\n color: $background;\r\n }\r\n\r\n &:hover {\r\n border-color: $btn-link-bg-hover;\r\n background-color: $btn-link-bg-hover;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin check-box() {\r\n /* ==========================================================================\r\n Check box\r\n\r\n Default Mendix check box widget\r\n ========================================================================== */\r\n\r\n .mx-checkbox.label-after {\r\n flex-wrap: wrap;\r\n\r\n .control-label {\r\n display: flex;\r\n align-items: center;\r\n padding: 0;\r\n }\r\n }\r\n\r\n input[type=\"checkbox\"] {\r\n position: relative !important; //Remove after mxui merge\r\n width: 16px;\r\n height: 16px;\r\n margin: 0 !important; // Remove after mxui merge\r\n cursor: pointer;\r\n -webkit-user-select: none;\r\n user-select: none;\r\n appearance: none;\r\n -moz-appearance: none;\r\n -webkit-appearance: none;\r\n transform: translateZ(0);\r\n\r\n &:before,\r\n &:after {\r\n position: absolute;\r\n display: block;\r\n transition: all 0.3s ease;\r\n }\r\n\r\n &:before {\r\n // Checkbox\r\n width: 100%;\r\n height: 100%;\r\n content: \"\";\r\n border: 1px solid $form-input-border-color;\r\n border-radius: $form-input-border-radius;\r\n background-color: transparent;\r\n }\r\n\r\n &:after {\r\n // Checkmark\r\n width: 8px;\r\n height: 4px;\r\n margin: 5px 4px;\r\n transform: rotate(-45deg);\r\n pointer-events: none;\r\n border: 2px solid #ffffff;\r\n border-top: 0;\r\n border-right: 0;\r\n }\r\n\r\n &:not(:disabled):not(:checked):hover:after {\r\n content: \"\";\r\n border-color: $form-input-bg-hover; // color of checkmark on hover\r\n }\r\n\r\n &:checked:before {\r\n border-color: $form-input-border-focus-color;\r\n background-color: $form-input-border-focus-color;\r\n }\r\n\r\n &:checked:after {\r\n content: \"\";\r\n }\r\n\r\n &:disabled:before {\r\n background-color: $form-input-bg-disabled;\r\n }\r\n\r\n &:checked:disabled:before {\r\n border-color: transparent;\r\n background-color: rgba($form-input-border-focus-color, 0.4);\r\n }\r\n\r\n &:disabled:after,\r\n &:checked:disabled:after {\r\n border-color: $form-input-bg-disabled;\r\n }\r\n\r\n & + .control-label {\r\n margin-left: $form-label-gutter;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin grid() {\r\n /* ==========================================================================\r\n Grid\r\n\r\n Default Mendix grid (used for Mendix data grid)\r\n ========================================================================== */\r\n\r\n .mx-grid {\r\n padding: 0px;\r\n border: 0;\r\n border-radius: 0;\r\n\r\n .mx-grid-controlbar {\r\n margin: 10px 0;\r\n /* Paging */\r\n .mx-grid-pagingbar {\r\n /* Buttons */\r\n .mx-button {\r\n padding: 8px;\r\n color: $grid-paging-color;\r\n border-color: $grid-paging-border-color;\r\n background-color: $grid-paging-bg;\r\n\r\n &:hover {\r\n color: $grid-paging-color-hover;\r\n border-color: $grid-paging-border-color-hover;\r\n background-color: $grid-paging-bg-hover;\r\n }\r\n }\r\n\r\n /* Text Paging .. to .. to .. */\r\n .mx-grid-paging-status {\r\n padding: 0 8px 8px;\r\n }\r\n }\r\n }\r\n\r\n .mx-grid-searchbar {\r\n margin: 10px 0;\r\n\r\n .mx-grid-search-item {\r\n .mx-grid-search-label {\r\n vertical-align: middle;\r\n\r\n label {\r\n padding-top: 5px;\r\n }\r\n }\r\n\r\n .mx-grid-search-input {\r\n display: inline-flex;\r\n\r\n .form-control {\r\n height: 28px;\r\n font-size: 11px;\r\n }\r\n\r\n select.form-control {\r\n padding: 3px;\r\n vertical-align: middle;\r\n }\r\n\r\n .mx-button {\r\n height: 28px;\r\n padding-top: 2px;\r\n padding-bottom: 2px;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Remove default border from grid inside a Mendix Dataview\r\n .mx-dataview .mx-grid {\r\n border: 0;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin data-grid() {\r\n /* ==========================================================================\r\n Data grid default\r\n\r\n Default Mendix data grid widget. The data grid shows a list of objects in a grid\r\n ========================================================================== */\r\n\r\n .mx-datagrid {\r\n table {\r\n border-width: 0;\r\n background-color: transparent;\r\n /* Table header */\r\n th {\r\n border-style: solid;\r\n border-color: $grid-border-color;\r\n border-top-width: 0;\r\n border-right: 0;\r\n border-bottom-width: 1px;\r\n border-left: 0;\r\n background-color: $grid-bg-header;\r\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\r\n vertical-align: middle;\r\n\r\n .mx-datagrid-head-caption {\r\n white-space: normal;\r\n }\r\n }\r\n\r\n /* Table Body */\r\n tbody tr {\r\n td {\r\n @include transition();\r\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\r\n vertical-align: middle;\r\n border-width: 0;\r\n border-color: $grid-border-color;\r\n border-bottom-width: 1px;\r\n border-bottom-style: solid;\r\n background-color: $grid-bg;\r\n\r\n &:focus {\r\n outline: none;\r\n }\r\n\r\n /* Text without spaces */\r\n .mx-datagrid-data-wrapper {\r\n text-overflow: ellipsis;\r\n }\r\n }\r\n\r\n &.selected td,\r\n &.selected:hover td {\r\n color: $grid-selected-color;\r\n background-color: $grid-bg-selected !important;\r\n }\r\n }\r\n\r\n /* Table Footer */\r\n tfoot {\r\n > tr > th {\r\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\r\n border-width: 0;\r\n background-color: $grid-footer-bg;\r\n }\r\n\r\n > tr > td {\r\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\r\n border-width: 0;\r\n background-color: $grid-bg;\r\n font-weight: $font-weight-bold;\r\n }\r\n }\r\n\r\n & *:focus {\r\n outline: 0;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin transition(\r\n $style: initial,\r\n $delay: 0s,\r\n $duration: 0.3s,\r\n $property: all,\r\n $timing-function: cubic-bezier(0.4, 0, 0.2, 1)\r\n) {\r\n @if not $exclude-animations {\r\n transition: $property $duration $delay $timing-function;\r\n transform-style: $style;\r\n }\r\n}\r\n\r\n@mixin ripple($color: #000, $transparency: 10%, $scale: 10) {\r\n @if not $exclude-animations {\r\n position: relative;\r\n overflow: hidden;\r\n transform: translate3d(0, 0, 0);\r\n\r\n &:after {\r\n content: \"\";\r\n display: block;\r\n position: absolute;\r\n width: 100%;\r\n height: 100%;\r\n top: 0;\r\n left: 0;\r\n pointer-events: none;\r\n background-image: radial-gradient(circle, $color $transparency, transparent $transparency);\r\n background-repeat: no-repeat;\r\n background-position: 50%;\r\n transform: scale($scale, $scale);\r\n opacity: 0;\r\n transition: transform 0.5s, opacity 1s;\r\n }\r\n\r\n &:active:after {\r\n transform: scale(0, 0);\r\n opacity: 0.1;\r\n transition: 0s;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin data-grid-helpers() {\r\n /* ==========================================================================\r\n Data grid default\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Striped style\r\n .datagrid-striped.mx-datagrid {\r\n table {\r\n th {\r\n border-width: 0;\r\n }\r\n\r\n tbody tr {\r\n td {\r\n border-top-width: 0;\r\n }\r\n\r\n &:nth-child(odd) td {\r\n background-color: $grid-bg-striped;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Bordered style\r\n .datagrid-bordered.mx-datagrid {\r\n table {\r\n border: 1px solid;\r\n\r\n th {\r\n border: 1px solid $grid-border-color;\r\n }\r\n\r\n tbody tr {\r\n td {\r\n border: 1px solid $grid-border-color;\r\n }\r\n }\r\n }\r\n\r\n tfoot {\r\n > tr > th {\r\n border-width: 0;\r\n background-color: $grid-footer-bg;\r\n }\r\n\r\n > tr > td {\r\n border-width: 1px;\r\n }\r\n }\r\n }\r\n\r\n // Transparent style so you can see the background\r\n .datagrid-transparent.mx-datagrid {\r\n table {\r\n background-color: transparent;\r\n\r\n tbody tr {\r\n &:nth-of-type(odd) {\r\n background-color: transparent;\r\n }\r\n\r\n td {\r\n background-color: transparent;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Hover style activated\r\n .datagrid-hover.mx-datagrid {\r\n table {\r\n tbody tr {\r\n &:hover td {\r\n background-color: $grid-bg-hover !important;\r\n }\r\n\r\n &.selected:hover td {\r\n background-color: $grid-bg-selected-hover !important;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Datagrid Row Sizes\r\n .datagrid-lg.mx-datagrid {\r\n table {\r\n th {\r\n padding: ($grid-padding-top * 2) ($grid-padding-right * 2) ($grid-padding-bottom * 2)\r\n ($grid-padding-left * 2);\r\n }\r\n\r\n tbody tr {\r\n td {\r\n padding: ($grid-padding-top * 2) ($grid-padding-right * 2) ($grid-padding-bottom * 2)\r\n ($grid-padding-left * 2);\r\n }\r\n }\r\n }\r\n }\r\n\r\n .datagrid-sm.mx-datagrid {\r\n table {\r\n th {\r\n padding: ($grid-padding-top / 2) ($grid-padding-right / 2) ($grid-padding-bottom / 2)\r\n ($grid-padding-left / 2);\r\n }\r\n\r\n tbody tr {\r\n td {\r\n padding: ($grid-padding-top / 2) ($grid-padding-right / 2) ($grid-padding-bottom / 2)\r\n ($grid-padding-left/ 2);\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Datagrid Full Search\r\n // Default Mendix Datagrid Widget with adjusted search field. Only 1 search field is allowed\r\n .datagrid-fullsearch.mx-grid {\r\n .mx-grid-search-button {\r\n @extend .btn-primary;\r\n }\r\n\r\n .mx-grid-reset-button {\r\n display: none;\r\n }\r\n\r\n .mx-grid-search-item {\r\n display: block;\r\n }\r\n\r\n .mx-grid-search-label {\r\n display: none;\r\n }\r\n\r\n .mx-grid-searchbar {\r\n .mx-grid-search-controls {\r\n position: absolute;\r\n right: 0;\r\n }\r\n\r\n .mx-grid-search-input {\r\n width: 80%;\r\n padding-left: 0;\r\n\r\n .btn,\r\n .form-control {\r\n height: 35px;\r\n font-size: 12px;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin data-view() {\r\n /* ==========================================================================\r\n Data view\r\n\r\n Default Mendix data view widget. The data view is used for showing the contents of exactly one object\r\n ========================================================================== */\r\n\r\n .mx-dataview {\r\n /* Dataview-content gives problems for nexted layout grid containers */\r\n > .mx-dataview-content > .mx-container-nested {\r\n > .row {\r\n margin-right: 0;\r\n margin-left: 0;\r\n }\r\n }\r\n\r\n /* Dataview empty message */\r\n .mx-dataview-message {\r\n color: $dataview-emptymessage-color;\r\n background: $dataview-emptymessage-bg;\r\n }\r\n }\r\n\r\n .mx-dataview-controls {\r\n margin-top: $spacing-medium;\r\n padding: $spacing-medium 0 0;\r\n border-top: 1px solid $dataview-controls-border-color;\r\n border-radius: 0;\r\n background-color: $dataview-controls-bg;\r\n /* Buttons */\r\n .mx-button {\r\n margin-right: $spacing-small;\r\n margin-bottom: 0;\r\n\r\n &:last-child {\r\n margin-right: 0;\r\n }\r\n }\r\n\r\n background-color: inherit;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin date-picker() {\r\n /* ==========================================================================\r\n Date picker\r\n\r\n Default Mendix date picker widget\r\n ========================================================================== */\r\n\r\n .mx-calendar {\r\n /* (must be higher than popup z-index) */\r\n z-index: 10010 !important;\r\n padding: 8px;\r\n font-size: 12px;\r\n background: $bg-color;\r\n border-radius: $border-radius-default;\r\n border: 1px solid $border-color-default;\r\n box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);\r\n\r\n .mx-calendar-month-header {\r\n display: flex;\r\n flex-direction: row;\r\n justify-content: space-between;\r\n margin: 0 3px 10px 3px;\r\n }\r\n\r\n .mx-calendar-month-next,\r\n .mx-calendar-month-previous,\r\n .mx-calendar-month-dropdown {\r\n border: 0;\r\n cursor: pointer;\r\n background: transparent;\r\n }\r\n\r\n .mx-calendar-month-next,\r\n .mx-calendar-month-previous {\r\n &:hover {\r\n color: $brand-primary;\r\n }\r\n }\r\n\r\n .mx-calendar-month-dropdown {\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n position: relative;\r\n\r\n .mx-calendar-month-current:first-child {\r\n margin-right: 10px;\r\n }\r\n }\r\n\r\n th {\r\n color: $brand-primary;\r\n }\r\n\r\n th,\r\n td {\r\n width: 35px;\r\n height: 35px;\r\n text-align: center;\r\n }\r\n\r\n td {\r\n color: $font-color-default;\r\n\r\n &:hover {\r\n cursor: pointer;\r\n border-radius: 50%;\r\n color: $brand-primary;\r\n background-color: $brand-default;\r\n }\r\n }\r\n\r\n .mx-calendar-day-month-next,\r\n .mx-calendar-day-month-previous {\r\n color: lighten($font-color-default, 45%);\r\n }\r\n\r\n .mx-calendar-day-selected,\r\n .mx-calendar-day-selected:hover {\r\n color: #fff;\r\n border-radius: 50%;\r\n background: $brand-primary;\r\n }\r\n\r\n //\r\n\r\n .mx-calendar-year-switcher {\r\n text-align: center;\r\n margin-top: 10px;\r\n color: lighten($brand-primary, 30%);\r\n\r\n span.mx-calendar-year-selected {\r\n color: $brand-primary;\r\n margin-left: 10px;\r\n margin-right: 10px;\r\n }\r\n\r\n span:hover {\r\n cursor: pointer;\r\n text-decoration: underline;\r\n background-color: transparent;\r\n }\r\n }\r\n }\r\n\r\n .mx-calendar-month-dropdown-options {\r\n /* (must be higher than popup z-index) */\r\n z-index: 10020 !important;\r\n position: absolute;\r\n top: 25px;\r\n padding: 2px 10px;\r\n border-radius: $border-radius-default;\r\n background-color: $bg-color;\r\n\r\n div {\r\n cursor: pointer;\r\n font-size: 12px;\r\n padding: 2px 0;\r\n\r\n &:hover,\r\n &:focus {\r\n color: $brand-primary;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin header() {\r\n /* ==========================================================================\r\n Header\r\n\r\n Default Mendix mobile header\r\n ========================================================================== */\r\n\r\n .mx-header {\r\n z-index: 100;\r\n display: flex;\r\n width: 100%;\r\n height: $m-header-height;\r\n padding: 0;\r\n text-align: initial;\r\n color: $m-header-color;\r\n background-color: $m-header-bg;\r\n box-shadow: 0px 2px 2px rgba(194, 196, 201, 0.30354);\r\n\r\n // Reset mxui\r\n div.mx-header-left,\r\n div.mx-header-right {\r\n position: relative;\r\n top: initial;\r\n right: initial;\r\n left: initial;\r\n display: flex;\r\n align-items: center;\r\n width: 25%;\r\n height: 100%;\r\n\r\n .mx-placeholder {\r\n display: flex;\r\n align-items: center;\r\n height: 100%;\r\n }\r\n }\r\n\r\n div.mx-header-left .mx-placeholder {\r\n order: 1;\r\n\r\n .mx-placeholder {\r\n justify-content: flex-start;\r\n }\r\n }\r\n\r\n div.mx-header-center {\r\n overflow: hidden;\r\n flex: 1;\r\n order: 2;\r\n text-align: center;\r\n\r\n .mx-title {\r\n overflow: hidden;\r\n width: 100%;\r\n margin: 0;\r\n text-overflow: ellipsis;\r\n color: $m-header-color;\r\n font-size: $m-header-title-size;\r\n line-height: $m-header-height;\r\n }\r\n }\r\n\r\n div.mx-header-right {\r\n order: 3;\r\n\r\n .mx-placeholder {\r\n justify-content: flex-end;\r\n }\r\n }\r\n\r\n // Content magic\r\n .mx-link {\r\n display: flex;\r\n align-items: center;\r\n height: 100%;\r\n transition: all 0.2s;\r\n text-decoration: none;\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n top: 0;\r\n font-size: 23px;\r\n }\r\n\r\n &:active {\r\n transform: translateY(1px);\r\n color: $link-hover-color;\r\n }\r\n }\r\n\r\n .mx-link,\r\n .btn,\r\n img {\r\n padding: 0 $spacing-medium;\r\n }\r\n\r\n .mx-sidebartoggle {\r\n font-size: 24px;\r\n line-height: $m-header-height;\r\n\r\n img {\r\n height: 20px;\r\n }\r\n }\r\n }\r\n\r\n // RTL support\r\n body[dir=\"rtl\"] {\r\n .mx-header-left {\r\n order: 3;\r\n }\r\n\r\n .mx-header-right {\r\n order: 1;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin glyphicon() {\r\n /* ==========================================================================\r\n Glyphicon\r\n\r\n Default Mendix glyphicon\r\n ========================================================================== */\r\n\r\n .mx-glyphicon {\r\n &:before {\r\n display: inline-block;\r\n margin-top: -0.2em;\r\n margin-right: 0.4555555em;\r\n vertical-align: middle;\r\n font-family: \"Glyphicons Halflings\";\r\n font-weight: $font-weight-normal;\r\n font-style: normal;\r\n line-height: inherit;\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin group-box() {\r\n /* ==========================================================================\r\n Group box\r\n\r\n Default Mendix group box\r\n ========================================================================== */\r\n\r\n .mx-groupbox {\r\n margin: 0;\r\n\r\n > .mx-groupbox-header {\r\n margin: 0;\r\n color: $groupbox-default-color;\r\n border-width: 1px 1px 0 1px;\r\n border-style: solid;\r\n border-color: $groupbox-default-bg;\r\n background: $groupbox-default-bg;\r\n font-size: $font-size-h5;\r\n border-radius: $border-radius-default $border-radius-default 0 0;\r\n padding: $spacing-small * 1.5 $spacing-medium;\r\n\r\n .mx-groupbox-collapse-icon {\r\n margin-top: 0.1em;\r\n }\r\n }\r\n\r\n // Header options\r\n > h1.mx-groupbox-header {\r\n font-size: $font-size-h1;\r\n }\r\n\r\n > h2.mx-groupbox-header {\r\n font-size: $font-size-h2;\r\n }\r\n\r\n > h3.mx-groupbox-header {\r\n font-size: $font-size-h3;\r\n }\r\n\r\n > h4.mx-groupbox-header {\r\n font-size: $font-size-h4;\r\n }\r\n\r\n > h5.mx-groupbox-header {\r\n font-size: $font-size-h5;\r\n }\r\n\r\n > h6.mx-groupbox-header {\r\n font-size: $font-size-h6;\r\n }\r\n\r\n > .mx-groupbox-body {\r\n padding: $spacing-small * 1.5 $spacing-medium;\r\n border-width: 1px;\r\n border-style: solid;\r\n border-color: $groupbox-default-bg;\r\n background-color: #ffffff;\r\n border-radius: $border-radius-default;\r\n }\r\n\r\n .mx-groupbox-header + .mx-groupbox-body {\r\n border-top: none;\r\n }\r\n\r\n &.collapsed > .mx-groupbox-header {\r\n }\r\n }\r\n\r\n //With header\r\n .mx-groupbox-header ~ .mx-groupbox-body {\r\n border-radius: 0 0 $border-radius-default $border-radius-default;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin group-box-helpers() {\r\n /* ==========================================================================\r\n Group box\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Color variations\r\n .groupbox-secondary,\r\n .groupbox-default {\r\n @include groupbox-variant($groupbox-default-color, $groupbox-default-bg);\r\n }\r\n\r\n .groupbox-primary {\r\n @include groupbox-variant($groupbox-primary-color, $groupbox-primary-bg);\r\n }\r\n\r\n // Success appears as green\r\n .groupbox-success {\r\n @include groupbox-variant($groupbox-success-color, $groupbox-success-bg);\r\n }\r\n\r\n // Warning appears as orange\r\n .groupbox-warning {\r\n @include groupbox-variant($groupbox-warning-color, $groupbox-warning-bg);\r\n }\r\n\r\n // Danger and error appear as red\r\n .groupbox-danger {\r\n @include groupbox-variant($groupbox-danger-color, $groupbox-danger-bg);\r\n }\r\n\r\n .groupbox-transparent {\r\n > .mx-groupbox-header {\r\n padding: $spacing-small * 1.5 0;\r\n color: $gray-darker;\r\n border-style: none;\r\n background: transparent;\r\n font-weight: $font-weight-semibold;\r\n }\r\n\r\n .mx-groupbox-body {\r\n padding: $spacing-small 0;\r\n border-radius: 0;\r\n border: 0;\r\n border-bottom: 1px solid $groupbox-default-bg;\r\n background-color: transparent;\r\n }\r\n\r\n .mx-groupbox-collapse-icon {\r\n color: $brand-primary;\r\n }\r\n }\r\n\r\n // Callout Look and Feel\r\n .groupbox-callout {\r\n > .mx-groupbox-header,\r\n > .mx-groupbox-body {\r\n border: 0;\r\n background-color: $callout-primary-bg;\r\n }\r\n\r\n > .mx-groupbox-header {\r\n color: $callout-primary-color;\r\n }\r\n\r\n .mx-groupbox-header + .mx-groupbox-body {\r\n padding-top: 0;\r\n }\r\n }\r\n\r\n .groupbox-success.groupbox-callout {\r\n > .mx-groupbox-header,\r\n > .mx-groupbox-body {\r\n background-color: $callout-success-bg;\r\n }\r\n\r\n > .mx-groupbox-header {\r\n color: $callout-success-color;\r\n }\r\n }\r\n\r\n .groupbox-warning.groupbox-callout {\r\n > .mx-groupbox-header,\r\n > .mx-groupbox-body {\r\n background-color: $callout-warning-bg;\r\n }\r\n\r\n > .mx-groupbox-header {\r\n color: $callout-warning-color;\r\n }\r\n }\r\n\r\n .groupbox-danger.groupbox-callout {\r\n > .mx-groupbox-header,\r\n > .mx-groupbox-body {\r\n background-color: $callout-danger-bg;\r\n }\r\n\r\n > .mx-groupbox-header {\r\n color: $callout-danger-color;\r\n }\r\n }\r\n\r\n //Bootstrap variations\r\n\r\n .groupbox-info {\r\n @include groupbox-variant($groupbox-info-color, $groupbox-info-bg);\r\n }\r\n\r\n .groupbox-inverse {\r\n @include groupbox-variant($groupbox-inverse-color, $groupbox-inverse-bg);\r\n }\r\n\r\n .groupbox-white {\r\n @include groupbox-variant($groupbox-white-color, $groupbox-white-bg);\r\n }\r\n\r\n .groupbox-info.groupbox-callout {\r\n > .mx-groupbox-header,\r\n > .mx-groupbox-body {\r\n background-color: $callout-info-bg;\r\n }\r\n\r\n > .mx-groupbox-header {\r\n color: $callout-info-color;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin groupbox-variant($color, $background) {\r\n @if not $exclude-group-box {\r\n > .mx-groupbox-header {\r\n color: $color;\r\n border-color: $background;\r\n background: $background;\r\n }\r\n > .mx-groupbox-body {\r\n border-color: $background;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n//\r\n// ██████╗ █████╗ ███████╗██╗ ██████╗\r\n// ██╔══██╗██╔══██╗██╔════╝██║██╔════╝\r\n// ██████╔╝███████║███████╗██║██║\r\n// ██╔══██╗██╔══██║╚════██║██║██║\r\n// ██████╔╝██║ ██║███████║██║╚██████╗\r\n// ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝\r\n//\r\n\r\n//== Gray Shades\r\n//## Different gray shades to be used for our variables and components\r\n$gray-darker: #3b4251 !default;\r\n$gray-dark: #606671 !default;\r\n$gray: #787d87 !default;\r\n$gray-light: #6c7180 !default;\r\n$gray-primary: #ced0d3 !default;\r\n$gray-lighter: #f8f8f8 !default;\r\n\r\n//== Step 1: Brand Colors\r\n$brand-default: $gray-primary !default;\r\n$brand-primary: #264ae5 !default;\r\n$brand-success: #3cb33d !default;\r\n$brand-warning: #eca51c !default;\r\n$brand-danger: #e33f4e !default;\r\n\r\n$brand-logo: false !default;\r\n$brand-logo-height: 26px !default;\r\n$brand-logo-width: 26px !default; // Only used for CSS brand logo\r\n\r\n//== Step 2: UI Customization\r\n\r\n// Default Font Size & Color\r\n$font-size-default: 14px !default;\r\n$font-color-default: #6c717e !default;\r\n\r\n// Global Border Color\r\n$border-color-default: #ced0d3 !default;\r\n$border-radius-default: 5px !default;\r\n\r\n// Topbar\r\n$topbar-bg: #fff !default;\r\n$topbar-minimalheight: 60px !default;\r\n$topbar-border-color: $border-color-default !default;\r\n\r\n// Topbar mobile\r\n$m-header-height: 45px !default;\r\n$m-header-bg: $brand-primary !default;\r\n$m-header-color: #fff !default;\r\n$m-header-title-size: 16px !default;\r\n\r\n// Navbar Brand Name / For your company, product, or project name (used in layouts/base/)\r\n$navbar-brand-name: $font-color-default !default;\r\n\r\n// Background Colors\r\n// Backgrounds\r\n$bg-color: #f8f8f8 !default;\r\n$bg-color-secondary: #fff !default;\r\n\r\n// Default Link Color\r\n$link-color: $brand-primary !default;\r\n$link-hover-color: darken($link-color, 15%) !default;\r\n\r\n//\r\n// █████╗ ██████╗ ██╗ ██╗ █████╗ ███╗ ██╗ ██████╗███████╗██████╗\r\n// ██╔══██╗██╔══██╗██║ ██║██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗\r\n// ███████║██║ ██║██║ ██║███████║██╔██╗ ██║██║ █████╗ ██║ ██║\r\n// ██╔══██║██║ ██║╚██╗ ██╔╝██╔══██║██║╚██╗██║██║ ██╔══╝ ██║ ██║\r\n// ██║ ██║██████╔╝ ╚████╔╝ ██║ ██║██║ ╚████║╚██████╗███████╗██████╔╝\r\n// ╚═╝ ╚═╝╚═════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚══════╝╚═════╝\r\n//\r\n\r\n//== Typography\r\n//## Change your font family, weight, line-height, headings and more (used in components/typography)\r\n\r\n// Font Family Import (Used for google font plugin in theme creater)\r\n$font-family-import: \"resources/fonts/open-sans/open-sans.css\" !default;\r\n\r\n// Font Family / False = fallback from Bootstrap (Helvetica Neue)\r\n$font-family-base: \"Open Sans\", sans-serif !default;\r\n\r\n// Font Sizes\r\n$font-size-large: 18px !default;\r\n$font-size-small: 12px !default;\r\n\r\n// Font Weights\r\n$font-weight-light: 100 !default;\r\n$font-weight-normal: normal !default;\r\n$font-weight-semibold: 600 !default;\r\n$font-weight-bold: bold !default;\r\n\r\n// Font Size Headers\r\n$font-size-h1: 31px !default;\r\n$font-size-h2: 26px !default;\r\n$font-size-h3: 24px !default;\r\n$font-size-h4: 18px !default;\r\n$font-size-h5: $font-size-default !default;\r\n$font-size-h6: 12px !default;\r\n\r\n// Font Weight Headers\r\n$font-weight-header: $font-weight-semibold !default;\r\n\r\n// Line Height\r\n$line-height-base: 1.428571429 !default;\r\n\r\n// Spacing\r\n$font-header-margin: 0 0 8px 0 !default;\r\n\r\n// Text Colors\r\n$font-color-detail: #6c717e !default;\r\n$font-color-header: #0a1326 !default;\r\n\r\n//== Navigation\r\n//## Used in components/navigation\r\n\r\n// Default Navigation styling\r\n$navigation-item-height: unset !default;\r\n$navigation-item-padding: 16px !default;\r\n\r\n$navigation-font-size: $font-size-default !default;\r\n$navigation-sub-font-size: $font-size-small !default;\r\n$navigation-glyph-size: 20px !default; // For glyphicons that you can select in the Mendix Modeler\r\n\r\n$navigation-color: #fff !default;\r\n$navigation-color-hover: #fff !default;\r\n$navigation-color-active: #fff !default;\r\n\r\n$navigation-sub-color: #aaa !default;\r\n$navigation-sub-color-hover: $brand-primary !default;\r\n$navigation-sub-color-active: $brand-primary !default;\r\n\r\n// Navigation Sidebar\r\n$navsidebar-font-size: $font-size-default !default;\r\n$navsidebar-sub-font-size: $font-size-small !default;\r\n$navsidebar-glyph-size: 20px !default; // For glyphicons that you can select in the Mendix Modeler\r\n\r\n$navsidebar-color: #fff !default;\r\n$navsidebar-color-hover: #fff !default;\r\n$navsidebar-color-active: #fff !default;\r\n\r\n$navsidebar-sub-color: #aaa !default;\r\n$navsidebar-sub-color-hover: $brand-primary !default;\r\n$navsidebar-sub-color-active: $brand-primary !default;\r\n\r\n$navsidebar-width-closed: 52px !default;\r\n$navsidebar-width-open: 232px !default;\r\n\r\n// Navigation topbar\r\n$navtopbar-font-size: $font-size-default !default;\r\n$navtopbar-sub-font-size: $font-size-small !default;\r\n$navtopbar-glyph-size: 1.2em !default; // For glyphicons that you can select in the Mendix Modeler\r\n\r\n$navtopbar-bg: $topbar-bg !default;\r\n$navtopbar-bg-hover: darken($navtopbar-bg, 4) !default;\r\n$navtopbar-bg-active: darken($navtopbar-bg, 8) !default;\r\n$navtopbar-color: $font-color-default !default;\r\n$navtopbar-color-hover: $navtopbar-color !default;\r\n$navtopbar-color-active: $navtopbar-color !default;\r\n\r\n$navtopbar-sub-bg: lighten($navtopbar-bg, 4) !default;\r\n$navtopbar-sub-bg-hover: $navtopbar-sub-bg !default;\r\n$navtopbar-sub-bg-active: $navtopbar-sub-bg !default;\r\n$navtopbar-sub-color: #aaa !default;\r\n$navtopbar-sub-color-hover: $brand-primary !default;\r\n$navtopbar-sub-color-active: $brand-primary !default;\r\n\r\n//== Cards\r\n// Shadow color\r\n$shadow-color-border: rgba($gray-primary, 0.5);\r\n$shadow-color: rgba($gray-primary, 0.66);\r\n\r\n//Shadow size\r\n$shadow-small: 0 2px 4px 0;\r\n$shadow-medium: 0 5px 7px 0;\r\n$shadow-large: 0 8px 10px 0;\r\n\r\n//## Used in layouts/base\r\n$navtopbar-border-color: $topbar-border-color !default;\r\n\r\n//== Form\r\n//## Used in components/inputs\r\n\r\n// Values that can be used default | lined\r\n$form-input-style: default !default;\r\n\r\n// Form Label\r\n$form-label-size: $font-size-default !default;\r\n$form-label-weight: $font-weight-semibold !default;\r\n$form-label-gutter: 8px !default;\r\n\r\n// Form Input dimensions\r\n$form-input-height: auto !default;\r\n$form-input-padding-y: 8px !default;\r\n$form-input-padding-x: 8px !default;\r\n$form-input-static-padding-y: 8px !default;\r\n$form-input-static-padding-x: 0 !default;\r\n$form-input-font-size: $form-label-size !default;\r\n$form-input-line-height: $line-height-base !default;\r\n$form-input-border-radius: $border-radius-default !default;\r\n\r\n// Form Input styling\r\n$form-input-bg: #fff !default;\r\n$form-input-bg-focus: #fff !default;\r\n$form-input-bg-hover: $gray-primary !default;\r\n$form-input-bg-disabled: $bg-color !default;\r\n$form-input-color: $font-color-default !default;\r\n$form-input-focus-color: $form-input-color !default;\r\n$form-input-disabled-color: #9da1a8 !default;\r\n$form-input-placeholder-color: #6c717c !default;\r\n$form-input-border-color: $gray-primary !default;\r\n$form-input-border-focus-color: $brand-primary !default;\r\n\r\n// Form Input Static styling\r\n$form-input-static-border-color: $gray-primary !default;\r\n\r\n// Form Group\r\n$form-group-margin-bottom: 16px !default;\r\n$form-group-gutter: 16px !default;\r\n\r\n//== Buttons\r\n//## Define background-color, border-color and text. Used in components/buttons\r\n\r\n// Default button style\r\n$btn-font-size: 14px !default;\r\n$btn-bordered: false !default; // Default value false, set to true if you want this effect\r\n$btn-border-radius: $border-radius-default !default;\r\n\r\n// Button Background Color\r\n$btn-default-bg: #fff !default;\r\n$btn-primary-bg: $brand-primary !default;\r\n$btn-success-bg: $brand-success !default;\r\n$btn-warning-bg: $brand-warning !default;\r\n$btn-danger-bg: $brand-danger !default;\r\n\r\n// Button Border Color\r\n$btn-default-border-color: $gray-primary !default;\r\n$btn-primary-border-color: $brand-primary !default;\r\n$btn-success-border-color: $brand-success !default;\r\n$btn-warning-border-color: $brand-warning !default;\r\n$btn-danger-border-color: $brand-danger !default;\r\n\r\n// Button Text Color\r\n$btn-default-color: $brand-primary !default;\r\n$btn-primary-color: #fff !default;\r\n$btn-success-color: #fff !default;\r\n$btn-warning-color: #fff !default;\r\n$btn-danger-color: #fff !default;\r\n\r\n// Button Icon Color\r\n$btn-default-icon-color: $gray !default;\r\n\r\n// Button Background Color\r\n$btn-default-bg-hover: $btn-default-border-color !default;\r\n$btn-primary-bg-hover: mix($btn-primary-bg, black, 80%) !default;\r\n$btn-success-bg-hover: mix($btn-success-bg, black, 80%) !default;\r\n$btn-warning-bg-hover: mix($btn-warning-bg, black, 80%) !default;\r\n$btn-danger-bg-hover: mix($btn-danger-bg, black, 80%) !default;\r\n$btn-link-bg-hover: $gray-lighter !default;\r\n\r\n//== Header blocks\r\n//## Define look and feel over multible building blocks that serve as header\r\n\r\n$header-min-height: 240px !default;\r\n$header-bg-color: $brand-primary !default;\r\n$header-bgimage-filter: brightness(60%) !default;\r\n$header-text-color: #fff !default;\r\n$header-text-color-detail: rgba(0, 0, 0, 0.2) !default;\r\n\r\n//\r\n// ███████╗██╗ ██╗██████╗ ███████╗██████╗ ████████╗\r\n// ██╔════╝╚██╗██╔╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝\r\n// █████╗ ╚███╔╝ ██████╔╝█████╗ ██████╔╝ ██║\r\n// ██╔══╝ ██╔██╗ ██╔═══╝ ██╔══╝ ██╔══██╗ ██║\r\n// ███████╗██╔╝ ██╗██║ ███████╗██║ ██║ ██║\r\n// ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝\r\n//\r\n\r\n//== Color variations\r\n//## These variations are used to support several other variables and components\r\n\r\n// Color variations\r\n$color-default-darker: mix($brand-default, black, 60%) !default;\r\n$color-default-dark: mix($brand-default, black, 70%) !default;\r\n$color-default-light: mix($brand-default, white, 20%) !default;\r\n$color-default-lighter: mix($brand-default, white, 10%) !default;\r\n\r\n$color-primary-darker: mix($brand-primary, black, 60%) !default;\r\n$color-primary-dark: mix($brand-primary, black, 70%) !default;\r\n$color-primary-light: mix($brand-primary, white, 20%) !default;\r\n$color-primary-lighter: mix($brand-primary, white, 10%) !default;\r\n\r\n$color-success-darker: mix($brand-success, black, 60%) !default;\r\n$color-success-dark: mix($brand-success, black, 70%) !default;\r\n$color-success-light: mix($brand-success, white, 20%) !default;\r\n$color-success-lighter: mix($brand-success, white, 10%) !default;\r\n\r\n$color-warning-darker: mix($brand-warning, black, 60%) !default;\r\n$color-warning-dark: mix($brand-warning, black, 70%) !default;\r\n$color-warning-light: mix($brand-warning, white, 20%) !default;\r\n$color-warning-lighter: mix($brand-warning, white, 10%) !default;\r\n\r\n$color-danger-darker: mix($brand-danger, black, 60%) !default;\r\n$color-danger-dark: mix($brand-danger, black, 70%) !default;\r\n$color-danger-light: mix($brand-danger, white, 20%) !default;\r\n$color-danger-lighter: mix($brand-danger, white, 10%) !default;\r\n\r\n$brand-gradient: linear-gradient(to right top, #264ae5, #2239c5, #1b29a6, #111988, #03096c) !default;\r\n\r\n//== Grids\r\n//## Used for Datagrid, Templategrid, Listview & Tables (see components folder)\r\n\r\n// Default Border Colors\r\n$grid-border-color: $border-color-default !default;\r\n\r\n// Spacing\r\n// Default\r\n$grid-padding-top: 16px !default;\r\n$grid-padding-right: 16px !default;\r\n$grid-padding-bottom: 16px !default;\r\n$grid-padding-left: 16px !default;\r\n\r\n// Listview\r\n$listview-padding-top: 16px !default;\r\n$listview-padding-right: 16px !default;\r\n$listview-padding-bottom: 16px !default;\r\n$listview-padding-left: 16px !default;\r\n\r\n// Background Colors\r\n$grid-bg: transparent !default;\r\n$grid-bg-header: transparent !default; // Grid Headers\r\n$grid-bg-hover: mix($grid-border-color, #fff, 20%) !default;\r\n$grid-bg-selected: mix($grid-border-color, #fff, 30%) !default;\r\n$grid-bg-selected-hover: mix($grid-border-color, #fff, 50%) !default;\r\n\r\n// Striped Background Color\r\n$grid-bg-striped: mix($grid-border-color, #fff, 10%) !default;\r\n\r\n// Background Footer Color\r\n$grid-footer-bg: $gray-primary !default;\r\n\r\n// Text Color\r\n$grid-selected-color: $font-color-default !default;\r\n\r\n// Paging Colors\r\n$grid-paging-bg: transparent !default;\r\n$grid-paging-bg-hover: transparent !default;\r\n$grid-paging-border-color: transparent !default;\r\n$grid-paging-border-color-hover: transparent !default;\r\n$grid-paging-color: $gray-light !default;\r\n$grid-paging-color-hover: $brand-primary !default;\r\n\r\n//== Tabs\r\n//## Default variables for Tab Container Widget (used in components/tabcontainer)\r\n\r\n// Text Color\r\n$tabs-color: $font-color-detail !default;\r\n$tabs-color-active: $font-color-default !default;\r\n$tabs-lined-color-active: $font-color-default !default;\r\n\r\n$tabs-lined-border-width: 3px !default;\r\n\r\n// Border Color\r\n$tabs-border-color: $border-color-default !default;\r\n$tabs-lined-border-color: $brand-primary !default;\r\n\r\n// Background Color\r\n$tabs-bg: transparent !default;\r\n$tabs-bg-pills: #e7e7e9 !default;\r\n$tabs-bg-hover: lighten($tabs-border-color, 5) !default;\r\n$tabs-bg-active: $brand-primary !default;\r\n\r\n//== Modals\r\n//## Default Mendix Modal, Blocking Modal and Login Modal (used in components/modals)\r\n\r\n// Background Color\r\n$modal-header-bg: transparent !default;\r\n\r\n// Border Color\r\n$modal-header-border-color: $border-color-default !default;\r\n\r\n// Text Color\r\n$modal-header-color: $font-color-default !default;\r\n\r\n//== Dataview\r\n//## Default variables for Dataview Widget (used in components/dataview)\r\n\r\n// Controls\r\n$dataview-controls-bg: transparent !default;\r\n$dataview-controls-border-color: $border-color-default !default;\r\n\r\n// Empty Message\r\n$dataview-emptymessage-bg: $bg-color !default;\r\n$dataview-emptymessage-color: $font-color-default !default;\r\n\r\n//== Alerts\r\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\r\n\r\n// Background Color\r\n$alert-primary-bg: $color-primary-lighter !default;\r\n$alert-secondary-bg: $color-primary-lighter !default;\r\n$alert-success-bg: $color-success-lighter !default;\r\n$alert-warning-bg: $color-warning-lighter !default;\r\n$alert-danger-bg: $color-danger-lighter !default;\r\n\r\n// Text Color\r\n$alert-primary-color: $color-primary-darker !default;\r\n$alert-secondary-color: $color-primary-darker !default;\r\n$alert-success-color: $color-success-darker !default;\r\n$alert-warning-color: $color-warning-darker !default;\r\n$alert-danger-color: $color-danger-darker !default;\r\n\r\n// Border Color\r\n$alert-primary-border-color: $color-primary-dark !default;\r\n$alert-secondary-border-color: $color-primary-dark !default;\r\n$alert-success-border-color: $color-success-dark !default;\r\n$alert-warning-border-color: $color-warning-dark !default;\r\n$alert-danger-border-color: $color-danger-dark !default;\r\n\r\n//== Wizard\r\n\r\n$wizard-step-height: 48px !default;\r\n$wizard-step-number-size: 64px !default;\r\n$wizard-step-number-font-size: $font-size-h3 !default;\r\n\r\n//Wizard states\r\n$wizard-default: #fff !default;\r\n$wizard-active: $brand-primary !default;\r\n$wizard-visited: $brand-success !default;\r\n\r\n//Wizard step states\r\n$wizard-default-bg: $wizard-default !default;\r\n$wizard-default-color: $wizard-default !default;\r\n$wizard-default-step-color: $font-color-default !default;\r\n$wizard-default-border-color: $border-color-default !default;\r\n\r\n$wizard-active-bg: $wizard-active !default;\r\n$wizard-active-color: $wizard-default !default;\r\n$wizard-active-step-color: $wizard-active !default;\r\n$wizard-active-border-color: $wizard-active !default;\r\n\r\n$wizard-visited-bg: $wizard-visited !default;\r\n$wizard-visited-color: $wizard-default !default;\r\n$wizard-visited-step-color: $wizard-visited !default;\r\n$wizard-visited-border-color: $wizard-visited !default;\r\n\r\n//== Labels\r\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\r\n\r\n// Background Color\r\n$label-default-bg: $brand-default !default;\r\n$label-primary-bg: $brand-primary !default;\r\n$label-success-bg: $brand-success !default;\r\n$label-warning-bg: $brand-warning !default;\r\n$label-danger-bg: $brand-danger !default;\r\n\r\n// Border Color\r\n$label-default-border-color: $brand-default !default;\r\n$label-primary-border-color: $brand-primary !default;\r\n$label-success-border-color: $brand-success !default;\r\n$label-warning-border-color: $brand-warning !default;\r\n$label-danger-border-color: $brand-danger !default;\r\n\r\n// Text Color\r\n$label-default-color: $font-color-default !default;\r\n$label-primary-color: #fff !default;\r\n$label-success-color: #fff !default;\r\n$label-warning-color: #fff !default;\r\n$label-danger-color: #fff !default;\r\n\r\n//== Groupbox\r\n//## Default variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Background Color\r\n$groupbox-default-bg: $gray-primary !default;\r\n$groupbox-primary-bg: $brand-primary !default;\r\n$groupbox-success-bg: $brand-success !default;\r\n$groupbox-warning-bg: $brand-warning !default;\r\n$groupbox-danger-bg: $brand-danger !default;\r\n$groupbox-white-bg: #fff !default;\r\n\r\n// Text Color\r\n$groupbox-default-color: $font-color-default !default;\r\n$groupbox-primary-color: #fff !default;\r\n$groupbox-success-color: #fff !default;\r\n$groupbox-warning-color: #fff !default;\r\n$groupbox-danger-color: #fff !default;\r\n$groupbox-white-color: $font-color-default !default;\r\n\r\n//== Callout (groupbox) Colors\r\n//## Extended variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Text and Border Color\r\n$callout-default-color: $font-color-default !default;\r\n$callout-primary-color: $brand-primary !default;\r\n$callout-success-color: $brand-success !default;\r\n$callout-warning-color: $brand-warning !default;\r\n$callout-danger-color: $brand-danger !default;\r\n\r\n// Background Color\r\n$callout-default-bg: $color-default-lighter !default;\r\n$callout-primary-bg: $color-primary-lighter !default;\r\n$callout-success-bg: $color-success-lighter !default;\r\n$callout-warning-bg: $color-warning-lighter !default;\r\n$callout-danger-bg: $color-danger-lighter !default;\r\n\r\n//== Timeline\r\n//## Extended variables for Timeline Widget\r\n// Colors\r\n$timeline-icon-color: $brand-primary !default;\r\n$timeline-border-color: $border-color-default !default;\r\n$timeline-event-time-color: $brand-primary !default;\r\n\r\n// Sizes\r\n$timeline-icon-size: 18px !default;\r\n$timeline-image-size: 36px !default;\r\n\r\n//Timeline grouping\r\n$timeline-grouping-size: 120px !default;\r\n$timeline-grouping-border-radius: 30px !default;\r\n$timeline-grouping-border-color: $timeline-border-color !default;\r\n\r\n//== Accordions\r\n//## Extended variables for Accordion Widget\r\n\r\n// Default\r\n$accordion-header-default-bg: $bg-color-secondary !default;\r\n$accordion-header-default-bg-hover: $bg-color !default;\r\n$accordion-header-default-color: $font-color-header !default;\r\n$accordion-default-border-color: $border-color-default !default;\r\n\r\n$accordion-bg-striped: $grid-bg-striped !default;\r\n$accordion-bg-striped-hover: $grid-bg-selected !default;\r\n\r\n// Semantic background colors\r\n$accordion-header-primary-bg: $btn-primary-bg !default;\r\n$accordion-header-secondary-bg: $btn-default-bg !default;\r\n$accordion-header-success-bg: $btn-success-bg !default;\r\n$accordion-header-warning-bg: $btn-warning-bg !default;\r\n$accordion-header-danger-bg: $btn-danger-bg !default;\r\n\r\n$accordion-header-primary-bg-hover: $btn-primary-bg-hover !default;\r\n$accordion-header-secondary-bg-hover: $btn-default-bg-hover !default;\r\n$accordion-header-success-bg-hover: $btn-success-bg-hover !default;\r\n$accordion-header-warning-bg-hover: $btn-warning-bg-hover !default;\r\n$accordion-header-danger-bg-hover: $btn-danger-bg-hover !default;\r\n\r\n// Semantic text colors\r\n$accordion-header-primary-color: $btn-primary-color !default;\r\n$accordion-header-secondary-color: $btn-default-color !default;\r\n$accordion-header-success-color: $btn-success-color !default;\r\n$accordion-header-warning-color: $btn-warning-color !default;\r\n$accordion-header-danger-color: $btn-danger-color !default;\r\n\r\n// Semantic border colors\r\n$accordion-primary-border-color: $btn-primary-border-color !default;\r\n$accordion-secondary-border-color: $btn-default-border-color !default;\r\n$accordion-success-border-color: $btn-success-border-color !default;\r\n$accordion-warning-border-color: $btn-warning-border-color !default;\r\n$accordion-danger-border-color: $btn-danger-border-color !default;\r\n\r\n//== Spacing\r\n//## Advanced layout options (used in base/mixins/default-spacing)\r\n\r\n// Smallest spacing\r\n$spacing-smallest: 2px !default;\r\n\r\n// Smaller spacing\r\n$spacing-smaller: 4px !default;\r\n\r\n// Small spacing\r\n$spacing-small: 8px !default;\r\n\r\n// Medium spacing\r\n$spacing-medium: 16px !default;\r\n$t-spacing-medium: 16px !default;\r\n$m-spacing-medium: 16px !default;\r\n\r\n// Large spacing\r\n$spacing-large: 24px !default;\r\n$t-spacing-large: 24px !default;\r\n$m-spacing-large: 16px !default;\r\n\r\n// Larger spacing\r\n$spacing-larger: 32px !default;\r\n\r\n// Largest spacing\r\n$spacing-largest: 48px !default;\r\n\r\n// Layout spacing\r\n$layout-spacing-top: 24px !default;\r\n$layout-spacing-right: 24px !default;\r\n$layout-spacing-bottom: 24px !default;\r\n$layout-spacing-left: 24px !default;\r\n\r\n$t-layout-spacing-top: 24px !default;\r\n$t-layout-spacing-right: 24px !default;\r\n$t-layout-spacing-bottom: 24px !default;\r\n$t-layout-spacing-left: 24px !default;\r\n\r\n$m-layout-spacing-top: 16px !default;\r\n$m-layout-spacing-right: 16px !default;\r\n$m-layout-spacing-bottom: 16px !default;\r\n$m-layout-spacing-left: 16px !default;\r\n\r\n// Combined layout spacing\r\n$layout-spacing: $layout-spacing-top $layout-spacing-right $layout-spacing-bottom $layout-spacing-left !default;\r\n$m-layout-spacing: $m-layout-spacing-top $m-layout-spacing-right $m-layout-spacing-bottom $m-layout-spacing-left !default;\r\n$t-layout-spacing: $t-layout-spacing-top $t-layout-spacing-right $t-layout-spacing-bottom $t-layout-spacing-left !default;\r\n\r\n// Gutter size\r\n$gutter-size: 8px !default;\r\n\r\n//== Tables\r\n//## Table spacing options (used in components/tables)\r\n\r\n$padding-table-cell-top: 8px !default;\r\n$padding-table-cell-bottom: 8px !default;\r\n$padding-table-cell-left: 8px !default;\r\n$padding-table-cell-right: 8px !default;\r\n\r\n//== Media queries breakpoints\r\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\r\n\r\n$screen-xs: 480px !default;\r\n$screen-sm: 576px !default;\r\n$screen-md: 768px !default;\r\n$screen-lg: 992px !default;\r\n$screen-xl: 1200px !default;\r\n\r\n// So media queries don't overlap when required, provide a maximum (used for max-width)\r\n$screen-xs-max: calc(#{$screen-sm} - 1px) !default;\r\n$screen-sm-max: calc(#{$screen-md} - 1px) !default;\r\n$screen-md-max: calc(#{$screen-lg} - 1px) !default;\r\n$screen-lg-max: calc(#{$screen-xl} - 1px) !default;\r\n\r\n//== Settings\r\n//## Enable or disable your desired framework features\r\n// Use of !important\r\n$important-flex: true !default; // ./base/flex.scss\r\n$important-spacing: true !default; // ./base/spacing.scss\r\n$important-helpers: true !default; // ./helpers/helperclasses.scss\r\n\r\n//===== Legacy variables =====\r\n\r\n//== Step 1: Brand Colors\r\n$brand-inverse: #24276c !default;\r\n$brand-info: #0086d9 !default;\r\n\r\n//== Step 2: UI Customization\r\n// Sidebar\r\n$sidebar-bg: $brand-inverse !default;\r\n\r\n//== Navigation\r\n//## Used in components/navigation\r\n\r\n// Default Navigation styling\r\n$navigation-bg: $brand-inverse !default;\r\n$navigation-bg-hover: lighten($navigation-bg, 4) !default;\r\n$navigation-bg-active: lighten($navigation-bg, 8) !default;\r\n\r\n$navigation-sub-bg: darken($navigation-bg, 4) !default;\r\n$navigation-sub-bg-hover: $navigation-sub-bg !default;\r\n$navigation-sub-bg-active: $navigation-sub-bg !default;\r\n\r\n$navigation-border-color: $navigation-bg-hover !default;\r\n\r\n// Navigation Sidebar\r\n$navsidebar-bg: $sidebar-bg !default;\r\n$navsidebar-bg-hover: darken($navsidebar-bg, 4) !default;\r\n$navsidebar-bg-active: darken($navsidebar-bg, 8) !default;\r\n\r\n$navsidebar-sub-bg: darken($navsidebar-bg, 4) !default;\r\n$navsidebar-sub-bg-hover: $navsidebar-sub-bg !default;\r\n$navsidebar-sub-bg-active: $navsidebar-sub-bg !default;\r\n\r\n$navsidebar-border-color: $navsidebar-bg-hover !default;\r\n\r\n//== Form\r\n//## Used in components/inputs\r\n\r\n// Form Label\r\n$form-label-color: $brand-inverse !default;\r\n\r\n//== Buttons\r\n//## Define background-color, border-color and text. Used in components/buttons\r\n\r\n// Button Background Color\r\n$btn-inverse-bg: $brand-inverse !default;\r\n$btn-info-bg: $brand-info !default;\r\n\r\n// Button Border Color\r\n$btn-inverse-border-color: $brand-inverse !default;\r\n$btn-info-border-color: $brand-info !default;\r\n\r\n// Button Text Color\r\n$btn-inverse-color: #fff !default;\r\n$btn-info-color: #fff !default;\r\n\r\n// Button Background Color\r\n$btn-inverse-bg-hover: mix($btn-inverse-bg, white, 80%) !default;\r\n$btn-info-bg-hover: mix($btn-info-bg, black, 80%) !default;\r\n\r\n//== Color variations\r\n//## These variations are used to support several other variables and components\r\n\r\n// Color variations\r\n$color-inverse-darker: mix($brand-inverse, black, 60%) !default;\r\n$color-inverse-dark: mix($brand-inverse, black, 70%) !default;\r\n$color-inverse-light: mix($brand-inverse, white, 40%) !default;\r\n$color-inverse-lighter: mix($brand-inverse, white, 20%) !default;\r\n\r\n$color-info-darker: mix($brand-info, black, 60%) !default;\r\n$color-info-dark: mix($brand-info, black, 70%) !default;\r\n$color-info-light: mix($brand-info, white, 60%) !default;\r\n$color-info-lighter: mix($brand-info, white, 20%) !default;\r\n\r\n//== Alerts\r\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\r\n\r\n// Background Color\r\n$alert-info-bg: $color-primary-lighter !default;\r\n\r\n// Text Color\r\n$alert-info-color: $color-primary-darker !default;\r\n\r\n// Border Color\r\n$alert-info-border-color: $color-primary-dark !default;\r\n//== Labels\r\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\r\n\r\n// Background Color\r\n$label-info-bg: $brand-info !default;\r\n$label-inverse-bg: $brand-inverse !default;\r\n\r\n// Border Color\r\n$label-info-border-color: $brand-info !default;\r\n$label-inverse-border-color: $brand-inverse !default;\r\n\r\n// Text Color\r\n$label-info-color: #fff !default;\r\n$label-inverse-color: #fff !default;\r\n\r\n//== Groupbox\r\n//## Default variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Background Color\r\n$groupbox-inverse-bg: $brand-inverse !default;\r\n$groupbox-info-bg: $brand-info !default;\r\n\r\n// Text Color\r\n$groupbox-inverse-color: #fff !default;\r\n$groupbox-info-color: #fff !default;\r\n//== Callout (groupbox) Colors\r\n//## Extended variables for Groupbox Widget (used in components/groupbox)\r\n\r\n// Text and Border Color\r\n$callout-info-color: $brand-info !default;\r\n\r\n// Background Color\r\n$callout-info-bg: $color-info-lighter !default;\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin image-helpers() {\r\n /* ==========================================================================\r\n Image\r\n\r\n Default Mendix image widgets\r\n ========================================================================== */\r\n\r\n img.img-rounded,\r\n .img-rounded img {\r\n border-radius: 6px;\r\n }\r\n\r\n img.img-thumbnail,\r\n .img-thumbnail img {\r\n display: inline-block;\r\n max-width: 100%;\r\n height: auto;\r\n padding: 4px;\r\n transition: all 0.2s ease-in-out;\r\n border: 1px solid $brand-default;\r\n border-radius: 4px;\r\n background-color: #ffffff;\r\n line-height: $line-height-base;\r\n }\r\n\r\n img.img-circle,\r\n .img-circle img {\r\n border-radius: 50%;\r\n }\r\n\r\n img.img-auto,\r\n .img-auto img {\r\n width: auto !important;\r\n max-width: 100% !important;\r\n height: auto !important;\r\n max-height: 100% !important;\r\n }\r\n\r\n img.img-center,\r\n .img-center img {\r\n margin-right: auto !important;\r\n margin-left: auto !important;\r\n }\r\n\r\n img.img-icon {\r\n width: 20px;\r\n height: 20px;\r\n padding: 2px;\r\n border-radius: 50%;\r\n }\r\n\r\n img.img-fill,\r\n .img-fill img {\r\n object-fit: fill;\r\n }\r\n\r\n img.img-contain,\r\n .img-contain img {\r\n object-fit: contain;\r\n }\r\n\r\n img.img-cover,\r\n .img-cover img {\r\n object-fit: cover;\r\n }\r\n\r\n img.img-scale-down,\r\n .img-scale-down img {\r\n object-fit: scale-down;\r\n }\r\n\r\n .img-contain.mx-image-background {\r\n background-size: contain;\r\n }\r\n\r\n .img-cover.mx-image-background {\r\n background-size: cover;\r\n }\r\n\r\n .img-auto.mx-image-background {\r\n background-size: auto;\r\n }\r\n\r\n .img-opacity-low img,\r\n .img-opacity-low.mx-image-background {\r\n opacity: 0.3;\r\n }\r\n\r\n .img-opacity-medium img,\r\n .img-opacity-medium.mx-image-background {\r\n opacity: 0.5;\r\n }\r\n\r\n .img-opacity-high img,\r\n .img-opacity-high.mx-image-background {\r\n opacity: 0.7;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin list-view() {\r\n /* ==========================================================================\r\n List view\r\n\r\n Default Mendix list view widget. The list view shows a list of objects arranged vertically. Each object is shown using a template\r\n ========================================================================== */\r\n .mx-listview {\r\n // Remove widget padding\r\n padding: 0;\r\n /* Clear search button (overrides load more button stying) */\r\n & > ul {\r\n margin: 0 0 $spacing-medium;\r\n\r\n .mx-listview-empty {\r\n border-style: none;\r\n background-color: transparent;\r\n }\r\n\r\n & > li {\r\n @include transition();\r\n background-color: #fff;\r\n padding: $spacing-medium;\r\n border-top: 1px solid $grid-border-color;\r\n\r\n &:last-child {\r\n border-bottom: 1px solid $grid-border-color;\r\n }\r\n\r\n &:focus,\r\n &:active {\r\n outline: 0;\r\n }\r\n }\r\n }\r\n\r\n .selected {\r\n background: $color-primary-light;\r\n }\r\n\r\n .mx-layoutgrid {\r\n padding: 0 !important;\r\n }\r\n }\r\n\r\n // Search bar\r\n .mx-listview-searchbar {\r\n margin-bottom: $spacing-medium;\r\n\r\n .btn {\r\n width: auto;\r\n }\r\n }\r\n\r\n /* Load more button */\r\n .btn.mx-listview-loadMore {\r\n width: 100%;\r\n margin: 0 0 $spacing-medium;\r\n }\r\n\r\n //== Phone specific\r\n //-------------------------------------------------------------------------------------------------------------------//\r\n .profile-phone .mx-listview {\r\n .mx-listview-searchbar {\r\n margin-bottom: 3px;\r\n background: #ffffff;\r\n box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);\r\n\r\n input {\r\n padding: 14px 15px;\r\n color: #555555;\r\n border-style: none;\r\n border-radius: 0;\r\n box-shadow: none;\r\n }\r\n\r\n .btn {\r\n padding: 14px 15px;\r\n color: inherit;\r\n border-style: none;\r\n }\r\n }\r\n\r\n & > ul > li {\r\n &:first-child {\r\n border-top: none;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin list-view-helpers() {\r\n /* ==========================================================================\r\n List view\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n\r\n // List items lined\r\n .listview-lined.mx-listview {\r\n & > ul > li {\r\n border-top: 1px solid $grid-border-color;\r\n\r\n &:first-child {\r\n border-top: 1px solid $grid-border-color;\r\n }\r\n\r\n &:last-child {\r\n border-bottom: 1px solid $grid-border-color;\r\n }\r\n }\r\n }\r\n\r\n //List items Bordered\r\n .listview-bordered.mx-listview {\r\n & > ul > li {\r\n border: 1px solid $grid-border-color;\r\n border-top: 0;\r\n\r\n &:first-child {\r\n border-top: 1px solid $grid-border-color;\r\n }\r\n\r\n &:last-child {\r\n }\r\n }\r\n }\r\n\r\n // List items striped\r\n .listview-striped.mx-listview {\r\n & > ul > li:nth-child(2n + 1) {\r\n background-color: $grid-bg-striped;\r\n }\r\n }\r\n\r\n // Items as seperated blocks\r\n .listview-seperated.mx-listview {\r\n & > ul > li {\r\n margin-bottom: $spacing-medium;\r\n border: 1px solid $grid-border-color;\r\n border-radius: $border-radius-default;\r\n }\r\n }\r\n\r\n // Remove all styling - deprecated\r\n .listview-stylingless.mx-listview {\r\n & > ul > li {\r\n padding: unset;\r\n cursor: default;\r\n border: unset;\r\n background-color: transparent;\r\n\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n background-color: transparent;\r\n }\r\n\r\n &.selected {\r\n background-color: transparent !important;\r\n\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n background-color: transparent !important;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Hover style activated\r\n .listview-hover.mx-listview {\r\n & > ul > li {\r\n cursor: pointer;\r\n\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n background-color: $grid-bg-hover;\r\n }\r\n\r\n &.selected {\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n background-color: $grid-bg-selected-hover;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Row Sizes\r\n\r\n .listview-sm.mx-listview {\r\n & > ul > li {\r\n padding: $spacing-small;\r\n }\r\n }\r\n\r\n .listview-lg.mx-listview {\r\n & > ul > li {\r\n padding: $spacing-large;\r\n }\r\n }\r\n\r\n // Bootstrap columns\r\n .mx-listview[class*=\"lv-col\"] {\r\n overflow: hidden; // For if it is not in a layout, to prevent scrollbars\r\n & > ul {\r\n display: flex; // normal a table\r\n flex-wrap: wrap;\r\n margin-right: -1 * $gutter-size;\r\n margin-left: -1 * $gutter-size;\r\n\r\n &::before,\r\n &::after {\r\n // clearfix\r\n display: table;\r\n clear: both;\r\n content: \" \";\r\n }\r\n\r\n & > li {\r\n // bootstrap col\r\n position: relative;\r\n min-height: 1px;\r\n padding-right: $gutter-size;\r\n padding-left: $gutter-size;\r\n border: 0;\r\n @media (max-width: $screen-md-max) {\r\n width: 100% !important;\r\n }\r\n\r\n & > .mx-dataview {\r\n overflow: hidden;\r\n }\r\n }\r\n }\r\n\r\n &.lv-col-xs-12 > ul > li {\r\n width: 100% !important;\r\n }\r\n\r\n &.lv-col-xs-11 > ul > li {\r\n width: 91.66666667% !important;\r\n }\r\n\r\n &.lv-col-xs-10 > ul > li {\r\n width: 83.33333333% !important;\r\n }\r\n\r\n &.lv-col-xs-9 > ul > li {\r\n width: 75% !important;\r\n }\r\n\r\n &.lv-col-xs-8 > ul > li {\r\n width: 66.66666667% !important;\r\n }\r\n\r\n &.lv-col-xs-7 > ul > li {\r\n width: 58.33333333% !important;\r\n }\r\n\r\n &.lv-col-xs-6 > ul > li {\r\n width: 50% !important;\r\n }\r\n\r\n &.lv-col-xs-5 > ul > li {\r\n width: 41.66666667% !important;\r\n }\r\n\r\n &.lv-col-xs-4 > ul > li {\r\n width: 33.33333333% !important;\r\n }\r\n\r\n &.lv-col-xs-3 > ul > li {\r\n width: 25% !important;\r\n }\r\n\r\n &.lv-col-xs-2 > ul > li {\r\n width: 16.66666667% !important;\r\n }\r\n\r\n &.lv-col-xs-1 > ul > li {\r\n width: 8.33333333% !important;\r\n }\r\n\r\n @media (min-width: $screen-md) {\r\n &.lv-col-sm-12 > ul > li {\r\n width: 100% !important;\r\n }\r\n &.lv-col-sm-11 > ul > li {\r\n width: 91.66666667% !important;\r\n }\r\n &.lv-col-sm-10 > ul > li {\r\n width: 83.33333333% !important;\r\n }\r\n &.lv-col-sm-9 > ul > li {\r\n width: 75% !important;\r\n }\r\n &.lv-col-sm-8 > ul > li {\r\n width: 66.66666667% !important;\r\n }\r\n &.lv-col-sm-7 > ul > li {\r\n width: 58.33333333% !important;\r\n }\r\n &.lv-col-sm-6 > ul > li {\r\n width: 50% !important;\r\n }\r\n &.lv-col-sm-5 > ul > li {\r\n width: 41.66666667% !important;\r\n }\r\n &.lv-col-sm-4 > ul > li {\r\n width: 33.33333333% !important;\r\n }\r\n &.lv-col-sm-3 > ul > li {\r\n width: 25% !important;\r\n }\r\n &.lv-col-sm-2 > ul > li {\r\n width: 16.66666667% !important;\r\n }\r\n &.lv-col-sm-1 > ul > li {\r\n width: 8.33333333% !important;\r\n }\r\n }\r\n @media (min-width: $screen-lg) {\r\n &.lv-col-md-12 > ul > li {\r\n width: 100% !important;\r\n }\r\n &.lv-col-md-11 > ul > li {\r\n width: 91.66666667% !important;\r\n }\r\n &.lv-col-md-10 > ul > li {\r\n width: 83.33333333% !important;\r\n }\r\n &.lv-col-md-9 > ul > li {\r\n width: 75% !important;\r\n }\r\n &.lv-col-md-8 > ul > li {\r\n width: 66.66666667% !important;\r\n }\r\n &.lv-col-md-7 > ul > li {\r\n width: 58.33333333% !important;\r\n }\r\n &.lv-col-md-6 > ul > li {\r\n width: 50% !important;\r\n }\r\n &.lv-col-md-5 > ul > li {\r\n width: 41.66666667% !important;\r\n }\r\n &.lv-col-md-4 > ul > li {\r\n width: 33.33333333% !important;\r\n }\r\n &.lv-col-md-3 > ul > li {\r\n width: 25% !important;\r\n }\r\n &.lv-col-md-2 > ul > li {\r\n width: 16.66666667% !important;\r\n }\r\n &.lv-col-md-1 > ul > li {\r\n width: 16.66666667% !important;\r\n }\r\n }\r\n @media (min-width: $screen-xl) {\r\n &.lv-col-lg-12 > ul > li {\r\n width: 100% !important;\r\n }\r\n &.lv-col-lg-11 > ul > li {\r\n width: 91.66666667% !important;\r\n }\r\n &.lv-col-lg-10 > ul > li {\r\n width: 83.33333333% !important;\r\n }\r\n &.lv-col-lg-9 > ul > li {\r\n width: 75% !important;\r\n }\r\n &.lv-col-lg-8 > ul > li {\r\n width: 66.66666667% !important;\r\n }\r\n &.lv-col-lg-7 > ul > li {\r\n width: 58.33333333% !important;\r\n }\r\n &.lv-col-lg-6 > ul > li {\r\n width: 50% !important;\r\n }\r\n &.lv-col-lg-5 > ul > li {\r\n width: 41.66666667% !important;\r\n }\r\n &.lv-col-lg-4 > ul > li {\r\n width: 33.33333333% !important;\r\n }\r\n &.lv-col-lg-3 > ul > li {\r\n width: 25% !important;\r\n }\r\n &.lv-col-lg-2 > ul > li {\r\n width: 16.66666667% !important;\r\n }\r\n &.lv-col-lg-1 > ul > li {\r\n width: 8.33333333% !important;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin modal() {\r\n /* ==========================================================================\r\n Modal\r\n\r\n Default Mendix modals. Modals are streamlined, but flexible, dialog prompts with the minimum required functionality and smart defaults\r\n ========================================================================== */\r\n .modal-dialog {\r\n .modal-content {\r\n border: 1px solid $modal-header-border-color;\r\n border-radius: 4px;\r\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\r\n\r\n .modal-header {\r\n padding: 15px 20px;\r\n border-bottom-color: $modal-header-border-color;\r\n border-radius: 0; // Because of the class .mx-window-active in mxui.css\r\n background-color: $modal-header-bg;\r\n\r\n h4 {\r\n margin: 0;\r\n color: $modal-header-color;\r\n font-size: 16px;\r\n font-weight: $font-weight-bold;\r\n }\r\n\r\n .close {\r\n margin-top: -3px;\r\n opacity: 1;\r\n /* For IE8 and earlier */\r\n color: $modal-header-color;\r\n text-shadow: none;\r\n &:focus {\r\n border-radius: 4px;\r\n outline: 2px solid $brand-primary;\r\n }\r\n }\r\n }\r\n\r\n .modal-body {\r\n }\r\n\r\n .modal-footer {\r\n display: flex;\r\n justify-content: flex-end;\r\n margin-top: 0;\r\n padding: 20px;\r\n border-style: none;\r\n }\r\n }\r\n }\r\n\r\n // Default Mendix Window Modal\r\n .mx-window {\r\n // If popup direct child is a dataview it gets the class mx-window-view\r\n &.mx-window-view .mx-window-body {\r\n overflow: hidden; // hide second scrollbar in edit page\r\n padding: 0;\r\n // Dataview in popup\r\n > .mx-dataview > .mx-dataview-content,\r\n > .mx-placeholder > .mx-dataview > .mx-dataview-content {\r\n padding: 20px;\r\n }\r\n\r\n > .mx-dataview > .mx-dataview-controls,\r\n > .mx-placeholder > .mx-dataview > .mx-dataview-controls {\r\n display: flex;\r\n justify-content: flex-end;\r\n margin: 0;\r\n padding: 20px;\r\n text-align: left;\r\n border-top: 1px solid $modal-header-border-color;\r\n }\r\n }\r\n\r\n .mx-dataview-controls {\r\n padding-bottom: 0;\r\n }\r\n\r\n .mx-layoutgrid {\r\n padding-right: 0;\r\n padding-left: 0;\r\n }\r\n }\r\n\r\n .mx-dialog .modal-body {\r\n padding: 24px;\r\n }\r\n\r\n // Login modal\r\n .mx-login {\r\n .modal-body {\r\n padding: 0 15px;\r\n }\r\n\r\n .modal-content {\r\n input {\r\n height: 56px;\r\n padding: 12px 12px;\r\n border: 1px solid #eeeeee;\r\n background: #eeeeee;\r\n box-shadow: none;\r\n font-size: 16px;\r\n\r\n &:focus {\r\n border-color: #66afe9;\r\n }\r\n }\r\n }\r\n\r\n .modal-header,\r\n .modal-footer {\r\n border: 0;\r\n }\r\n\r\n button {\r\n font-size: 16px;\r\n }\r\n\r\n h4 {\r\n color: #aaaaaa;\r\n font-size: 20px;\r\n font-weight: $font-weight-bold;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin navigation-bar() {\r\n /* ==========================================================================\r\n Navigation\r\n\r\n Default Mendix navigation bar\r\n ========================================================================== */\r\n .mx-navbar {\r\n margin: 0;\r\n border-style: none;\r\n border-radius: 0;\r\n background-color: $navigation-bg;\r\n\r\n ul.nav {\r\n margin: 0; // weird -margin if screen gets small (bootstrap)\r\n /* Navigation item */\r\n & > li.mx-navbar-item > a {\r\n display: flex;\r\n align-items: center;\r\n padding: $navigation-item-padding;\r\n vertical-align: middle;\r\n color: $navigation-color;\r\n border-radius: 0;\r\n font-size: $navigation-font-size;\r\n font-weight: $font-weight-normal;\r\n border-radius: $border-radius-default;\r\n\r\n /* Dropdown arrow */\r\n .caret {\r\n border-top-color: $navigation-color;\r\n border-bottom-color: $navigation-color;\r\n }\r\n\r\n &:hover,\r\n &:focus,\r\n &.active {\r\n text-decoration: none;\r\n color: $navigation-color-hover;\r\n background-color: $navigation-bg-hover;\r\n\r\n .caret {\r\n border-top-color: $navigation-color-active;\r\n border-bottom-color: $navigation-color-active;\r\n }\r\n }\r\n\r\n &.active {\r\n color: $navigation-color-active;\r\n background-color: $navigation-bg-active;\r\n opacity: 1;\r\n }\r\n\r\n /* Dropdown */\r\n .mx-navbar-submenu::before {\r\n position: absolute;\r\n top: -9px;\r\n left: 15px;\r\n width: 0;\r\n height: 0;\r\n content: \"\";\r\n transform: rotate(360deg);\r\n border-width: 0 9px 9px 9px;\r\n border-style: solid;\r\n border-color: transparent transparent $navigation-border-color transparent;\r\n }\r\n\r\n // Image\r\n img {\r\n width: 20px; // Default size (so it looks good)\r\n height: auto;\r\n margin-right: 0.5em;\r\n }\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n top: 0;\r\n margin-right: 0.5em;\r\n vertical-align: middle;\r\n font-size: $navigation-glyph-size;\r\n }\r\n }\r\n\r\n & > .mx-navbar-item.active a {\r\n color: $navigation-color-active;\r\n }\r\n\r\n /* When hovering or the dropdown is open */\r\n & > .mx-navbar-item > a:hover,\r\n & > .mx-navbar-item > a:focus,\r\n & > .mx-navbar-item.open > a,\r\n & > .mx-navbar-item.open > a:hover,\r\n & > .mx-navbar-item.open > a:focus {\r\n text-decoration: none;\r\n color: $navigation-color-hover;\r\n background-color: $navigation-bg-hover;\r\n\r\n .caret {\r\n border-top-color: $navigation-color-hover;\r\n border-bottom-color: $navigation-color-hover;\r\n }\r\n }\r\n\r\n & > .mx-navbar-item.open .dropdown-menu > li.mx-navbar-subitem.active a {\r\n color: $navigation-sub-color-active;\r\n background-color: $navigation-sub-bg-active;\r\n\r\n .caret {\r\n border-top-color: $navigation-sub-color-active;\r\n border-bottom-color: $navigation-sub-color-active;\r\n }\r\n }\r\n }\r\n @media (max-width: $screen-md) {\r\n ul.nav > li.mx-navbar-item > a {\r\n padding: 10px 24px;\r\n }\r\n .mx-navbar-item.open .dropdown-menu {\r\n padding: 0;\r\n border-radius: 0;\r\n background-color: $navigation-sub-bg;\r\n\r\n & > li.mx-navbar-subitem > a {\r\n padding: 10px 24px;\r\n color: $navigation-sub-color;\r\n border-radius: 0;\r\n font-size: $navigation-sub-font-size;\r\n font-weight: $font-weight-normal;\r\n\r\n &:hover,\r\n &:focus {\r\n color: $navigation-sub-color-hover;\r\n background-color: $navigation-sub-bg-hover;\r\n }\r\n\r\n &.active {\r\n color: $navigation-sub-color-active;\r\n background-color: $navigation-sub-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n\r\n /* remove focus */\r\n &:focus {\r\n outline: 0;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin navigation-bar-helpers() {\r\n /* ==========================================================================\r\n Navigation\r\n\r\n //== Regions\r\n //## Behavior in the different regions\r\n ========================================================================== */\r\n // When used in topbar\r\n .region-topbar {\r\n .mx-navbar {\r\n background-color: $navtopbar-bg;\r\n min-height: auto;\r\n ul.nav {\r\n > .mx-navbar-item {\r\n margin-left: $spacing-small;\r\n }\r\n /* Navigation item */\r\n & > li.mx-navbar-item > a {\r\n color: $navtopbar-color;\r\n font-size: $navtopbar-font-size;\r\n line-height: 1.2;\r\n /* Dropdown arrow */\r\n .caret {\r\n border-top-color: $navtopbar-color;\r\n border-bottom-color: $navtopbar-color;\r\n }\r\n &:hover,\r\n &:focus,\r\n &.active {\r\n color: $navtopbar-color-hover;\r\n background-color: $navtopbar-bg-hover;\r\n .caret {\r\n border-top-color: $navtopbar-color-active;\r\n border-bottom-color: $navtopbar-color-active;\r\n }\r\n }\r\n &.active {\r\n color: $navtopbar-color-active;\r\n background-color: $navtopbar-bg-active;\r\n }\r\n\r\n /* Dropdown */\r\n .mx-navbar-submenu::before {\r\n border-color: transparent transparent $navtopbar-border-color transparent;\r\n }\r\n\r\n // Image\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: $navtopbar-glyph-size;\r\n }\r\n }\r\n\r\n /* When hovering or the dropdown is open */\r\n & > .mx-navbar-item > a:hover,\r\n & > .mx-navbar-item > a:focus,\r\n & > .mx-navbar-item.active a,\r\n & > .mx-navbar-item.open > a,\r\n & > .mx-navbar-item.open > a:hover,\r\n & > .mx-navbar-item.open > a:focus {\r\n color: $navtopbar-color-hover;\r\n background-color: $navtopbar-bg-hover;\r\n .caret {\r\n border-top-color: $navtopbar-color-hover;\r\n border-bottom-color: $navtopbar-color-hover;\r\n }\r\n }\r\n\r\n & > .mx-navbar-item.open .dropdown-menu {\r\n border-radius: $border-radius-default;\r\n background-color: $navtopbar-sub-bg;\r\n padding: $spacing-small $spacing-small 0;\r\n margin: 0;\r\n border: 0;\r\n box-shadow: 0px 2px 2px rgba(194, 196, 201, 0.30354);\r\n & > li.mx-navbar-subitem a {\r\n padding: $spacing-small;\r\n color: $navtopbar-color;\r\n border-radius: $border-radius-default;\r\n margin-bottom: $spacing-small;\r\n line-height: 1.2;\r\n &:hover,\r\n &:focus {\r\n color: $navtopbar-color-hover;\r\n background-color: $navtopbar-sub-bg-hover;\r\n }\r\n }\r\n }\r\n & > .mx-navbar-item.open .dropdown-menu > li.mx-navbar-subitem.active a {\r\n color: $navtopbar-sub-color-active;\r\n background-color: $navtopbar-sub-bg-active;\r\n .caret {\r\n border-top-color: $navtopbar-sub-color-active;\r\n border-bottom-color: $navtopbar-sub-color-active;\r\n }\r\n }\r\n }\r\n @media (max-width: $screen-md) {\r\n ul.nav > li.mx-navbar-item > a {\r\n }\r\n .mx-navbar-item.open .dropdown-menu {\r\n background-color: $navtopbar-sub-bg;\r\n & > li.mx-navbar-subitem > a {\r\n color: $navtopbar-sub-color;\r\n font-size: $navtopbar-sub-font-size;\r\n &:hover,\r\n &:focus {\r\n color: $navtopbar-sub-color-hover;\r\n background-color: $navtopbar-sub-bg-hover;\r\n }\r\n &.active {\r\n color: $navtopbar-sub-color-active;\r\n background-color: $navtopbar-sub-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // When used in sidebar\r\n .region-sidebar {\r\n .mx-navbar {\r\n background-color: $navsidebar-bg;\r\n ul.nav {\r\n /* Navigation item */\r\n & > li.mx-navbar-item > a {\r\n color: $navsidebar-color;\r\n font-size: $navsidebar-font-size;\r\n\r\n /* Dropdown arrow */\r\n .caret {\r\n border-top-color: $navsidebar-color;\r\n border-bottom-color: $navsidebar-color;\r\n }\r\n &:hover,\r\n &:focus,\r\n &.active {\r\n color: $navsidebar-color-hover;\r\n background-color: $navsidebar-bg-hover;\r\n .caret {\r\n border-top-color: $navsidebar-color-active;\r\n border-bottom-color: $navsidebar-color-active;\r\n }\r\n }\r\n &.active {\r\n color: $navsidebar-color-active;\r\n background-color: $navsidebar-bg-active;\r\n }\r\n\r\n /* Dropdown */\r\n .mx-navbar-submenu::before {\r\n border-color: transparent transparent $navsidebar-border-color transparent;\r\n }\r\n\r\n // Image\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: $navsidebar-glyph-size;\r\n }\r\n }\r\n\r\n /* When hovering or the dropdown is open */\r\n & > .mx-navbar-item > a:hover,\r\n & > .mx-navbar-item > a:focus,\r\n & > .mx-navbar-item.active a,\r\n & > .mx-navbar-item.open > a,\r\n & > .mx-navbar-item.open > a:hover,\r\n & > .mx-navbar-item.open > a:focus {\r\n color: $navsidebar-color-hover;\r\n background-color: $navsidebar-bg-hover;\r\n .caret {\r\n border-top-color: $navsidebar-color-hover;\r\n border-bottom-color: $navsidebar-color-hover;\r\n }\r\n }\r\n & > .mx-navbar-item.open .dropdown-menu > li.mx-navbar-subitem.active a {\r\n color: $navsidebar-sub-color-active;\r\n background-color: $navsidebar-sub-bg-active;\r\n .caret {\r\n border-top-color: $navsidebar-sub-color-active;\r\n border-bottom-color: $navsidebar-sub-color-active;\r\n }\r\n }\r\n }\r\n @media (max-width: $screen-md) {\r\n ul.nav > li.mx-navbar-item > a {\r\n }\r\n .mx-navbar-item.open .dropdown-menu {\r\n background-color: $navtopbar-sub-bg;\r\n & > li.mx-navbar-subitem > a {\r\n color: $navsidebar-sub-color;\r\n font-size: $navsidebar-sub-font-size;\r\n &:hover,\r\n &:focus {\r\n color: $navsidebar-sub-color-hover;\r\n background-color: $navsidebar-sub-bg-hover;\r\n }\r\n &.active {\r\n color: $navsidebar-sub-color-active;\r\n background-color: $navsidebar-sub-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n .hide-icons.mx-navbar {\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n display: none;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin navigation-list() {\r\n /* ==========================================================================\r\n Navigation list\r\n\r\n Default Mendix navigation list widget. A navigation list can be used to attach an action to an entire row. Such a row is called a navigation list item\r\n ========================================================================== */\r\n .mx-navigationlist {\r\n margin: 0;\r\n padding: 0;\r\n list-style: none;\r\n\r\n li.mx-navigationlist-item {\r\n @include transition();\r\n padding: $spacing-medium;\r\n border-width: 1px;\r\n border-style: none none solid none;\r\n border-color: $grid-border-color;\r\n border-radius: 0;\r\n background-color: $grid-bg;\r\n\r\n &:hover,\r\n &:focus {\r\n color: inherit;\r\n background-color: $grid-bg-hover;\r\n }\r\n\r\n &.active {\r\n color: inherit;\r\n background-color: $grid-bg-selected;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin navigation-tree() {\r\n /* ==========================================================================\r\n Navigation\r\n\r\n Default Mendix navigation tree\r\n ========================================================================== */\r\n .mx-navigationtree {\r\n background-color: $navigation-bg;\r\n\r\n /* Every navigation item */\r\n .navbar-inner > ul {\r\n margin: 0;\r\n padding-left: 0;\r\n\r\n & > li {\r\n padding: 0;\r\n border-style: none;\r\n\r\n & > a {\r\n display: flex;\r\n align-items: center;\r\n height: $navigation-item-height;\r\n padding: $navigation-item-padding;\r\n color: $navigation-color;\r\n //border-bottom: 1px solid $navigation-border-color;\r\n //border-radius: 0;\r\n background-color: $navigation-bg;\r\n text-shadow: none;\r\n font-size: $navigation-font-size;\r\n font-weight: $font-weight-normal;\r\n\r\n .caret {\r\n border-top-color: $navigation-color;\r\n border-bottom-color: $navigation-color;\r\n }\r\n\r\n img {\r\n width: 20px; // Default size\r\n height: auto;\r\n margin-right: 0.5em;\r\n }\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n top: 0;\r\n margin-right: 0.5em;\r\n vertical-align: middle;\r\n font-size: $navigation-glyph-size;\r\n }\r\n }\r\n\r\n a:hover,\r\n a:focus,\r\n a.active {\r\n text-decoration: none;\r\n color: $navigation-color-hover;\r\n background-color: $navigation-bg-hover;\r\n\r\n .caret {\r\n border-top-color: $navigation-color-active;\r\n border-bottom-color: $navigation-color-active;\r\n }\r\n }\r\n\r\n a.active {\r\n color: $navigation-color-active;\r\n border-left-color: $navigation-color-active;\r\n background-color: $navigation-bg-active;\r\n }\r\n }\r\n }\r\n\r\n /* Sub navigation item specific */\r\n li.mx-navigationtree-has-items {\r\n & > ul {\r\n margin: 0;\r\n padding-left: 0;\r\n background-color: $navigation-sub-bg;\r\n\r\n li {\r\n margin: 0;\r\n padding: 0;\r\n border: 0;\r\n\r\n a {\r\n padding: $spacing-medium;\r\n text-decoration: none;\r\n color: $navigation-sub-color;\r\n border: 0;\r\n background-color: $navigation-sub-bg;\r\n text-shadow: none;\r\n font-size: $navigation-sub-font-size;\r\n font-weight: $font-weight-normal;\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n margin-right: $spacing-small;\r\n }\r\n\r\n &:hover,\r\n &:focus,\r\n &.active {\r\n color: $navigation-sub-color-hover;\r\n outline: 0;\r\n background-color: $navigation-sub-bg-hover;\r\n }\r\n\r\n &.active {\r\n color: $navigation-sub-color-active;\r\n border: 0;\r\n background-color: $navigation-sub-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n /* remove focus */\r\n &:focus {\r\n outline: 0;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin navigation-tree-helpers() {\r\n /* ==========================================================================\r\n Navigation\r\n\r\n //== Regions\r\n //## Behavior in the different regions\r\n ========================================================================== */\r\n // When used in topbar\r\n .region-topbar {\r\n .mx-navigationtree {\r\n background-color: $navtopbar-bg;\r\n .navbar-inner > ul {\r\n & > li {\r\n & > a {\r\n color: $navtopbar-color;\r\n border-color: $navtopbar-border-color;\r\n background-color: $navtopbar-bg;\r\n font-size: $navtopbar-font-size;\r\n .caret {\r\n border-top-color: $navtopbar-color;\r\n border-bottom-color: $navtopbar-color;\r\n }\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: $navtopbar-glyph-size;\r\n }\r\n }\r\n a:hover,\r\n a:focus,\r\n a.active {\r\n color: $navtopbar-color-hover;\r\n background-color: $navtopbar-bg-hover;\r\n .caret {\r\n border-top-color: $navtopbar-color-active;\r\n border-bottom-color: $navtopbar-color-active;\r\n }\r\n }\r\n a.active {\r\n color: $navtopbar-color-active;\r\n border-left-color: $navtopbar-color-active;\r\n background-color: $navtopbar-bg-active;\r\n }\r\n }\r\n }\r\n\r\n /* Sub navigation item specific */\r\n li.mx-navigationtree-has-items {\r\n & > ul {\r\n background-color: $navtopbar-sub-bg;\r\n li {\r\n a {\r\n color: $navtopbar-sub-color;\r\n background-color: $navtopbar-sub-bg;\r\n font-size: $navtopbar-sub-font-size;\r\n &:hover,\r\n &:focus,\r\n &.active {\r\n color: $navtopbar-sub-color-hover;\r\n background-color: $navtopbar-sub-bg-hover;\r\n }\r\n &.active {\r\n color: $navtopbar-sub-color-active;\r\n background-color: $navtopbar-sub-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // When used in sidebar\r\n .region-sidebar {\r\n .mx-navigationtree {\r\n background-color: $navsidebar-bg;\r\n .navbar-inner > ul {\r\n & > li {\r\n & > a {\r\n color: $navsidebar-color;\r\n border-color: $navsidebar-border-color;\r\n background-color: $navsidebar-bg;\r\n font-size: $navsidebar-font-size;\r\n .caret {\r\n border-top-color: $navsidebar-color;\r\n border-bottom-color: $navsidebar-color;\r\n }\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: $navsidebar-glyph-size;\r\n }\r\n }\r\n a:hover,\r\n a:focus,\r\n a.active {\r\n color: $navsidebar-color-hover;\r\n background-color: $navsidebar-bg-hover;\r\n .caret {\r\n border-top-color: $navsidebar-color-active;\r\n border-bottom-color: $navsidebar-color-active;\r\n }\r\n }\r\n a.active {\r\n color: $navsidebar-color-active;\r\n border-left-color: $navsidebar-color-active;\r\n background-color: $navsidebar-bg-active;\r\n }\r\n }\r\n }\r\n\r\n /* Sub navigation item specific */\r\n li.mx-navigationtree-has-items {\r\n & > ul {\r\n background-color: $navsidebar-sub-bg;\r\n li {\r\n a {\r\n color: $navsidebar-sub-color;\r\n background-color: $navsidebar-sub-bg;\r\n font-size: $navsidebar-sub-font-size;\r\n &:hover,\r\n &:focus,\r\n &.active {\r\n color: $navsidebar-sub-color-hover;\r\n background-color: $navsidebar-sub-bg-hover;\r\n }\r\n &.active {\r\n color: $navsidebar-sub-color-active;\r\n background-color: $navsidebar-sub-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n //-------------------------------------------------------------------------------------------------------------------//\r\n // Content Centerd text and icons\r\n .nav-content-center-text-icons.mx-navigationtree {\r\n .navbar-inner ul {\r\n a {\r\n flex-direction: column;\r\n justify-content: center;\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n margin: 0 0 5px 0;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Content Centerd icons only\r\n .nav-content-center.mx-navigationtree {\r\n .navbar-inner ul {\r\n a {\r\n justify-content: center;\r\n }\r\n }\r\n }\r\n\r\n .hide-icons.mx-navigationtree {\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n display: none;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin pop-up-menu() {\r\n /* ==========================================================================\r\n Pop-up menu\r\n\r\n Default Mendix pop-up menu\r\n ========================================================================== */\r\n .popupmenu {\r\n position: relative;\r\n display: inline-flex;\r\n }\r\n\r\n .popupmenu-trigger {\r\n cursor: pointer;\r\n }\r\n\r\n .popupmenu-menu {\r\n position: absolute;\r\n z-index: 999;\r\n display: none;\r\n flex-direction: column;\r\n width: max-content;\r\n border-radius: 8px;\r\n background-color: $bg-color;\r\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\r\n\r\n &.popupmenu-position-left:not(.popup-portal) {\r\n top: 0;\r\n left: 0;\r\n transform: translateX(-100%);\r\n }\r\n\r\n &.popupmenu-position-right:not(.popup-portal) {\r\n top: 0;\r\n right: 0;\r\n transform: translateX(100%);\r\n }\r\n\r\n &.popupmenu-position-top:not(.popup-portal) {\r\n top: 0;\r\n transform: translateY(-100%);\r\n }\r\n\r\n &.popupmenu-position-bottom:not(.popup-portal) {\r\n bottom: 0;\r\n transform: translateY(100%);\r\n }\r\n\r\n .popupmenu-basic-item:first-child,\r\n .popupmenu-custom-item:first-child {\r\n border-top-left-radius: 8px;\r\n border-top-right-radius: 8px;\r\n }\r\n\r\n .popupmenu-basic-item:last-child,\r\n .popupmenu-custom-item:last-child {\r\n border-bottom-left-radius: 8px;\r\n border-bottom-right-radius: 8px;\r\n }\r\n }\r\n\r\n .popupmenu-basic-divider {\r\n width: 100%;\r\n height: 1px;\r\n background-color: $brand-default;\r\n }\r\n\r\n .popupmenu-basic-item {\r\n padding: 12px 16px;\r\n color: $font-color-default;\r\n font-size: 14px;\r\n\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n cursor: pointer;\r\n border-color: $bg-color-secondary;\r\n background-color: $bg-color-secondary;\r\n }\r\n\r\n &-inverse {\r\n color: $brand-inverse;\r\n }\r\n\r\n &-primary {\r\n color: $brand-primary;\r\n }\r\n\r\n &-info {\r\n color: $brand-info;\r\n }\r\n\r\n &-success {\r\n color: $brand-success;\r\n }\r\n\r\n &-warning {\r\n color: $brand-warning;\r\n }\r\n\r\n &-danger {\r\n color: $brand-danger;\r\n }\r\n }\r\n\r\n .popupmenu-custom-item {\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n cursor: pointer;\r\n border-color: $bg-color-secondary;\r\n background-color: $bg-color-secondary;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n@mixin simple-menu-bar() {\r\n /* ==========================================================================\r\n Navigation\r\n\r\n Default Mendix simple menu bar\r\n ========================================================================== */\r\n .mx-menubar {\r\n padding: 0;\r\n background-color: $navigation-bg;\r\n\r\n ul.mx-menubar-list {\r\n display: flex;\r\n width: 100%;\r\n min-height: 58px;\r\n\r\n li.mx-menubar-item {\r\n margin: 0;\r\n\r\n > a {\r\n display: flex;\r\n overflow: hidden;\r\n align-items: center;\r\n justify-content: center;\r\n height: 100%;\r\n padding: $navigation-item-padding;\r\n white-space: nowrap;\r\n color: $navigation-color;\r\n border-radius: 0;\r\n font-size: $navigation-font-size;\r\n font-weight: $font-weight-normal;\r\n\r\n img {\r\n margin-right: 0.5em;\r\n }\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n top: -1px;\r\n margin-right: 0.5em;\r\n vertical-align: middle;\r\n font-size: $navigation-glyph-size;\r\n }\r\n }\r\n\r\n a:hover,\r\n a:focus,\r\n &:hover a,\r\n &:focus a,\r\n &.active a {\r\n text-decoration: none;\r\n color: $navigation-color-hover;\r\n background-color: $navigation-bg-hover;\r\n }\r\n\r\n &.active a {\r\n color: $navigation-color-active;\r\n background-color: $navigation-bg-active;\r\n }\r\n }\r\n }\r\n\r\n /* remove focus */\r\n &:focus {\r\n outline: 0;\r\n }\r\n }\r\n\r\n // Vertical variation specifics\r\n .mx-menubar-vertical {\r\n background-color: $navigation-bg;\r\n\r\n ul.mx-menubar-list {\r\n display: flex;\r\n flex-direction: column;\r\n\r\n li.mx-menubar-item {\r\n display: block;\r\n\r\n a {\r\n border-bottom: 1px solid $navigation-border-color;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Horizontal variation specifics\r\n .mx-menubar-horizontal {\r\n box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 0.14);\r\n\r\n ul.mx-menubar-list {\r\n li.mx-menubar-item {\r\n width: auto;\r\n\r\n a {\r\n width: 100%;\r\n }\r\n }\r\n }\r\n\r\n /* Two menu items */\r\n &.menubar-col-6 ul.mx-menubar-list li.mx-menubar-item {\r\n width: 50%;\r\n }\r\n\r\n /* Three menu items */\r\n &.menubar-col-4 ul.mx-menubar-list li.mx-menubar-item {\r\n width: 33.33333333%;\r\n }\r\n\r\n /* Four menu items */\r\n &.menubar-col-3 ul.mx-menubar-list li.mx-menubar-item {\r\n width: 25%;\r\n }\r\n\r\n /* Five menu items */\r\n &.menubar-col-2 ul.mx-menubar-list li.mx-menubar-item {\r\n width: 20%;\r\n }\r\n }\r\n\r\n //== Regions\r\n //## Behavior in the different regions\r\n //-------------------------------------------------------------------------------------------------------------------//\r\n // When used in topbar\r\n .region-topbar {\r\n .mx-menubar {\r\n background-color: $navtopbar-bg;\r\n\r\n ul.mx-menubar-list {\r\n li.mx-menubar-item {\r\n a {\r\n color: $navtopbar-color;\r\n font-size: $navtopbar-font-size;\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: $navtopbar-glyph-size;\r\n }\r\n }\r\n\r\n a:hover,\r\n a:focus,\r\n &:hover a,\r\n &:focus a,\r\n &.active a {\r\n color: $navtopbar-color-hover;\r\n background-color: $navtopbar-bg-hover;\r\n }\r\n\r\n &.active a {\r\n color: $navtopbar-color-active;\r\n background-color: $navtopbar-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Vertical variation specifics\r\n .mx-menubar-vertical {\r\n background-color: $navtopbar-bg;\r\n\r\n ul.mx-menubar-list {\r\n li.mx-menubar-item {\r\n a {\r\n height: $navigation-item-height;\r\n border-color: $navtopbar-border-color;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // When used in sidebar\r\n .region-sidebar {\r\n .mx-menubar {\r\n background-color: $navsidebar-bg;\r\n\r\n ul.mx-menubar-list {\r\n li.mx-menubar-item {\r\n a {\r\n color: $navsidebar-color;\r\n font-size: $navsidebar-font-size;\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: $navsidebar-glyph-size;\r\n }\r\n }\r\n\r\n a:hover,\r\n a:focus,\r\n &:hover a,\r\n &:focus a,\r\n &.active a {\r\n color: $navsidebar-color-hover;\r\n background-color: $navsidebar-bg-hover;\r\n }\r\n\r\n &.active a {\r\n color: $navsidebar-color-active;\r\n background-color: $navsidebar-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Vertical variation specifics\r\n .mx-menubar-vertical {\r\n background-color: $navsidebar-bg;\r\n\r\n ul.mx-menubar-list {\r\n li.mx-menubar-item {\r\n a {\r\n border-color: $navsidebar-border-color;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n @supports (padding-bottom: env(safe-area-inset-bottom)) {\r\n .mx-menubar {\r\n padding-bottom: env(safe-area-inset-bottom);\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin simple-menu-bar-helpers() {\r\n /* ==========================================================================\r\n Navigation\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Center text and icons\r\n .bottom-nav-text-icons.mx-menubar {\r\n ul.mx-menubar-list {\r\n li.mx-menubar-item {\r\n flex: 1;\r\n a {\r\n flex-direction: column;\r\n padding: $spacing-small $spacing-small $spacing-small/2;\r\n line-height: normal;\r\n font-size: $font-size-small;\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n display: block;\r\n margin: 0 0 $spacing-small/2 0;\r\n font-size: $font-size-large;\r\n }\r\n img {\r\n display: block;\r\n height: $font-size-large;\r\n margin: 0 0 $spacing-small/2 0;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n .hide-icons.mx-menubar {\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n display: none;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin radio-button() {\r\n /* ==========================================================================\r\n Radio button\r\n\r\n Default Mendix radio button widget\r\n ========================================================================== */\r\n .mx-radiobuttons.inline .mx-radiogroup {\r\n display: flex;\r\n flex-direction: row;\r\n\r\n .radio {\r\n margin: 0 20px 0 0;\r\n }\r\n }\r\n\r\n .mx-radiobuttons .radio:last-child {\r\n margin-bottom: 0;\r\n }\r\n\r\n .radio {\r\n display: flex !important; // Remove after mxui merge\r\n align-items: center;\r\n margin-top: 0;\r\n }\r\n\r\n input[type=\"radio\"] {\r\n position: relative !important; // Remove after mxui merge\r\n width: 16px;\r\n height: 16px;\r\n margin: 0;\r\n cursor: pointer;\r\n -webkit-user-select: none;\r\n user-select: none;\r\n appearance: none;\r\n -moz-appearance: none;\r\n -webkit-appearance: none;\r\n\r\n &:before,\r\n &:after {\r\n position: absolute;\r\n display: block;\r\n transition: all 0.3s ease-in-out;\r\n border-radius: 50%;\r\n }\r\n\r\n &:before {\r\n width: 100%;\r\n height: 100%;\r\n content: \"\";\r\n border: 1px solid $form-input-border-color;\r\n background-color: transparent;\r\n }\r\n\r\n &:after {\r\n top: 50%;\r\n left: 50%;\r\n width: 50%;\r\n height: 50%;\r\n transform: translate(-50%, -50%);\r\n pointer-events: none;\r\n background-color: $form-input-border-focus-color;\r\n }\r\n\r\n &:not(:checked):after {\r\n transform: translate(-50%, -50%) scale(0);\r\n opacity: 0;\r\n }\r\n\r\n &:not(:disabled):not(:checked):hover:after {\r\n background-color: $form-input-bg-hover;\r\n }\r\n\r\n &:checked:after,\r\n &:not(:disabled):not(:checked):hover:after {\r\n content: \"\";\r\n transform: translate(-50%, -50%) scale(1);\r\n opacity: 1;\r\n }\r\n\r\n &:checked:before {\r\n border-color: $form-input-border-focus-color;\r\n background-color: $form-input-bg;\r\n }\r\n\r\n &:disabled:before {\r\n background-color: $form-input-bg-disabled;\r\n }\r\n\r\n &:checked:disabled:before {\r\n border-color: rgba($form-input-border-focus-color, 0.4);\r\n }\r\n\r\n &:checked:disabled:after {\r\n background-color: rgba($form-input-border-focus-color, 0.4);\r\n }\r\n\r\n & + label {\r\n margin-left: $form-label-gutter;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin scroll-container-dojo() {\r\n /* ==========================================================================\r\n Scroll Container\r\n\r\n Default Mendix Scroll Container Widget.\r\n ========================================================================== */\r\n .mx-scrollcontainer-wrapper:not(.mx-scrollcontainer-nested) {\r\n -webkit-overflow-scrolling: touch;\r\n }\r\n\r\n .mx-scrollcontainer-horizontal {\r\n width: 100%;\r\n display: table;\r\n table-layout: fixed;\r\n }\r\n .mx-scrollcontainer-horizontal > div {\r\n display: table-cell;\r\n vertical-align: top;\r\n }\r\n\r\n .mx-scrollcontainer-nested {\r\n padding: 0;\r\n }\r\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-middle > .mx-scrollcontainer-wrapper,\r\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-left > .mx-scrollcontainer-wrapper,\r\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-center > .mx-scrollcontainer-wrapper,\r\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-right > .mx-scrollcontainer-wrapper {\r\n overflow: auto;\r\n }\r\n\r\n .mx-scrollcontainer-move-in {\r\n transition: left 250ms ease-out;\r\n }\r\n .mx-scrollcontainer-move-out {\r\n transition: left 250ms ease-in;\r\n }\r\n .mx-scrollcontainer-shrink .mx-scrollcontainer-toggleable {\r\n transition-property: width;\r\n }\r\n\r\n .mx-scrollcontainer-toggleable {\r\n background-color: #fff;\r\n }\r\n\r\n .mx-scrollcontainer-push {\r\n position: relative;\r\n }\r\n .mx-scrollcontainer-shrink > .mx-scrollcontainer-toggleable {\r\n overflow: hidden;\r\n }\r\n .mx-scrollcontainer-push.mx-scrollcontainer-open > div,\r\n .mx-scrollcontainer-slide.mx-scrollcontainer-open > div {\r\n pointer-events: none;\r\n }\r\n .mx-scrollcontainer-push.mx-scrollcontainer-open > .mx-scrollcontainer-toggleable,\r\n .mx-scrollcontainer-slide.mx-scrollcontainer-open > .mx-scrollcontainer-toggleable {\r\n pointer-events: auto;\r\n }\r\n\r\n // Scroll container spacing\r\n // NOTE: .mx-placeholder is removed in modern client for the good, this rule is going to be ignored.\r\n .mx-scrollcontainer .mx-placeholder {\r\n width: 100%;\r\n height: 100%;\r\n\r\n .mx-layoutgrid,\r\n .mx-layoutgrid-fluid {\r\n @include layout-spacing($type: padding, $direction: all, $device: responsive);\r\n\r\n .mx-layoutgrid,\r\n .mx-layoutgrid-fluid {\r\n padding: 0;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin tab-container() {\r\n /* ==========================================================================\r\n Tab Container\r\n\r\n Default Mendix Tab Container Widget. Tab containers are used to show information categorized into multiple tab pages.\r\n This can be very useful if the amount of information that has to be displayed is larger than the amount of space on the screen\r\n ========================================================================== */\r\n\r\n .mx-tabcontainer {\r\n .mx-tabcontainer-tabs {\r\n margin-bottom: $spacing-medium;\r\n border-color: $tabs-border-color;\r\n display: flex;\r\n\r\n > li {\r\n float: none;\r\n }\r\n\r\n & > li > a {\r\n margin-right: 0;\r\n transition: all 0.2s ease-in-out;\r\n color: $tabs-color;\r\n font-weight: $font-weight-normal;\r\n border-radius: $border-radius-default $border-radius-default 0 0;\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: $tabs-bg-hover;\r\n }\r\n }\r\n\r\n & > li.active > a,\r\n & > li.active > a:hover,\r\n & > li.active > a:focus {\r\n color: $tabs-color-active;\r\n border: 1px solid $tabs-border-color;\r\n border-bottom-color: #fff;\r\n background-color: $tabs-bg;\r\n }\r\n }\r\n }\r\n\r\n // Tab Styling Specific for mobile\r\n .tab-mobile.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n margin: 0;\r\n text-align: center;\r\n border-style: none;\r\n background-color: $brand-primary;\r\n\r\n li {\r\n display: table-cell;\r\n float: none; // reset bootstrap\r\n width: 1%;\r\n margin: 0;\r\n text-align: center;\r\n border-style: none;\r\n border-radius: 0;\r\n\r\n a {\r\n padding: 16px;\r\n text-transform: uppercase;\r\n color: #ffffff;\r\n border-width: 0 1px 0 0;\r\n border-style: solid;\r\n border-color: rgba(255, 255, 255, 0.3);\r\n border-radius: 0;\r\n font-size: 12px;\r\n font-weight: $font-weight-normal;\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: inherit;\r\n }\r\n }\r\n\r\n &:last-child a {\r\n border-right: none;\r\n }\r\n\r\n &.active > a,\r\n &.active > a:hover,\r\n &.active > a:focus {\r\n color: #ffffff;\r\n border-style: none;\r\n border-radius: 0;\r\n background-color: mix($brand-primary, #000000, 80%);\r\n }\r\n }\r\n }\r\n }\r\n\r\n .mx-tabcontainer-badge {\r\n margin-left: $spacing-small;\r\n border-radius: $font-size-small;\r\n background-color: $label-primary-bg;\r\n color: $label-primary-color;\r\n font-size: $font-size-small;\r\n font-weight: $font-weight-bold;\r\n line-height: 1;\r\n padding: $spacing-small/2 $spacing-small;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin tab-container-helpers() {\r\n /* ==========================================================================\r\n Tab container\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Style as pills\r\n .tab-pills.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n border: 0;\r\n\r\n & > li {\r\n margin-bottom: $spacing-small;\r\n }\r\n\r\n & > li > a {\r\n margin-right: $spacing-small;\r\n color: $tabs-color;\r\n border-radius: $border-radius-default;\r\n background-color: $tabs-bg-pills;\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: $tabs-bg-hover;\r\n }\r\n }\r\n\r\n & > li.active > a,\r\n & > li.active > a:hover,\r\n & > li.active > a:focus {\r\n color: #ffffff;\r\n border-color: $tabs-bg-active;\r\n background-color: $tabs-bg-active;\r\n }\r\n }\r\n }\r\n\r\n // Style with lines\r\n .tab-lined.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n border-width: 1px;\r\n\r\n li {\r\n margin-right: $spacing-large;\r\n\r\n & > a {\r\n padding: $spacing-medium 0 ($spacing-medium - $tabs-lined-border-width) 0; // border is 3px\r\n color: $tabs-color;\r\n border: 0;\r\n border-bottom: $tabs-lined-border-width solid transparent;\r\n border-radius: 0;\r\n\r\n &:hover,\r\n &:focus {\r\n color: $tabs-color;\r\n border: 0;\r\n border-color: transparent;\r\n background: transparent;\r\n }\r\n }\r\n\r\n &.active > a,\r\n &.active > a:hover,\r\n &.active > a:focus {\r\n color: $tabs-lined-color-active;\r\n border: 0;\r\n border-bottom: $tabs-lined-border-width solid $tabs-lined-border-color;\r\n background-color: transparent;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Justified style\r\n // Lets your tabs take 100% of the width\r\n .tab-justified.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n width: 100%;\r\n border-bottom: 0;\r\n\r\n & > li {\r\n flex: 1;\r\n float: none; // reset bootstrap\r\n margin: 0;\r\n @media (max-width: $screen-sm-max) {\r\n display: block;\r\n width: 100%;\r\n }\r\n\r\n & > a {\r\n text-align: center;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Bordered\r\n .tab-bordered.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n margin: 0;\r\n }\r\n\r\n & > .mx-tabcontainer-content {\r\n padding: $spacing-small;\r\n border-width: 0 1px 1px 1px;\r\n border-style: solid;\r\n border-color: $tabs-border-color;\r\n background-color: transparent;\r\n }\r\n }\r\n\r\n // Wizard\r\n .tab-wizard.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n position: relative;\r\n display: flex;\r\n justify-content: space-between;\r\n border-style: none;\r\n\r\n &::before {\r\n position: absolute;\r\n top: $spacing-medium;\r\n display: block;\r\n width: 100%;\r\n height: 1px;\r\n content: \"\";\r\n background-color: $tabs-border-color;\r\n }\r\n\r\n & > li {\r\n position: relative;\r\n float: none; // reset bootstrap\r\n width: 100%;\r\n text-align: center;\r\n\r\n & > a {\r\n width: calc((#{$spacing-medium} * 2) + 1px);\r\n height: calc((#{$spacing-medium} * 2) + 1px);\r\n margin: auto;\r\n padding: 0;\r\n text-align: center;\r\n color: $brand-primary;\r\n border: 1px solid $tabs-border-color;\r\n border-radius: 100%;\r\n background-color: $bg-color;\r\n font-size: $font-size-large;\r\n font-weight: bold;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n }\r\n\r\n &.active {\r\n & > a,\r\n & > a:hover,\r\n & > a:focus {\r\n color: #ffffff;\r\n border-color: $tabs-bg-active;\r\n background-color: $tabs-bg-active;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n //add tabcontainer flex classes\r\n\r\n .tab-center.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n display: flex;\r\n align-items: center;\r\n flex-flow: wrap;\r\n justify-content: center;\r\n }\r\n }\r\n\r\n .tab-left.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n display: flex;\r\n align-items: center;\r\n flex-flow: wrap;\r\n justify-content: flex-start;\r\n }\r\n }\r\n\r\n .tab-right.mx-tabcontainer {\r\n & > .mx-tabcontainer-tabs {\r\n display: flex;\r\n align-items: center;\r\n flex-flow: wrap;\r\n justify-content: flex-end;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin table() {\r\n /* ==========================================================================\r\n Table\r\n\r\n Default Mendix table widget. Tables can be used to lend structure to a page. They contain a number of rows (tr) and columns, the intersection of which is called a cell (td). Each cell can contain widgets\r\n ========================================================================== */\r\n\r\n th {\r\n font-weight: $font-weight-bold;\r\n }\r\n\r\n html body .mx-page table.mx-table {\r\n th,\r\n td {\r\n &.nopadding {\r\n padding: 0;\r\n }\r\n }\r\n }\r\n\r\n table.mx-table {\r\n > tbody {\r\n /* Table row */\r\n > tr {\r\n /* Table header */\r\n > th {\r\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\r\n $padding-table-cell-left;\r\n\r\n s * {\r\n color: $form-label-color;\r\n font-weight: $font-weight-bold;\r\n font-weight: $form-label-weight;\r\n }\r\n\r\n > label {\r\n padding-top: 8px;\r\n padding-bottom: 6px; // Aligns label in the middle if there is no input field next to it.\r\n }\r\n }\r\n\r\n /* Table cells */\r\n > td {\r\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\r\n $padding-table-cell-left;\r\n\r\n > div > label,\r\n .mx-referenceselector-input-wrapper label {\r\n padding-top: 8px;\r\n padding-bottom: 6px; // Aligns label in the middle if there is no input field next to it.\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Default Mendix Table Widget inside TemplateGrid\r\n .mx-templategrid table.mx-table {\r\n > tbody {\r\n > tr {\r\n > th,\r\n > td {\r\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\r\n $padding-table-cell-left;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Default Mendix Table Widget inside Listview\r\n .mx-list table.mx-table {\r\n > tbody {\r\n > tr {\r\n > th,\r\n > td {\r\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\r\n $padding-table-cell-left;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin table-helpers() {\r\n /* ==========================================================================\r\n Table\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Lined\r\n table.table-lined.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > td {\r\n border-width: 1px 0;\r\n border-style: solid;\r\n border-color: $grid-border-color;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Bordered\r\n table.table-bordered.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > th,\r\n > td {\r\n border-width: 1px;\r\n border-style: solid;\r\n border-color: $grid-border-color;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Makes table compact\r\n table.table-compact.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > th,\r\n > td {\r\n padding-top: 2px;\r\n padding-bottom: 2px;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Tables Vertical\r\n // Will remove unwanted paddings\r\n table.table-vertical.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n > th {\r\n padding-bottom: 0;\r\n\r\n > label {\r\n padding: 0;\r\n }\r\n\r\n > div > label {\r\n padding: 0;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Align content in middle\r\n table.table-align-vertical-middle.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > th,\r\n > td {\r\n vertical-align: middle;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Compact labels\r\n table.table-label-compact.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > th,\r\n > td {\r\n > label {\r\n margin: 0;\r\n padding: 0;\r\n }\r\n\r\n > div > label,\r\n .mx-referenceselector-input-wrapper label {\r\n margin: 0;\r\n padding: 0;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n $height-row-s: 55px;\r\n $height-row-m: 70px;\r\n $height-row-l: 120px;\r\n // Small rows\r\n table.table-row-s.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > th,\r\n > td {\r\n height: $height-row-s;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Medium rows\r\n table.table-row-m.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > th,\r\n > td {\r\n height: $height-row-m;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Large rows\r\n table.table-row-l.mx-table {\r\n > tbody {\r\n // Table row\r\n > tr {\r\n // Table header\r\n // Table data\r\n > th,\r\n > td {\r\n height: $height-row-l;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Makes the columns fixed\r\n table.table-fixed {\r\n table-layout: fixed;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin template-grid() {\r\n /* ==========================================================================\r\n Template grid\r\n\r\n Default Mendix template grid Widget. The template grid shows a list of objects in a tile view. For example, a template grid can show a list of products. The template grid has a lot in common with the data grid. The main difference is that the objects are shown in templates (a sort of small data view) instead of rows\r\n ========================================================================== */\r\n\r\n .mx-templategrid {\r\n .mx-templategrid-content-wrapper {\r\n table-layout: fixed;\r\n }\r\n\r\n .mx-templategrid-item {\r\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\r\n cursor: default;\r\n background-color: $grid-bg;\r\n\r\n &:hover {\r\n background-color: transparent;\r\n }\r\n\r\n &.selected {\r\n background-color: $grid-bg-selected !important;\r\n }\r\n }\r\n\r\n .mx-layoutgrid {\r\n padding-top: 0 !important;\r\n padding-bottom: 0 !important;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin template-grid-helpers() {\r\n /* ==========================================================================\r\n Template grid\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Make sure your content looks selectable\r\n .templategrid-selectable.mx-templategrid {\r\n .mx-templategrid-item {\r\n cursor: pointer;\r\n }\r\n }\r\n\r\n // Lined\r\n .templategrid-lined.mx-templategrid {\r\n .mx-grid-content {\r\n border-top-width: 2px;\r\n border-top-style: solid;\r\n border-top-color: $grid-border-color;\r\n }\r\n\r\n .mx-templategrid-item {\r\n border-top: 1px solid $grid-border-color;\r\n border-right: none;\r\n border-bottom: 1px solid $grid-border-color;\r\n border-left: none;\r\n }\r\n }\r\n\r\n // Striped\r\n .templategrid-striped.mx-templategrid {\r\n .mx-templategrid-row:nth-child(odd) .mx-templategrid-item {\r\n background-color: #f9f9f9;\r\n }\r\n }\r\n\r\n // Stylingless\r\n .templategrid-stylingless.mx-templategrid {\r\n .mx-templategrid-item {\r\n padding: 0;\r\n cursor: default;\r\n border: 0;\r\n background-color: transparent;\r\n\r\n &:hover {\r\n background-color: transparent;\r\n }\r\n\r\n &.selected {\r\n background-color: transparent !important;\r\n\r\n &:hover {\r\n background-color: transparent !important;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Transparent items\r\n .templategrid-transparent.mx-templategrid {\r\n .mx-templategrid-item {\r\n border: 0;\r\n background-color: transparent;\r\n }\r\n }\r\n\r\n // Hover\r\n .templategrid-hover.mx-templategrid {\r\n .mx-templategrid-item {\r\n &:hover {\r\n background-color: $grid-bg-hover !important;\r\n }\r\n\r\n &.selected {\r\n background-color: $grid-bg-selected !important;\r\n\r\n &:hover {\r\n background-color: $grid-bg-selected-hover !important;\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Templategrid Row Sizes\r\n .templategrid-lg.mx-templategrid {\r\n .mx-templategrid-item {\r\n padding: ($grid-padding-top * 2) ($grid-padding-right * 2) ($grid-padding-bottom * 2)\r\n ($grid-padding-left * 2);\r\n }\r\n }\r\n\r\n .templategrid-sm.mx-templategrid {\r\n .mx-templategrid-item {\r\n padding: ($grid-padding-top / 2) ($grid-padding-right / 2) ($grid-padding-bottom / 2)\r\n ($grid-padding-left / 2);\r\n }\r\n }\r\n\r\n // Templategrid Layoutgrid styles\r\n .mx-templategrid[class*=\"tg-col\"] {\r\n overflow: hidden; // For if it is not in a layout, to prevent scrollbars\r\n .mx-templategrid-content-wrapper {\r\n display: block;\r\n }\r\n\r\n .mx-templategrid-row {\r\n display: block;\r\n margin-right: -1 * $gutter-size;\r\n margin-left: -1 * $gutter-size;\r\n\r\n &::before,\r\n &::after {\r\n // clearfix\r\n display: table;\r\n clear: both;\r\n content: \" \";\r\n }\r\n }\r\n\r\n .mx-templategrid-item {\r\n // bootstrap col\r\n position: relative;\r\n display: block;\r\n float: left;\r\n min-height: 1px;\r\n padding-right: $gutter-size;\r\n padding-left: $gutter-size;\r\n border: 0;\r\n @media (max-width: 992px) {\r\n width: 100% !important;\r\n }\r\n\r\n .mx-dataview {\r\n overflow: hidden;\r\n }\r\n }\r\n\r\n &.tg-col-xs-12 .mx-templategrid-item {\r\n width: 100% !important;\r\n }\r\n\r\n &.tg-col-xs-11 .mx-templategrid-item {\r\n width: 91.66666667% !important;\r\n }\r\n\r\n &.tg-col-xs-10 .mx-templategrid-item {\r\n width: 83.33333333% !important;\r\n }\r\n\r\n &.tg-col-xs-9 .mx-templategrid-item {\r\n width: 75% !important;\r\n }\r\n\r\n &.tg-col-xs-8 .mx-templategrid-item {\r\n width: 66.66666667% !important;\r\n }\r\n\r\n &.tg-col-xs-7 .mx-templategrid-item {\r\n width: 58.33333333% !important;\r\n }\r\n\r\n &.tg-col-xs-6 .mx-templategrid-item {\r\n width: 50% !important;\r\n }\r\n\r\n &.tg-col-xs-5 .mx-templategrid-item {\r\n width: 41.66666667% !important;\r\n }\r\n\r\n &.tg-col-xs-4 .mx-templategrid-item {\r\n width: 33.33333333% !important;\r\n }\r\n\r\n &.tg-col-xs-3 .mx-templategrid-item {\r\n width: 25% !important;\r\n }\r\n\r\n &.tg-col-xs-2 .mx-templategrid-item {\r\n width: 16.66666667% !important;\r\n }\r\n\r\n &.tg-col-xs-1 .mx-templategrid-item {\r\n width: 8.33333333% !important;\r\n }\r\n\r\n @media (min-width: 768px) {\r\n &.tg-col-sm-12 .mx-templategrid-item {\r\n width: 100% !important;\r\n }\r\n &.tg-col-sm-11 .mx-templategrid-item {\r\n width: 91.66666667% !important;\r\n }\r\n &.tg-col-sm-10 .mx-templategrid-item {\r\n width: 83.33333333% !important;\r\n }\r\n &.tg-col-sm-9 .mx-templategrid-item {\r\n width: 75% !important;\r\n }\r\n &.tg-col-sm-8 .mx-templategrid-item {\r\n width: 66.66666667% !important;\r\n }\r\n &.tg-col-sm-7 .mx-templategrid-item {\r\n width: 58.33333333% !important;\r\n }\r\n &.tg-col-sm-6 .mx-templategrid-item {\r\n width: 50% !important;\r\n }\r\n &.tg-col-sm-5 .mx-templategrid-item {\r\n width: 41.66666667% !important;\r\n }\r\n &.tg-col-sm-4 .mx-templategrid-item {\r\n width: 33.33333333% !important;\r\n }\r\n &.tg-col-sm-3 .mx-templategrid-item {\r\n width: 25% !important;\r\n }\r\n &.tg-col-sm-2 .mx-templategrid-item {\r\n width: 16.66666667% !important;\r\n }\r\n &.tg-col-sm-1 .mx-templategrid-item {\r\n width: 8.33333333% !important;\r\n }\r\n }\r\n @media (min-width: 992px) {\r\n &.tg-col-md-12 .mx-templategrid-item {\r\n width: 100% !important;\r\n }\r\n &.tg-col-md-11 .mx-templategrid-item {\r\n width: 91.66666667% !important;\r\n }\r\n &.tg-col-md-10 .mx-templategrid-item {\r\n width: 83.33333333% !important;\r\n }\r\n &.tg-col-md-9 .mx-templategrid-item {\r\n width: 75% !important;\r\n }\r\n &.tg-col-md-8 .mx-templategrid-item {\r\n width: 66.66666667% !important;\r\n }\r\n &.tg-col-md-7 .mx-templategrid-item {\r\n width: 58.33333333% !important;\r\n }\r\n &.tg-col-md-6 .mx-templategrid-item {\r\n width: 50% !important;\r\n }\r\n &.tg-col-md-5 .mx-templategrid-item {\r\n width: 41.66666667% !important;\r\n }\r\n &.tg-col-md-4 .mx-templategrid-item {\r\n width: 33.33333333% !important;\r\n }\r\n &.tg-col-md-3 .mx-templategrid-item {\r\n width: 25% !important;\r\n }\r\n &.tg-col-md-2 .mx-templategrid-item {\r\n width: 16.66666667% !important;\r\n }\r\n &.tg-col-md-1 .mx-templategrid-item {\r\n width: 8.33333333% !important;\r\n }\r\n }\r\n @media (min-width: 1200px) {\r\n &.tg-col-lg-12 .mx-templategrid-item {\r\n width: 100% !important;\r\n }\r\n &.tg-col-lg-11 .mx-templategrid-item {\r\n width: 91.66666667% !important;\r\n }\r\n &.tg-col-lg-10 .mx-templategrid-item {\r\n width: 83.33333333% !important;\r\n }\r\n &.tg-col-lg-9 .mx-templategrid-item {\r\n width: 75% !important;\r\n }\r\n &.tg-col-lg-8 .mx-templategrid-item {\r\n width: 66.66666667% !important;\r\n }\r\n &.tg-col-lg-7 .mx-templategrid-item {\r\n width: 58.33333333% !important;\r\n }\r\n &.tg-col-lg-6 .mx-templategrid-item {\r\n width: 50% !important;\r\n }\r\n &.tg-col-lg-5 .mx-templategrid-item {\r\n width: 41.66666667% !important;\r\n }\r\n &.tg-col-lg-4 .mx-templategrid-item {\r\n width: 33.33333333% !important;\r\n }\r\n &.tg-col-lg-3 .mx-templategrid-item {\r\n width: 25% !important;\r\n }\r\n &.tg-col-lg-2 .mx-templategrid-item {\r\n width: 16.66666667% !important;\r\n }\r\n &.tg-col-lg-1 .mx-templategrid-item {\r\n width: 8.33333333% !important;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin typography() {\r\n /* ==========================================================================\r\n Typography\r\n ========================================================================== */\r\n\r\n p {\r\n line-height: $line-height-base * 1.25;\r\n margin: 0 0 $spacing-small;\r\n }\r\n\r\n .mx-title {\r\n margin: $font-header-margin;\r\n color: $font-color-header;\r\n font-size: $font-size-h1;\r\n font-weight: $font-weight-header;\r\n }\r\n\r\n h1,\r\n .h1,\r\n .h1 > * {\r\n font-size: $font-size-h1;\r\n }\r\n\r\n h2,\r\n .h2,\r\n .h2 > * {\r\n font-size: $font-size-h2;\r\n }\r\n\r\n h3,\r\n .h3,\r\n .h3 > * {\r\n font-size: $font-size-h3;\r\n }\r\n\r\n h4,\r\n .h4,\r\n .h4 > * {\r\n font-size: $font-size-h4;\r\n }\r\n\r\n h5,\r\n .h5,\r\n .h5 > * {\r\n font-size: $font-size-h5;\r\n }\r\n\r\n h6,\r\n .h6,\r\n .h6 > * {\r\n font-size: $font-size-h6;\r\n }\r\n\r\n h1,\r\n h2,\r\n h3,\r\n h4,\r\n h5,\r\n h6,\r\n .h1,\r\n .h2,\r\n .h3,\r\n .h4,\r\n .h5,\r\n .h6 {\r\n margin: $font-header-margin;\r\n color: $font-color-header;\r\n font-weight: $font-weight-header;\r\n line-height: 1.3;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin typography-helpers() {\r\n /* ==========================================================================\r\n Typography\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n // Text size\r\n .text-small {\r\n font-size: $font-size-small !important;\r\n }\r\n\r\n .text-large {\r\n font-size: $font-size-large !important;\r\n }\r\n\r\n // Text Weights\r\n .text-light,\r\n .text-light > *,\r\n .text-light label {\r\n font-weight: $font-weight-light !important;\r\n }\r\n\r\n .text-normal,\r\n .text-normal > *,\r\n .text-normal label {\r\n font-weight: $font-weight-normal !important;\r\n }\r\n\r\n .text-semibold,\r\n .text-semibold > *,\r\n .text-semibold label {\r\n font-weight: $font-weight-semibold !important;\r\n }\r\n\r\n .text-bold,\r\n .text-bold > *,\r\n .text-bold label {\r\n font-weight: $font-weight-bold !important;\r\n }\r\n\r\n // Color variations\r\n .text-secondary,\r\n .text-secondary:hover,\r\n .text-default,\r\n .text-default:hover {\r\n color: $font-color-default !important;\r\n }\r\n\r\n .text-primary,\r\n .text-primary:hover {\r\n color: $brand-primary !important;\r\n }\r\n\r\n .text-info,\r\n .text-info:hover {\r\n color: $brand-info !important;\r\n }\r\n\r\n .text-success,\r\n .text-success:hover {\r\n color: $brand-success !important;\r\n }\r\n\r\n .text-warning,\r\n .text-warning:hover {\r\n color: $brand-warning !important;\r\n }\r\n\r\n .text-danger,\r\n .text-danger:hover {\r\n color: $brand-danger !important;\r\n }\r\n\r\n .text-header {\r\n color: $font-color-header !important;\r\n }\r\n\r\n .text-detail {\r\n color: $font-color-detail !important;\r\n }\r\n\r\n .text-white {\r\n color: #ffffff;\r\n }\r\n\r\n // Alignment options\r\n .text-left {\r\n text-align: left !important;\r\n }\r\n .text-center {\r\n text-align: center !important;\r\n }\r\n .text-right {\r\n text-align: right !important;\r\n }\r\n .text-justify {\r\n text-align: justify !important;\r\n }\r\n\r\n // Transform options\r\n .text-lowercase {\r\n text-transform: lowercase !important;\r\n }\r\n .text-uppercase {\r\n text-transform: uppercase !important;\r\n }\r\n .text-capitalize {\r\n text-transform: capitalize !important;\r\n }\r\n\r\n // Wrap options\r\n .text-break {\r\n word-break: break-all !important;\r\n word-break: break-word !important;\r\n -webkit-hyphens: auto !important;\r\n hyphens: auto !important;\r\n }\r\n\r\n .text-nowrap {\r\n white-space: nowrap !important;\r\n }\r\n\r\n .text-nowrap {\r\n overflow: hidden !important;\r\n max-width: 100% !important;\r\n white-space: nowrap !important;\r\n text-overflow: ellipsis !important;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin layout-grid() {\r\n /* ==========================================================================\r\n Layout grid\r\n\r\n Default Bootstrap containers\r\n ========================================================================== */\r\n .mx-layoutgrid {\r\n width: 100%;\r\n margin-right: auto;\r\n margin-left: auto;\r\n padding-right: $gutter-size;\r\n padding-left: $gutter-size;\r\n }\r\n\r\n // Row\r\n .row {\r\n display: flex;\r\n flex-wrap: wrap;\r\n margin-right: -$gutter-size;\r\n margin-left: -$gutter-size;\r\n\r\n &::before,\r\n &::after {\r\n content: normal;\r\n }\r\n }\r\n\r\n .no-gutters {\r\n margin-right: 0;\r\n margin-left: 0;\r\n }\r\n\r\n .no-gutters > .col,\r\n .no-gutters > [class*=\"col-\"] {\r\n padding-right: 0;\r\n padding-left: 0;\r\n }\r\n\r\n // Columns\r\n .col-1,\r\n .col-2,\r\n .col-3,\r\n .col-4,\r\n .col-5,\r\n .col-6,\r\n .col-7,\r\n .col-8,\r\n .col-9,\r\n .col-10,\r\n .col-11,\r\n .col-12,\r\n .col,\r\n .col-auto,\r\n .col-sm-1,\r\n .col-sm-2,\r\n .col-sm-3,\r\n .col-sm-4,\r\n .col-sm-5,\r\n .col-sm-6,\r\n .col-sm-7,\r\n .col-sm-8,\r\n .col-sm-9,\r\n .col-sm-10,\r\n .col-sm-11,\r\n .col-sm-12,\r\n .col-sm,\r\n .col-sm-auto,\r\n .col-md-1,\r\n .col-md-2,\r\n .col-md-3,\r\n .col-md-4,\r\n .col-md-5,\r\n .col-md-6,\r\n .col-md-7,\r\n .col-md-8,\r\n .col-md-9,\r\n .col-md-10,\r\n .col-md-11,\r\n .col-md-12,\r\n .col-md,\r\n .col-md-auto,\r\n .col-lg-1,\r\n .col-lg-2,\r\n .col-lg-3,\r\n .col-lg-4,\r\n .col-lg-5,\r\n .col-lg-6,\r\n .col-lg-7,\r\n .col-lg-8,\r\n .col-lg-9,\r\n .col-lg-10,\r\n .col-lg-11,\r\n .col-lg-12,\r\n .col-lg,\r\n .col-lg-auto,\r\n .col-xl-1,\r\n .col-xl-2,\r\n .col-xl-3,\r\n .col-xl-4,\r\n .col-xl-5,\r\n .col-xl-6,\r\n .col-xl-7,\r\n .col-xl-8,\r\n .col-xl-9,\r\n .col-xl-10,\r\n .col-xl-11,\r\n .col-xl-12,\r\n .col-xl,\r\n .col-xl-auto {\r\n position: relative;\r\n width: 100%;\r\n padding-right: $gutter-size;\r\n padding-left: $gutter-size;\r\n }\r\n\r\n .col {\r\n flex-basis: 0;\r\n flex-grow: 1;\r\n max-width: 100%;\r\n }\r\n\r\n .col-auto {\r\n flex: 0 0 auto;\r\n width: auto;\r\n max-width: 100%;\r\n }\r\n\r\n .col-1 {\r\n flex: 0 0 8.333333%;\r\n max-width: 8.333333%;\r\n }\r\n\r\n .col-2 {\r\n flex: 0 0 16.666667%;\r\n max-width: 16.666667%;\r\n }\r\n\r\n .col-3 {\r\n flex: 0 0 25%;\r\n max-width: 25%;\r\n }\r\n\r\n .col-4 {\r\n flex: 0 0 33.333333%;\r\n max-width: 33.333333%;\r\n }\r\n\r\n .col-5 {\r\n flex: 0 0 41.666667%;\r\n max-width: 41.666667%;\r\n }\r\n\r\n .col-6 {\r\n flex: 0 0 50%;\r\n max-width: 50%;\r\n }\r\n\r\n .col-7 {\r\n flex: 0 0 58.333333%;\r\n max-width: 58.333333%;\r\n }\r\n\r\n .col-8 {\r\n flex: 0 0 66.666667%;\r\n max-width: 66.666667%;\r\n }\r\n\r\n .col-9 {\r\n flex: 0 0 75%;\r\n max-width: 75%;\r\n }\r\n\r\n .col-10 {\r\n flex: 0 0 83.333333%;\r\n max-width: 83.333333%;\r\n }\r\n\r\n .col-11 {\r\n flex: 0 0 91.666667%;\r\n max-width: 91.666667%;\r\n }\r\n\r\n .col-12 {\r\n flex: 0 0 100%;\r\n max-width: 100%;\r\n }\r\n\r\n .order-first {\r\n order: -1;\r\n }\r\n\r\n .order-last {\r\n order: 13;\r\n }\r\n\r\n .order-0 {\r\n order: 0;\r\n }\r\n\r\n .order-1 {\r\n order: 1;\r\n }\r\n\r\n .order-2 {\r\n order: 2;\r\n }\r\n\r\n .order-3 {\r\n order: 3;\r\n }\r\n\r\n .order-4 {\r\n order: 4;\r\n }\r\n\r\n .order-5 {\r\n order: 5;\r\n }\r\n\r\n .order-6 {\r\n order: 6;\r\n }\r\n\r\n .order-7 {\r\n order: 7;\r\n }\r\n\r\n .order-8 {\r\n order: 8;\r\n }\r\n\r\n .order-9 {\r\n order: 9;\r\n }\r\n\r\n .order-10 {\r\n order: 10;\r\n }\r\n\r\n .order-11 {\r\n order: 11;\r\n }\r\n\r\n .order-12 {\r\n order: 12;\r\n }\r\n\r\n .offset-1,\r\n .col-offset-1 {\r\n margin-left: 8.333333%;\r\n }\r\n\r\n .offset-2,\r\n .col-offset-2 {\r\n margin-left: 16.666667%;\r\n }\r\n\r\n .offset-3,\r\n .col-offset-3 {\r\n margin-left: 25%;\r\n }\r\n\r\n .offset-4,\r\n .col-offset-4 {\r\n margin-left: 33.333333%;\r\n }\r\n\r\n .offset-5,\r\n .col-offset-5 {\r\n margin-left: 41.666667%;\r\n }\r\n\r\n .offset-6,\r\n .col-offset-6 {\r\n margin-left: 50%;\r\n }\r\n\r\n .offset-7,\r\n .col-offset-7 {\r\n margin-left: 58.333333%;\r\n }\r\n\r\n .offset-8,\r\n .col-offset-8 {\r\n margin-left: 66.666667%;\r\n }\r\n\r\n .offset-9,\r\n .col-offset-9 {\r\n margin-left: 75%;\r\n }\r\n\r\n .offset-10,\r\n .col-offset-10 {\r\n margin-left: 83.333333%;\r\n }\r\n\r\n .offset-11,\r\n .col-offset-11 {\r\n margin-left: 91.666667%;\r\n }\r\n\r\n // Responsiveness\r\n @media (min-width: $screen-sm) {\r\n .mx-layoutgrid-fixed {\r\n max-width: 540px;\r\n }\r\n }\r\n\r\n @media (min-width: $screen-md) {\r\n .mx-layoutgrid-fixed {\r\n max-width: 720px;\r\n }\r\n }\r\n\r\n @media (min-width: $screen-lg) {\r\n .mx-layoutgrid-fixed {\r\n max-width: 960px;\r\n }\r\n }\r\n\r\n @media (min-width: $screen-xl) {\r\n .mx-layoutgrid-fixed {\r\n max-width: 1140px;\r\n }\r\n }\r\n\r\n @media (min-width: $screen-sm) {\r\n .col-sm {\r\n flex-basis: 0;\r\n flex-grow: 1;\r\n max-width: 100%;\r\n }\r\n .col-sm-auto {\r\n flex: 0 0 auto;\r\n width: auto;\r\n max-width: 100%;\r\n }\r\n .col-sm-1 {\r\n flex: 0 0 8.333333%;\r\n max-width: 8.333333%;\r\n }\r\n .col-sm-2 {\r\n flex: 0 0 16.666667%;\r\n max-width: 16.666667%;\r\n }\r\n .col-sm-3 {\r\n flex: 0 0 25%;\r\n max-width: 25%;\r\n }\r\n .col-sm-4 {\r\n flex: 0 0 33.333333%;\r\n max-width: 33.333333%;\r\n }\r\n .col-sm-5 {\r\n flex: 0 0 41.666667%;\r\n max-width: 41.666667%;\r\n }\r\n .col-sm-6 {\r\n flex: 0 0 50%;\r\n max-width: 50%;\r\n }\r\n .col-sm-7 {\r\n flex: 0 0 58.333333%;\r\n max-width: 58.333333%;\r\n }\r\n .col-sm-8 {\r\n flex: 0 0 66.666667%;\r\n max-width: 66.666667%;\r\n }\r\n .col-sm-9 {\r\n flex: 0 0 75%;\r\n max-width: 75%;\r\n }\r\n .col-sm-10 {\r\n flex: 0 0 83.333333%;\r\n max-width: 83.333333%;\r\n }\r\n .col-sm-11 {\r\n flex: 0 0 91.666667%;\r\n max-width: 91.666667%;\r\n }\r\n .col-sm-12 {\r\n flex: 0 0 100%;\r\n max-width: 100%;\r\n }\r\n .order-sm-first {\r\n order: -1;\r\n }\r\n .order-sm-last {\r\n order: 13;\r\n }\r\n .order-sm-0 {\r\n order: 0;\r\n }\r\n .order-sm-1 {\r\n order: 1;\r\n }\r\n .order-sm-2 {\r\n order: 2;\r\n }\r\n .order-sm-3 {\r\n order: 3;\r\n }\r\n .order-sm-4 {\r\n order: 4;\r\n }\r\n .order-sm-5 {\r\n order: 5;\r\n }\r\n .order-sm-6 {\r\n order: 6;\r\n }\r\n .order-sm-7 {\r\n order: 7;\r\n }\r\n .order-sm-8 {\r\n order: 8;\r\n }\r\n .order-sm-9 {\r\n order: 9;\r\n }\r\n .order-sm-10 {\r\n order: 10;\r\n }\r\n .order-sm-11 {\r\n order: 11;\r\n }\r\n .order-sm-12 {\r\n order: 12;\r\n }\r\n .offset-sm-0,\r\n .col-sm-offset-0 {\r\n margin-left: 0;\r\n }\r\n .offset-sm-1,\r\n .col-sm-offset-1 {\r\n margin-left: 8.333333%;\r\n }\r\n .offset-sm-2,\r\n .col-sm-offset-2 {\r\n margin-left: 16.666667%;\r\n }\r\n .offset-sm-3,\r\n .col-sm-offset-3 {\r\n margin-left: 25%;\r\n }\r\n .offset-sm-4,\r\n .col-sm-offset-4 {\r\n margin-left: 33.333333%;\r\n }\r\n .offset-sm-5,\r\n .col-sm-offset-5 {\r\n margin-left: 41.666667%;\r\n }\r\n .offset-sm-6,\r\n .col-sm-offset-6 {\r\n margin-left: 50%;\r\n }\r\n .offset-sm-7,\r\n .col-sm-offset-7 {\r\n margin-left: 58.333333%;\r\n }\r\n .offset-sm-8,\r\n .col-sm-offset-8 {\r\n margin-left: 66.666667%;\r\n }\r\n .offset-sm-9,\r\n .col-sm-offset-9 {\r\n margin-left: 75%;\r\n }\r\n .offset-sm-10,\r\n .col-sm-offset-10 {\r\n margin-left: 83.333333%;\r\n }\r\n .offset-sm-11,\r\n .col-sm-offset-11 {\r\n margin-left: 91.666667%;\r\n }\r\n }\r\n\r\n @media (min-width: $screen-md) {\r\n .col-md {\r\n flex-basis: 0;\r\n flex-grow: 1;\r\n max-width: 100%;\r\n }\r\n .col-md-auto {\r\n flex: 0 0 auto;\r\n width: auto;\r\n max-width: 100%;\r\n }\r\n .col-md-1 {\r\n flex: 0 0 8.333333%;\r\n max-width: 8.333333%;\r\n }\r\n .col-md-2 {\r\n flex: 0 0 16.666667%;\r\n max-width: 16.666667%;\r\n }\r\n .col-md-3 {\r\n flex: 0 0 25%;\r\n max-width: 25%;\r\n }\r\n .col-md-4 {\r\n flex: 0 0 33.333333%;\r\n max-width: 33.333333%;\r\n }\r\n .col-md-5 {\r\n flex: 0 0 41.666667%;\r\n max-width: 41.666667%;\r\n }\r\n .col-md-6 {\r\n flex: 0 0 50%;\r\n max-width: 50%;\r\n }\r\n .col-md-7 {\r\n flex: 0 0 58.333333%;\r\n max-width: 58.333333%;\r\n }\r\n .col-md-8 {\r\n flex: 0 0 66.666667%;\r\n max-width: 66.666667%;\r\n }\r\n .col-md-9 {\r\n flex: 0 0 75%;\r\n max-width: 75%;\r\n }\r\n .col-md-10 {\r\n flex: 0 0 83.333333%;\r\n max-width: 83.333333%;\r\n }\r\n .col-md-11 {\r\n flex: 0 0 91.666667%;\r\n max-width: 91.666667%;\r\n }\r\n .col-md-12 {\r\n flex: 0 0 100%;\r\n max-width: 100%;\r\n }\r\n .order-md-first {\r\n order: -1;\r\n }\r\n .order-md-last {\r\n order: 13;\r\n }\r\n .order-md-0 {\r\n order: 0;\r\n }\r\n .order-md-1 {\r\n order: 1;\r\n }\r\n .order-md-2 {\r\n order: 2;\r\n }\r\n .order-md-3 {\r\n order: 3;\r\n }\r\n .order-md-4 {\r\n order: 4;\r\n }\r\n .order-md-5 {\r\n order: 5;\r\n }\r\n .order-md-6 {\r\n order: 6;\r\n }\r\n .order-md-7 {\r\n order: 7;\r\n }\r\n .order-md-8 {\r\n order: 8;\r\n }\r\n .order-md-9 {\r\n order: 9;\r\n }\r\n .order-md-10 {\r\n order: 10;\r\n }\r\n .order-md-11 {\r\n order: 11;\r\n }\r\n .order-md-12 {\r\n order: 12;\r\n }\r\n .offset-md-0,\r\n .col-md-offset-0 {\r\n margin-left: 0;\r\n }\r\n .offset-md-1,\r\n .col-md-offset-1 {\r\n margin-left: 8.333333%;\r\n }\r\n .offset-md-2,\r\n .col-md-offset-2 {\r\n margin-left: 16.666667%;\r\n }\r\n .offset-md-3,\r\n .col-md-offset-3 {\r\n margin-left: 25%;\r\n }\r\n .offset-md-4,\r\n .col-md-offset-4 {\r\n margin-left: 33.333333%;\r\n }\r\n .offset-md-5,\r\n .col-md-offset-5 {\r\n margin-left: 41.666667%;\r\n }\r\n .offset-md-6,\r\n .col-md-offset-6 {\r\n margin-left: 50%;\r\n }\r\n .offset-md-7,\r\n .col-md-offset-7 {\r\n margin-left: 58.333333%;\r\n }\r\n .offset-md-8,\r\n .col-md-offset-8 {\r\n margin-left: 66.666667%;\r\n }\r\n .offset-md-9,\r\n .col-md-offset-9 {\r\n margin-left: 75%;\r\n }\r\n .offset-md-10,\r\n .col-md-offset-10 {\r\n margin-left: 83.333333%;\r\n }\r\n .offset-md-11,\r\n .col-md-offset-11 {\r\n margin-left: 91.666667%;\r\n }\r\n }\r\n\r\n @media (min-width: $screen-lg) {\r\n .col-lg {\r\n flex-basis: 0;\r\n flex-grow: 1;\r\n max-width: 100%;\r\n }\r\n .col-lg-auto {\r\n flex: 0 0 auto;\r\n width: auto;\r\n max-width: 100%;\r\n }\r\n .col-lg-1 {\r\n flex: 0 0 8.333333%;\r\n max-width: 8.333333%;\r\n }\r\n .col-lg-2 {\r\n flex: 0 0 16.666667%;\r\n max-width: 16.666667%;\r\n }\r\n .col-lg-3 {\r\n flex: 0 0 25%;\r\n max-width: 25%;\r\n }\r\n .col-lg-4 {\r\n flex: 0 0 33.333333%;\r\n max-width: 33.333333%;\r\n }\r\n .col-lg-5 {\r\n flex: 0 0 41.666667%;\r\n max-width: 41.666667%;\r\n }\r\n .col-lg-6 {\r\n flex: 0 0 50%;\r\n max-width: 50%;\r\n }\r\n .col-lg-7 {\r\n flex: 0 0 58.333333%;\r\n max-width: 58.333333%;\r\n }\r\n .col-lg-8 {\r\n flex: 0 0 66.666667%;\r\n max-width: 66.666667%;\r\n }\r\n .col-lg-9 {\r\n flex: 0 0 75%;\r\n max-width: 75%;\r\n }\r\n .col-lg-10 {\r\n flex: 0 0 83.333333%;\r\n max-width: 83.333333%;\r\n }\r\n .col-lg-11 {\r\n flex: 0 0 91.666667%;\r\n max-width: 91.666667%;\r\n }\r\n .col-lg-12 {\r\n flex: 0 0 100%;\r\n max-width: 100%;\r\n }\r\n .order-lg-first {\r\n order: -1;\r\n }\r\n .order-lg-last {\r\n order: 13;\r\n }\r\n .order-lg-0 {\r\n order: 0;\r\n }\r\n .order-lg-1 {\r\n order: 1;\r\n }\r\n .order-lg-2 {\r\n order: 2;\r\n }\r\n .order-lg-3 {\r\n order: 3;\r\n }\r\n .order-lg-4 {\r\n order: 4;\r\n }\r\n .order-lg-5 {\r\n order: 5;\r\n }\r\n .order-lg-6 {\r\n order: 6;\r\n }\r\n .order-lg-7 {\r\n order: 7;\r\n }\r\n .order-lg-8 {\r\n order: 8;\r\n }\r\n .order-lg-9 {\r\n order: 9;\r\n }\r\n .order-lg-10 {\r\n order: 10;\r\n }\r\n .order-lg-11 {\r\n order: 11;\r\n }\r\n .order-lg-12 {\r\n order: 12;\r\n }\r\n .offset-lg-0,\r\n .col-lg-offset-0 {\r\n margin-left: 0;\r\n }\r\n .offset-lg-1,\r\n .col-lg-offset-1 {\r\n margin-left: 8.333333%;\r\n }\r\n .offset-lg-2,\r\n .col-lg-offset-2 {\r\n margin-left: 16.666667%;\r\n }\r\n .offset-lg-3,\r\n .col-lg-offset-3 {\r\n margin-left: 25%;\r\n }\r\n .offset-lg-4,\r\n .col-lg-offset-4 {\r\n margin-left: 33.333333%;\r\n }\r\n .offset-lg-5,\r\n .col-lg-offset-5 {\r\n margin-left: 41.666667%;\r\n }\r\n .offset-lg-6,\r\n .col-lg-offset-6 {\r\n margin-left: 50%;\r\n }\r\n .offset-lg-7,\r\n .col-lg-offset-7 {\r\n margin-left: 58.333333%;\r\n }\r\n .offset-lg-8,\r\n .col-lg-offset-8 {\r\n margin-left: 66.666667%;\r\n }\r\n .offset-lg-9,\r\n .col-lg-offset-9 {\r\n margin-left: 75%;\r\n }\r\n .offset-lg-10,\r\n .col-lg-offset-10 {\r\n margin-left: 83.333333%;\r\n }\r\n .offset-lg-11,\r\n .col-lg-offset-11 {\r\n margin-left: 91.666667%;\r\n }\r\n }\r\n\r\n @media (min-width: $screen-xl) {\r\n .col-xl {\r\n flex-basis: 0;\r\n flex-grow: 1;\r\n max-width: 100%;\r\n }\r\n .col-xl-auto {\r\n flex: 0 0 auto;\r\n width: auto;\r\n max-width: 100%;\r\n }\r\n .col-xl-1 {\r\n flex: 0 0 8.333333%;\r\n max-width: 8.333333%;\r\n }\r\n .col-xl-2 {\r\n flex: 0 0 16.666667%;\r\n max-width: 16.666667%;\r\n }\r\n .col-xl-3 {\r\n flex: 0 0 25%;\r\n max-width: 25%;\r\n }\r\n .col-xl-4 {\r\n flex: 0 0 33.333333%;\r\n max-width: 33.333333%;\r\n }\r\n .col-xl-5 {\r\n flex: 0 0 41.666667%;\r\n max-width: 41.666667%;\r\n }\r\n .col-xl-6 {\r\n flex: 0 0 50%;\r\n max-width: 50%;\r\n }\r\n .col-xl-7 {\r\n flex: 0 0 58.333333%;\r\n max-width: 58.333333%;\r\n }\r\n .col-xl-8 {\r\n flex: 0 0 66.666667%;\r\n max-width: 66.666667%;\r\n }\r\n .col-xl-9 {\r\n flex: 0 0 75%;\r\n max-width: 75%;\r\n }\r\n .col-xl-10 {\r\n flex: 0 0 83.333333%;\r\n max-width: 83.333333%;\r\n }\r\n .col-xl-11 {\r\n flex: 0 0 91.666667%;\r\n max-width: 91.666667%;\r\n }\r\n .col-xl-12 {\r\n flex: 0 0 100%;\r\n max-width: 100%;\r\n }\r\n .order-xl-first {\r\n order: -1;\r\n }\r\n .order-xl-last {\r\n order: 13;\r\n }\r\n .order-xl-0 {\r\n order: 0;\r\n }\r\n .order-xl-1 {\r\n order: 1;\r\n }\r\n .order-xl-2 {\r\n order: 2;\r\n }\r\n .order-xl-3 {\r\n order: 3;\r\n }\r\n .order-xl-4 {\r\n order: 4;\r\n }\r\n .order-xl-5 {\r\n order: 5;\r\n }\r\n .order-xl-6 {\r\n order: 6;\r\n }\r\n .order-xl-7 {\r\n order: 7;\r\n }\r\n .order-xl-8 {\r\n order: 8;\r\n }\r\n .order-xl-9 {\r\n order: 9;\r\n }\r\n .order-xl-10 {\r\n order: 10;\r\n }\r\n .order-xl-11 {\r\n order: 11;\r\n }\r\n .order-xl-12 {\r\n order: 12;\r\n }\r\n .offset-xl-0,\r\n .col-xl-offset-0 {\r\n margin-left: 0;\r\n }\r\n .offset-xl-1,\r\n .col-xl-offset-1 {\r\n margin-left: 8.333333%;\r\n }\r\n .offset-xl-2,\r\n .col-xl-offset-2 {\r\n margin-left: 16.666667%;\r\n }\r\n .offset-xl-3,\r\n .col-xl-offset-3 {\r\n margin-left: 25%;\r\n }\r\n .offset-xl-4,\r\n .col-xl-offset-4 {\r\n margin-left: 33.333333%;\r\n }\r\n .offset-xl-5,\r\n .col-xl-offset-5 {\r\n margin-left: 41.666667%;\r\n }\r\n .offset-xl-6,\r\n .col-xl-offset-6 {\r\n margin-left: 50%;\r\n }\r\n .offset-xl-7,\r\n .col-xl-offset-7 {\r\n margin-left: 58.333333%;\r\n }\r\n .offset-xl-8,\r\n .col-xl-offset-8 {\r\n margin-left: 66.666667%;\r\n }\r\n .offset-xl-9,\r\n .col-xl-offset-9 {\r\n margin-left: 75%;\r\n }\r\n .offset-xl-10,\r\n .col-xl-offset-10 {\r\n margin-left: 83.333333%;\r\n }\r\n .offset-xl-11,\r\n .col-xl-offset-11 {\r\n margin-left: 91.666667%;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin pagination() {\r\n /* ==========================================================================\r\n Pagination\r\n\r\n Default Mendix pagination widget.\r\n ========================================================================== */\r\n\r\n .widget-pagination {\r\n overflow: unset;\r\n\r\n .pagination {\r\n overflow: unset;\r\n\r\n .btn {\r\n &:hover {\r\n color: $btn-default-color;\r\n background-color: $btn-default-bg-hover;\r\n }\r\n\r\n &:focus {\r\n outline: unset;\r\n outline-offset: unset;\r\n box-shadow: 0 0 0 0.3rem $color-primary-light;\r\n }\r\n }\r\n\r\n ul {\r\n margin-top: unset;\r\n margin-bottom: unset;\r\n\r\n li {\r\n display: inline-flex;\r\n align-items: center;\r\n width: unset;\r\n min-width: 24px;\r\n min-height: 24px;\r\n margin-right: 16px;\r\n padding: 4px 8px;\r\n transition: all 0.2s ease-in-out;\r\n color: $font-color-default;\r\n border-radius: $border-radius-default;\r\n\r\n &:last-child {\r\n margin-right: 0;\r\n }\r\n\r\n &:not(.break-view) {\r\n &:hover {\r\n color: $btn-default-color;\r\n background-color: $btn-default-bg-hover;\r\n }\r\n\r\n &:focus {\r\n outline: unset;\r\n outline-offset: unset;\r\n box-shadow: 0 0 0 0.3rem $color-primary-light;\r\n }\r\n\r\n &.active {\r\n color: $btn-primary-color;\r\n background-color: $btn-primary-bg;\r\n }\r\n\r\n &.active:hover {\r\n color: $btn-primary-color;\r\n background-color: $btn-primary-bg-hover;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin progress() {\r\n /* ==========================================================================\r\n Progress\r\n\r\n Default Mendix progress widget.\r\n ========================================================================== */\r\n\r\n .mx-progress {\r\n color: $font-color-default;\r\n background: $bg-color-secondary;\r\n\r\n .mx-progress-message {\r\n color: $font-color-default;\r\n }\r\n\r\n .mx-progress-indicator {\r\n position: relative;\r\n overflow: hidden;\r\n width: 100%;\r\n max-width: 100%;\r\n height: 2px;\r\n margin: auto;\r\n padding: 0;\r\n border-radius: 0;\r\n background: $gray-lighter;\r\n\r\n &:before,\r\n &:after {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n display: block;\r\n width: 50%;\r\n height: 2px;\r\n content: \"\";\r\n transform: translate3d(-100%, 0, 0);\r\n background: $brand-primary;\r\n }\r\n\r\n &::before {\r\n animation: loader 2s infinite;\r\n }\r\n\r\n &::after {\r\n animation: loader 2s -2s infinite;\r\n }\r\n }\r\n }\r\n\r\n @keyframes loader {\r\n 0% {\r\n transform: translate3d(-100%, 0, 0);\r\n }\r\n 100% {\r\n transform: translate3d(200%, 0, 0);\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin progress-bar() {\r\n /* ==========================================================================\r\n Progress bar\r\n\r\n Default Mendix progress bar widget.\r\n ========================================================================== */\r\n\r\n .progress {\r\n overflow: hidden;\r\n display: flex;\r\n flex-direction: row;\r\n }\r\n\r\n .progress-bar {\r\n align-self: flex-start;\r\n width: 0;\r\n height: 100%;\r\n transition: width 0.6s ease;\r\n text-align: center;\r\n color: #ffffff;\r\n border-radius: $border-radius-default;\r\n font-weight: $font-weight-semibold;\r\n }\r\n\r\n .progress-striped .progress-bar,\r\n .progress-bar-striped {\r\n background-image: linear-gradient(\r\n 45deg,\r\n rgba(255, 255, 255, 0.15) 25%,\r\n transparent 25%,\r\n transparent 50%,\r\n rgba(255, 255, 255, 0.15) 50%,\r\n rgba(255, 255, 255, 0.15) 75%,\r\n transparent 75%,\r\n transparent\r\n );\r\n background-size: 40px 40px;\r\n }\r\n\r\n .widget-progress-bar.active .progress-bar,\r\n .progress.active .progress-bar,\r\n .progress-bar.active {\r\n animation: progress-bar-stripes 2s linear infinite;\r\n }\r\n\r\n @keyframes progress-bar-stripes {\r\n from {\r\n background-position: 40px 0;\r\n }\r\n to {\r\n background-position: 0 0;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin progress-bar-helpers() {\r\n /* ==========================================================================\r\n Progress Bar\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n\r\n .widget-progress-bar {\r\n width: 100%;\r\n\r\n .progress {\r\n border-radius: $border-radius-default;\r\n background-color: $bg-color;\r\n }\r\n }\r\n\r\n .progress-bar-medium .progress,\r\n .progress-bar-medium .progress-bar {\r\n height: 16px;\r\n line-height: 16px;\r\n font-size: $font-size-small;\r\n }\r\n\r\n .progress-bar-small .progress,\r\n .progress-bar-small .progress-bar {\r\n height: 8px;\r\n line-height: 8px;\r\n font-size: 0px;\r\n }\r\n\r\n .progress-bar-small .progress-bar > * {\r\n // Specifically to hide custom labels.\r\n display: none;\r\n }\r\n\r\n .progress-bar-large .progress,\r\n .progress-bar-large .progress-bar {\r\n height: 24px;\r\n line-height: 24px;\r\n font-size: $font-size-default;\r\n }\r\n\r\n .widget-progress-bar-clickable:hover {\r\n cursor: pointer;\r\n }\r\n\r\n .widget-progress-bar.progress-bar-primary .progress-bar {\r\n background-color: $brand-primary;\r\n }\r\n\r\n .widget-progress-bar.progress-bar-success .progress-bar {\r\n background-color: $brand-success;\r\n }\r\n\r\n .widget-progress-bar.progress-bar-warning .progress-bar {\r\n background-color: $brand-warning;\r\n }\r\n\r\n .widget-progress-bar.progress-bar-danger .progress-bar {\r\n background-color: $brand-danger;\r\n }\r\n\r\n .widget-progress-bar-alert.widget-progress-bar-text-contrast .progress-bar {\r\n color: $color-danger-darker;\r\n }\r\n\r\n .widget-progress-bar-text-contrast .progress-bar {\r\n color: $font-color-default;\r\n }\r\n\r\n .widget-progress-bar-negative {\r\n float: right;\r\n display: block;\r\n }\r\n\r\n .widget-progress-bar > .alert {\r\n margin-top: 24px;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin progress-circle() {\r\n /* ==========================================================================\r\n Progress Circle\r\n\r\n Default Mendix progress circle widget.\r\n ========================================================================== */\r\n\r\n .widget-progress-circle {\r\n display: inline-block;\r\n }\r\n\r\n .widget-progress-circle-trail-path {\r\n stroke: $bg-color;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin progress-circle-helpers() {\r\n /* ==========================================================================\r\n Progress Circle\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n\r\n //== Progress circle and label colors\r\n .widget-progress-circle-primary {\r\n .widget-progress-circle-path {\r\n stroke: $brand-primary;\r\n }\r\n\r\n .progressbar-text {\r\n color: $brand-primary !important;\r\n }\r\n }\r\n\r\n .widget-progress-circle-success {\r\n .widget-progress-circle-path {\r\n stroke: $brand-success;\r\n }\r\n\r\n .progressbar-text {\r\n color: $brand-success !important;\r\n }\r\n }\r\n\r\n .widget-progress-circle-warning {\r\n .widget-progress-circle-path {\r\n stroke: $brand-warning;\r\n }\r\n\r\n .progressbar-text {\r\n color: $brand-warning !important;\r\n }\r\n }\r\n\r\n .widget-progress-circle-danger {\r\n .widget-progress-circle-path {\r\n stroke: $brand-danger;\r\n }\r\n\r\n .progressbar-text {\r\n color: $brand-danger !important;\r\n }\r\n }\r\n\r\n //== Sizes\r\n .widget-progress-circle-thickness-medium {\r\n .widget-progress-circle-trail-path,\r\n .widget-progress-circle-path {\r\n stroke-width: 8px;\r\n }\r\n }\r\n\r\n .widget-progress-circle-thickness-small {\r\n .widget-progress-circle-trail-path,\r\n .widget-progress-circle-path {\r\n stroke-width: 4px;\r\n }\r\n }\r\n\r\n .widget-progress-circle-thickness-large {\r\n .widget-progress-circle-trail-path,\r\n .widget-progress-circle-path {\r\n stroke-width: 16px;\r\n }\r\n }\r\n\r\n //== Progress label container\r\n .progress-circle-label-container {\r\n position: relative;\r\n margin: 0;\r\n\r\n .progressbar-text {\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n padding: 0px;\r\n margin: 0px;\r\n transform: translate(-50%, -50%);\r\n // Original default from the `progressbar.js` library\r\n color: rgb(85, 85, 85);\r\n }\r\n }\r\n\r\n .widget-progress-circle-clickable {\r\n cursor: pointer;\r\n }\r\n\r\n @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {\r\n .widget-progress-circle > div {\r\n height: 0;\r\n padding: 0;\r\n width: 100%;\r\n padding-bottom: 100%;\r\n\r\n & > svg {\r\n top: 0;\r\n left: 0;\r\n height: 100%;\r\n position: absolute;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin rating() {\r\n /* ==========================================================================\r\n Rating\r\n\r\n Default Mendix rating widget.\r\n ========================================================================== */\r\n\r\n .widget-star-rating-empty {\r\n color: #cccccc;\r\n }\r\n\r\n .widget-star-rating-full-widget {\r\n color: #ffa611;\r\n }\r\n\r\n .widget-star-rating-full-default {\r\n color: #ced0d3;\r\n }\r\n\r\n .widget-star-rating-font-medium {\r\n font-size: 30px;\r\n }\r\n\r\n .widget-rating {\r\n .rating-icon {\r\n font-size: 24px;\r\n }\r\n\r\n .rating-icon-empty {\r\n color: #ccc;\r\n }\r\n\r\n .rating-icon-full {\r\n color: #ffa611;\r\n }\r\n\r\n .rating-item {\r\n &:focus:not(:focus-visible) {\r\n .rating-image,\r\n .rating-icon {\r\n outline: none;\r\n }\r\n }\r\n\r\n &:focus-visible {\r\n .rating-image,\r\n .rating-icon {\r\n outline: 1px solid $brand-primary;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin rating-helpers() {\r\n /* ==========================================================================\r\n Rating\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n\r\n .widget-star-rating-full-primary {\r\n color: $brand-primary;\r\n }\r\n\r\n .widget-star-rating-full-success {\r\n color: $brand-success;\r\n }\r\n\r\n .widget-star-rating-full-info {\r\n color: $brand-info;\r\n }\r\n\r\n .widget-star-rating-full-warning {\r\n color: $brand-warning;\r\n }\r\n\r\n .widget-star-rating-full-danger {\r\n color: $brand-danger;\r\n }\r\n\r\n .widget-star-rating-full-inverse {\r\n color: $brand-inverse;\r\n }\r\n\r\n .widget-rating {\r\n &.widget-rating-small {\r\n .rating-icon {\r\n font-size: 16px;\r\n }\r\n .rating-image {\r\n height: 16px;\r\n }\r\n }\r\n &.widget-rating-large {\r\n .rating-icon {\r\n font-size: 32px;\r\n }\r\n .rating-image {\r\n height: 32px;\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n@import \"../helpers/slider-color-variant\";\r\n\r\n@mixin range-slider() {\r\n /* ==========================================================================\r\n Range slider\r\n\r\n Default Mendix range slider widget.\r\n ========================================================================== */\r\n\r\n .widget-range-slider {\r\n margin-bottom: 16px;\r\n padding: 5px 10px;\r\n\r\n .rc-slider-handle {\r\n border-color: $brand-default;\r\n }\r\n\r\n .rc-slider.rc-slider-with-marks {\r\n padding-bottom: 25px;\r\n }\r\n\r\n @include slider-color-variant($brand-primary);\r\n }\r\n}\r\n","@mixin slider-color-variant($color) {\r\n .rc-slider:not(.rc-slider-disabled) {\r\n .rc-slider-track {\r\n background-color: $color;\r\n }\r\n\r\n .rc-slider-handle:focus {\r\n border-color: $color;\r\n box-shadow: 0 0 0 5px lighten($color, 25%);\r\n outline: none;\r\n }\r\n\r\n .rc-slider-handle-click-focused:focus {\r\n border-color: lighten($color, 25%);\r\n box-shadow: unset;\r\n }\r\n\r\n .rc-slider-dot-active,\r\n .rc-slider-handle:hover {\r\n border-color: $color;\r\n }\r\n\r\n .rc-slider-handle:active {\r\n border-color: $color;\r\n box-shadow: 0 0 5px $color;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@import \"slider-color-variant\";\r\n\r\n@mixin range-slider-helpers() {\r\n /* ==========================================================================\r\n Range Slider\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n\r\n .widget-range-slider-primary {\r\n @include slider-color-variant($brand-primary);\r\n }\r\n\r\n .widget-range-slider-success {\r\n @include slider-color-variant($brand-success);\r\n }\r\n\r\n .widget-range-slider-warning {\r\n @include slider-color-variant($brand-warning);\r\n }\r\n\r\n .widget-range-slider-danger {\r\n @include slider-color-variant($brand-danger);\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@import \"../helpers/slider-color-variant\";\r\n\r\n@mixin slider() {\r\n /* ==========================================================================\r\n Slider\r\n\r\n Default Mendix slider widget.\r\n ========================================================================== */\r\n\r\n .widget-slider {\r\n margin-bottom: 16px;\r\n padding: 5px 10px;\r\n\r\n .rc-slider-handle {\r\n border-color: $brand-default;\r\n }\r\n\r\n .rc-slider.rc-slider-with-marks {\r\n padding-bottom: 25px;\r\n }\r\n\r\n @include slider-color-variant($brand-primary);\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n@import \"slider-color-variant\";\r\n\r\n@mixin slider-helpers() {\r\n /* ==========================================================================\r\n Slider\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n\r\n .widget-slider-primary {\r\n @include slider-color-variant($brand-primary);\r\n }\r\n\r\n .widget-slider-success {\r\n @include slider-color-variant($brand-success);\r\n }\r\n\r\n .widget-slider-warning {\r\n @include slider-color-variant($brand-warning);\r\n }\r\n\r\n .widget-slider-danger {\r\n @include slider-color-variant($brand-danger);\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin timeline() {\r\n /* ==========================================================================\r\n Timeline\r\n\r\n Widget styles\r\n ========================================================================== */\r\n\r\n //Timeline grouping\r\n .widget-timeline-date-header {\r\n display: flex;\r\n justify-content: center;\r\n width: $timeline-grouping-size;\r\n overflow-wrap: break-word;\r\n padding: $spacing-small;\r\n border: 1px solid $timeline-grouping-border-color;\r\n border-radius: $timeline-grouping-border-radius;\r\n }\r\n\r\n //Timeline entries\r\n .widget-timeline-events-wrapper {\r\n display: flex;\r\n flex: 1;\r\n margin-left: $timeline-grouping-size/2;\r\n padding: $spacing-large 0 0 0;\r\n border-left: 1px solid $timeline-border-color;\r\n\r\n ul {\r\n flex: 1;\r\n padding: 0;\r\n list-style: none;\r\n margin-bottom: 0;\r\n }\r\n }\r\n\r\n //Timeline entry\r\n .widget-timeline-event {\r\n flex: 1;\r\n position: relative;\r\n margin-left: -1px;\r\n padding: 0 $spacing-large $spacing-large $spacing-large;\r\n margin-bottom: $spacing-medium;\r\n\r\n &.clickable {\r\n cursor: pointer;\r\n transition: background 0.8s;\r\n\r\n &:hover {\r\n .widget-timeline-title {\r\n }\r\n }\r\n }\r\n }\r\n\r\n //Timeline entry content wrapper\r\n .widget-timeline-icon-wrapper {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n transform: translateX(-50%);\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: $timeline-icon-size;\r\n }\r\n\r\n img {\r\n max-width: 100%;\r\n max-height: 100%;\r\n }\r\n }\r\n\r\n .widget-timeline-content-wrapper {\r\n display: flex;\r\n\r\n .widget-timeline-date-time-wrapper {\r\n order: 2;\r\n margin-right: 0;\r\n }\r\n\r\n .widget-timeline-info-wrapper {\r\n flex: 1;\r\n order: 1;\r\n margin-right: $spacing-medium;\r\n }\r\n }\r\n\r\n .timeline-with-image .widget-timeline-content-wrapper {\r\n display: flex;\r\n\r\n .widget-timeline-date-time-wrapper {\r\n order: 1;\r\n margin-right: $spacing-medium;\r\n }\r\n\r\n .widget-timeline-info-wrapper {\r\n flex: 1;\r\n order: 2;\r\n }\r\n }\r\n\r\n //Timeline entry components\r\n .widget-timeline-icon-circle {\r\n width: $timeline-icon-size;\r\n height: $timeline-icon-size;\r\n border-radius: 50%;\r\n background-color: $timeline-icon-color;\r\n }\r\n\r\n .widget-timeline-title {\r\n @extend h5;\r\n }\r\n\r\n .widget-timeline-description {\r\n }\r\n\r\n .widget-timeline-no-divider {\r\n }\r\n\r\n .widget-eventTime {\r\n @extend h5;\r\n color: $timeline-event-time-color;\r\n }\r\n\r\n .timeline-entry-image {\r\n display: flex;\r\n justify-content: center;\r\n align-content: center;\r\n border-radius: $border-radius-default;\r\n height: $timeline-image-size;\r\n width: $timeline-image-size;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin tooltip() {\r\n /* ==========================================================================\r\n Tooltip\r\n\r\n Widget styles\r\n ========================================================================== */\r\n\r\n // Tooltip inline\r\n .widget-tooltip-inline {\r\n display: inline-block;\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin helper-classes() {\r\n /* ==========================================================================\r\n Helper\r\n\r\n Default Mendix helpers\r\n ========================================================================== */\r\n $important-helpers-value: if($important-helpers, \" !important\", \"\");\r\n\r\n // Display properties\r\n .d-none {\r\n display: none #{$important-helpers-value};\r\n }\r\n\r\n .d-flex {\r\n display: flex #{$important-helpers-value};\r\n }\r\n\r\n .d-inline-flex {\r\n display: inline-flex #{$important-helpers-value};\r\n }\r\n\r\n .d-inline {\r\n display: inline #{$important-helpers-value};\r\n }\r\n\r\n .d-inline-block {\r\n display: inline-block #{$important-helpers-value};\r\n }\r\n\r\n .show,\r\n .d-block {\r\n display: block #{$important-helpers-value};\r\n }\r\n\r\n .table,\r\n .d-table {\r\n display: table #{$important-helpers-value};\r\n }\r\n\r\n .table-row,\r\n .d-table-row {\r\n display: table-row #{$important-helpers-value};\r\n }\r\n\r\n .table-cell,\r\n .d-table-cell {\r\n display: table-cell #{$important-helpers-value};\r\n }\r\n\r\n .hide,\r\n .hidden {\r\n display: none #{$important-helpers-value};\r\n visibility: hidden #{$important-helpers-value};\r\n }\r\n\r\n .invisible {\r\n visibility: hidden #{$important-helpers-value};\r\n }\r\n\r\n .display-ie8-only:not([attr*=\"\"]) {\r\n display: none #{$important-helpers-value};\r\n padding: 0 #{$important-helpers-value};\r\n }\r\n\r\n .list-nostyle {\r\n ul {\r\n margin: 0 #{$important-helpers-value};\r\n padding: 0 #{$important-helpers-value};\r\n\r\n li {\r\n list-style-type: none #{$important-helpers-value};\r\n }\r\n }\r\n }\r\n\r\n .nowrap,\r\n .nowrap * {\r\n overflow: hidden #{$important-helpers-value};\r\n // Star for inside an element, IE8 span > a\r\n white-space: nowrap #{$important-helpers-value};\r\n text-overflow: ellipsis #{$important-helpers-value};\r\n }\r\n\r\n // Render DIV as Table Cells\r\n .table {\r\n display: table #{$important-helpers-value};\r\n }\r\n\r\n .table-row {\r\n display: table-row #{$important-helpers-value};\r\n }\r\n\r\n .table-cell {\r\n display: table-cell #{$important-helpers-value};\r\n }\r\n\r\n // Quick floats\r\n .pull-left {\r\n float: left #{$important-helpers-value};\r\n }\r\n\r\n .pull-right {\r\n float: right #{$important-helpers-value};\r\n }\r\n\r\n // Align options\r\n .align-top {\r\n vertical-align: top #{$important-helpers-value};\r\n }\r\n\r\n .align-middle {\r\n vertical-align: middle #{$important-helpers-value};\r\n }\r\n\r\n .align-bottom {\r\n vertical-align: bottom #{$important-helpers-value};\r\n }\r\n\r\n // Flex alignments\r\n .row-left {\r\n display: flex #{$important-helpers-value};\r\n align-items: center #{$important-helpers-value};\r\n flex-flow: row #{$important-helpers-value};\r\n justify-content: flex-start #{$important-helpers-value};\r\n }\r\n\r\n .row-center {\r\n display: flex #{$important-helpers-value};\r\n align-items: center #{$important-helpers-value};\r\n flex-flow: row #{$important-helpers-value};\r\n justify-content: center #{$important-helpers-value};\r\n }\r\n\r\n .row-right {\r\n display: flex #{$important-helpers-value};\r\n align-items: center #{$important-helpers-value};\r\n flex-flow: row #{$important-helpers-value};\r\n justify-content: flex-end #{$important-helpers-value};\r\n }\r\n\r\n .col-left {\r\n display: flex #{$important-helpers-value};\r\n align-items: flex-start #{$important-helpers-value};\r\n flex-direction: column #{$important-helpers-value};\r\n justify-content: center #{$important-helpers-value};\r\n }\r\n\r\n .col-center {\r\n display: flex #{$important-helpers-value};\r\n align-items: center #{$important-helpers-value};\r\n flex-direction: column #{$important-helpers-value};\r\n justify-content: center #{$important-helpers-value};\r\n }\r\n\r\n .col-right {\r\n display: flex #{$important-helpers-value};\r\n align-items: flex-end #{$important-helpers-value};\r\n flex-direction: column #{$important-helpers-value};\r\n justify-content: center #{$important-helpers-value};\r\n }\r\n\r\n .shadow-small {\r\n box-shadow: $shadow-small $shadow-color;\r\n margin-bottom: 5px;\r\n border-width: 1px #{$important-helpers-value};\r\n border-style: solid;\r\n border-color: $shadow-color-border;\r\n }\r\n .shadow-medium {\r\n box-shadow: $shadow-medium $shadow-color;\r\n margin-bottom: 15px;\r\n border-width: 1px #{$important-helpers-value};\r\n border-style: solid;\r\n border-color: $shadow-color-border;\r\n }\r\n\r\n .shadow-large {\r\n box-shadow: $shadow-large $shadow-color;\r\n margin-bottom: 25px;\r\n border-width: 1px #{$important-helpers-value};\r\n border-style: solid;\r\n border-color: $shadow-color-border;\r\n }\r\n\r\n // Media\r\n @media (max-width: $screen-sm-max) {\r\n .hide-phone {\r\n display: none #{$important-helpers-value};\r\n }\r\n }\r\n\r\n @media (min-width: $screen-md) and (max-width: $screen-md-max) {\r\n .hide-tablet {\r\n display: none #{$important-helpers-value};\r\n }\r\n }\r\n\r\n @media (min-width: $screen-lg) {\r\n .hide-desktop {\r\n display: none #{$important-helpers-value};\r\n }\r\n }\r\n\r\n @media (max-width: $screen-xs-max) {\r\n .hide-xs,\r\n .hidden-xs,\r\n .d-xs-none {\r\n display: none #{$important-helpers-value};\r\n }\r\n .d-xs-flex {\r\n display: flex #{$important-helpers-value};\r\n }\r\n .d-xs-inline-flex {\r\n display: inline-flex #{$important-helpers-value};\r\n }\r\n .d-xs-inline {\r\n display: inline #{$important-helpers-value};\r\n }\r\n .d-xs-inline-block {\r\n display: inline-block #{$important-helpers-value};\r\n }\r\n .d-xs-block {\r\n display: block #{$important-helpers-value};\r\n }\r\n .d-xs-table {\r\n display: table #{$important-helpers-value};\r\n }\r\n .d-xs-table-row {\r\n display: table-row #{$important-helpers-value};\r\n }\r\n .d-xs-table-cell {\r\n display: table-cell #{$important-helpers-value};\r\n }\r\n }\r\n\r\n @media (min-width: $screen-sm) and (max-width: $screen-sm-max) {\r\n .hide-sm,\r\n .hidden-sm,\r\n .d-sm-none {\r\n display: none #{$important-helpers-value};\r\n }\r\n .d-sm-flex {\r\n display: flex #{$important-helpers-value};\r\n }\r\n .d-sm-inline-flex {\r\n display: inline-flex #{$important-helpers-value};\r\n }\r\n .d-sm-inline {\r\n display: inline #{$important-helpers-value};\r\n }\r\n .d-sm-inline-block {\r\n display: inline-block #{$important-helpers-value};\r\n }\r\n .d-sm-block {\r\n display: block #{$important-helpers-value};\r\n }\r\n .d-sm-table {\r\n display: table #{$important-helpers-value};\r\n }\r\n .d-sm-table-row {\r\n display: table-row #{$important-helpers-value};\r\n }\r\n .d-sm-table-cell {\r\n display: table-cell #{$important-helpers-value};\r\n }\r\n }\r\n\r\n @media (min-width: $screen-md) and (max-width: $screen-md-max) {\r\n .hide-md,\r\n .hidden-md,\r\n .d-md-none {\r\n display: none #{$important-helpers-value};\r\n }\r\n .d-md-flex {\r\n display: flex #{$important-helpers-value};\r\n }\r\n .d-md-inline-flex {\r\n display: inline-flex #{$important-helpers-value};\r\n }\r\n .d-md-inline {\r\n display: inline #{$important-helpers-value};\r\n }\r\n .d-md-inline-block {\r\n display: inline-block #{$important-helpers-value};\r\n }\r\n .d-md-block {\r\n display: block #{$important-helpers-value};\r\n }\r\n .d-md-table {\r\n display: table #{$important-helpers-value};\r\n }\r\n .d-md-table-row {\r\n display: table-row #{$important-helpers-value};\r\n }\r\n .d-md-table-cell {\r\n display: table-cell #{$important-helpers-value};\r\n }\r\n }\r\n\r\n @media (min-width: $screen-lg) and (max-width: $screen-xl) {\r\n .hide-lg,\r\n .hidden-lg,\r\n .d-lg-none {\r\n display: none #{$important-helpers-value};\r\n }\r\n .d-lg-flex {\r\n display: flex #{$important-helpers-value};\r\n }\r\n .d-lg-inline-flex {\r\n display: inline-flex #{$important-helpers-value};\r\n }\r\n .d-lg-inline {\r\n display: inline #{$important-helpers-value};\r\n }\r\n .d-lg-inline-block {\r\n display: inline-block #{$important-helpers-value};\r\n }\r\n .d-lg-block {\r\n display: block #{$important-helpers-value};\r\n }\r\n .d-lg-table {\r\n display: table #{$important-helpers-value};\r\n }\r\n .d-lg-table-row {\r\n display: table-row #{$important-helpers-value};\r\n }\r\n .d-lg-table-cell {\r\n display: table-cell #{$important-helpers-value};\r\n }\r\n }\r\n\r\n @media (min-width: $screen-xl) {\r\n .hide-xl,\r\n .hidden-xl,\r\n .d-xl-none {\r\n display: none #{$important-helpers-value};\r\n }\r\n .d-xl-flex {\r\n display: flex #{$important-helpers-value};\r\n }\r\n .d-xl-inline-flex {\r\n display: inline-flex #{$important-helpers-value};\r\n }\r\n .d-xl-inline {\r\n display: inline #{$important-helpers-value};\r\n }\r\n .d-xl-inline-block {\r\n display: inline-block #{$important-helpers-value};\r\n }\r\n .d-xl-block {\r\n display: block #{$important-helpers-value};\r\n }\r\n .d-xl-table {\r\n display: table #{$important-helpers-value};\r\n }\r\n .d-xl-table-row {\r\n display: table-row #{$important-helpers-value};\r\n }\r\n .d-xl-table-cell {\r\n display: table-cell #{$important-helpers-value};\r\n }\r\n }\r\n\r\n //Box-shadow\r\n\r\n .shadow {\r\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05) #{$important-helpers-value};\r\n }\r\n\r\n //Height helpers\r\n\r\n .h-25 {\r\n height: 25% #{$important-helpers-value};\r\n }\r\n\r\n .h-50 {\r\n height: 50% #{$important-helpers-value};\r\n }\r\n\r\n .h-75 {\r\n height: 75% #{$important-helpers-value};\r\n }\r\n\r\n .h-100 {\r\n height: 100% #{$important-helpers-value};\r\n }\r\n\r\n //Width helpers\r\n\r\n .w-25 {\r\n width: 25% #{$important-helpers-value};\r\n }\r\n\r\n .w-50 {\r\n width: 50% #{$important-helpers-value};\r\n }\r\n\r\n .w-75 {\r\n width: 75% #{$important-helpers-value};\r\n }\r\n\r\n .w-100 {\r\n width: 100% #{$important-helpers-value};\r\n }\r\n\r\n //Border helpers\r\n .border {\r\n border: 1px solid $border-color-default #{$important-helpers-value};\r\n }\r\n\r\n .border-top {\r\n border-top: 1px solid $border-color-default #{$important-helpers-value};\r\n }\r\n\r\n .border-bottom {\r\n border-bottom: 1px solid $border-color-default #{$important-helpers-value};\r\n }\r\n\r\n .border-left {\r\n border-left: 1px solid $border-color-default #{$important-helpers-value};\r\n }\r\n\r\n .border-right {\r\n border-right: 1px solid $border-color-default #{$important-helpers-value};\r\n }\r\n\r\n .border-rounded {\r\n border-radius: $border-radius-default #{$important-helpers-value};\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin barcode-scanner() {\r\n /* ==========================================================================\r\n Barcode-scanner\r\n\r\n Override of default Bootstrap barcode-scanner style\r\n ========================================================================== */\r\n\r\n .mx-barcode-scanner {\r\n background: #000000;\r\n z-index: 110;\r\n\r\n .close-button {\r\n color: white;\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n font-size: 16px;\r\n }\r\n }\r\n\r\n .video-canvas {\r\n .canvas-background {\r\n background-color: rgba(0, 0, 0, 0.7);\r\n }\r\n\r\n .canvas-middle {\r\n .canvas-middle-middle {\r\n $corner-offset: 13px;\r\n .corner {\r\n $corner-border: 5px solid #ffffff;\r\n border-left: $corner-border;\r\n border-top: $corner-border;\r\n\r\n &.corner-top-left {\r\n top: -$corner-offset;\r\n left: -$corner-offset;\r\n }\r\n &.corner-top-right {\r\n top: -$corner-offset;\r\n right: -$corner-offset;\r\n transform: rotate(90deg);\r\n }\r\n &.corner-bottom-right {\r\n bottom: -$corner-offset;\r\n right: -$corner-offset;\r\n transform: rotate(180deg);\r\n }\r\n &.corner-bottom-left {\r\n bottom: -$corner-offset;\r\n left: -$corner-offset;\r\n transform: rotate(270deg);\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin accordion() {\r\n /* ==========================================================================\r\n Accordion\r\n\r\n Default Mendix accordion widget styles.\r\n ========================================================================== */\r\n\r\n .widget-accordion {\r\n .widget-accordion-group {\r\n @include get-accordion-group-styles(\r\n $accordion-header-default-bg,\r\n $accordion-header-default-bg-hover,\r\n $accordion-header-default-color,\r\n $brand-primary,\r\n $accordion-default-border-color\r\n );\r\n }\r\n\r\n &.widget-accordion-preview {\r\n .widget-accordion-group {\r\n @include get-accordion-preview-group-styles($accordion-header-default-color);\r\n }\r\n }\r\n }\r\n}\r\n\r\n@mixin get-accordion-group-styles($background-color, $background-color-hover, $color, $color-hover, $border-color) {\r\n border-color: $border-color;\r\n background-color: $bg-color-secondary;\r\n\r\n &:first-child {\r\n border-top-left-radius: $border-radius-default;\r\n border-top-right-radius: $border-radius-default;\r\n\r\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\r\n border-top-left-radius: calc(#{$border-radius-default} - 1px);\r\n border-top-right-radius: calc(#{$border-radius-default} - 1px);\r\n }\r\n }\r\n\r\n &:last-child {\r\n border-bottom-left-radius: $border-radius-default;\r\n border-bottom-right-radius: $border-radius-default;\r\n }\r\n\r\n &.widget-accordion-group-collapsed:last-child,\r\n &.widget-accordion-group-collapsing:last-child {\r\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\r\n border-bottom-left-radius: calc(#{$border-radius-default} - 1px);\r\n border-bottom-right-radius: calc(#{$border-radius-default} - 1px);\r\n }\r\n }\r\n\r\n &.widget-accordion-group-collapsing:last-child {\r\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\r\n transition: border-radius 5ms ease 200ms;\r\n }\r\n }\r\n\r\n &.widget-accordion-group-expanding:last-child {\r\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\r\n transition: border-radius 5ms ease 80ms;\r\n }\r\n }\r\n\r\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\r\n cursor: auto;\r\n background-color: $background-color;\r\n padding: $spacing-medium;\r\n\r\n > :is(h1, h2, h3, h4, h5, h6) {\r\n font-size: $font-size-h5;\r\n font-weight: $font-weight-header;\r\n }\r\n\r\n > :is(h1, h2, h3, h4, h5, h6, p, span) {\r\n color: $color;\r\n }\r\n\r\n .widget-accordion-group-header-button-icon {\r\n fill: $color;\r\n }\r\n\r\n &.widget-accordion-group-header-button-clickable {\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n background-color: $background-color-hover;\r\n\r\n > :is(h1, h2, h3, h4, h5, h6, p, span) {\r\n color: $color-hover;\r\n }\r\n\r\n .widget-accordion-group-header-button-icon {\r\n fill: $color-hover;\r\n }\r\n }\r\n }\r\n }\r\n\r\n > .widget-accordion-group-content-wrapper > .widget-accordion-group-content {\r\n border-color: $border-color;\r\n padding: $spacing-small $spacing-medium $spacing-large $spacing-medium;\r\n }\r\n}\r\n\r\n@mixin get-accordion-preview-group-styles($color) {\r\n .widget-accordion-group-header-button {\r\n > div > :is(h1, h2, h3, h4, h5, h6) {\r\n font-size: $font-size-h5;\r\n font-weight: $font-weight-header;\r\n }\r\n\r\n > div > :is(h1, h2, h3, h4, h5, h6, p, span) {\r\n color: $color;\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin accordion-helpers() {\r\n /* ==========================================================================\r\n Accordion\r\n\r\n //== Design Properties\r\n //## Helper classes to change the look and feel of the component\r\n ========================================================================== */\r\n\r\n .widget-accordion {\r\n .widget-accordion-group {\r\n &.widget-accordion-brand-primary {\r\n @include get-accordion-group-styles(\r\n $accordion-header-primary-bg,\r\n $accordion-header-primary-bg-hover,\r\n $accordion-header-primary-color,\r\n $accordion-header-primary-color,\r\n $accordion-primary-border-color\r\n );\r\n }\r\n\r\n &.widget-accordion-brand-secondary {\r\n @include get-accordion-group-styles(\r\n $accordion-header-secondary-bg,\r\n $accordion-header-secondary-bg-hover,\r\n $accordion-header-secondary-color,\r\n $accordion-header-secondary-color,\r\n $accordion-secondary-border-color\r\n );\r\n }\r\n\r\n &.widget-accordion-brand-success {\r\n @include get-accordion-group-styles(\r\n $accordion-header-success-bg,\r\n $accordion-header-success-bg-hover,\r\n $accordion-header-success-color,\r\n $accordion-header-success-color,\r\n $accordion-success-border-color\r\n );\r\n }\r\n\r\n &.widget-accordion-brand-warning {\r\n @include get-accordion-group-styles(\r\n $accordion-header-warning-bg,\r\n $accordion-header-warning-bg-hover,\r\n $accordion-header-warning-color,\r\n $accordion-header-warning-color,\r\n $accordion-warning-border-color\r\n );\r\n }\r\n\r\n &.widget-accordion-brand-danger {\r\n @include get-accordion-group-styles(\r\n $accordion-header-danger-bg,\r\n $accordion-header-danger-bg-hover,\r\n $accordion-header-danger-color,\r\n $accordion-header-danger-color,\r\n $accordion-danger-border-color\r\n );\r\n }\r\n }\r\n\r\n &.widget-accordion-preview {\r\n .widget-accordion-group {\r\n &.widget-accordion-brand-primary {\r\n @include get-accordion-preview-group-styles($accordion-header-primary-color);\r\n }\r\n\r\n &.widget-accordion-brand-secondary {\r\n @include get-accordion-preview-group-styles($accordion-header-secondary-color);\r\n }\r\n\r\n &.widget-accordion-brand-success {\r\n @include get-accordion-preview-group-styles($accordion-header-success-color);\r\n }\r\n\r\n &.widget-accordion-brand-warning {\r\n @include get-accordion-preview-group-styles($accordion-header-warning-color);\r\n }\r\n\r\n &.widget-accordion-brand-danger {\r\n @include get-accordion-preview-group-styles($accordion-header-danger-color);\r\n }\r\n }\r\n }\r\n\r\n &.widget-accordion-bordered-all {\r\n > .widget-accordion-group {\r\n &:first-child {\r\n border-top-style: solid;\r\n }\r\n\r\n border-right-style: solid;\r\n border-left-style: solid;\r\n }\r\n }\r\n\r\n &.widget-accordion-bordered-horizontal {\r\n > .widget-accordion-group {\r\n &:first-child {\r\n border-top-style: solid;\r\n }\r\n }\r\n }\r\n\r\n &.widget-accordion-bordered-none {\r\n > .widget-accordion-group {\r\n border-bottom: none;\r\n }\r\n }\r\n\r\n &.widget-accordion-striped {\r\n > .widget-accordion-group:not(:is(.widget-accordion-brand-primary, .widget-accordion-brand-secondary, .widget-accordion-brand-success, .widget-accordion-brand-warning, .widget-accordion-brand-danger)):nth-child(2n\r\n + 1) {\r\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\r\n background-color: $accordion-bg-striped;\r\n\r\n &.widget-accordion-group-header-button-clickable {\r\n &:hover,\r\n &:focus,\r\n &:active {\r\n background-color: $accordion-bg-striped-hover;\r\n }\r\n }\r\n }\r\n\r\n > .widget-accordion-group-content {\r\n background-color: $accordion-bg-striped;\r\n }\r\n }\r\n }\r\n\r\n &.widget-accordion-compact {\r\n > .widget-accordion-group {\r\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\r\n padding: $spacing-smaller $spacing-small;\r\n }\r\n\r\n > .widget-accordion-group-content {\r\n padding: $spacing-smaller $spacing-small $spacing-medium $spacing-small;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n@mixin dijit-widget() {\r\n /*\r\n * Mendix Documentation\r\n * Special styles for presenting components\r\n */\r\n\r\n /*\r\n * Dijit Widgets\r\n *\r\n * Default Dojo Dijit Widgets\r\n */\r\n\r\n /*\r\n * Dijit Tooltip Widget\r\n *\r\n * Default tooltip used for Mendix widgets\r\n */\r\n\r\n .mx-tooltip {\r\n .dijitTooltipContainer {\r\n border-width: 1px;\r\n border-color: $gray-light;\r\n border-radius: 4px;\r\n background: #ffffff;\r\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\r\n\r\n .mx-tooltip-content {\r\n padding: 12px;\r\n }\r\n\r\n .form-group {\r\n margin-bottom: 4px;\r\n }\r\n }\r\n\r\n .dijitTooltipConnector {\r\n width: 0;\r\n height: 0;\r\n margin-left: -8px;\r\n border-width: 10px 10px 10px 0;\r\n border-style: solid;\r\n border-color: transparent;\r\n border-right-color: $gray-light;\r\n }\r\n }\r\n\r\n /*\r\n * Dijit Border Container\r\n *\r\n * Used in Mendix as split pane containers\r\n */\r\n\r\n .dijitBorderContainer {\r\n padding: 8px;\r\n background-color: #fcfcfc;\r\n\r\n .dijitSplitterV,\r\n .dijitGutterV {\r\n width: 5px;\r\n border: 0;\r\n background: #fcfcfc;\r\n }\r\n\r\n .dijitSplitterH,\r\n .dijitGutterH {\r\n height: 5px;\r\n border: 0;\r\n background: #fcfcfc;\r\n }\r\n\r\n .dijitSplitterH {\r\n .dijitSplitterThumb {\r\n top: 2px;\r\n width: 19px;\r\n height: 1px;\r\n background: #b0b0b0;\r\n }\r\n }\r\n\r\n .dijitSplitterV {\r\n .dijitSplitterThumb {\r\n left: 2px;\r\n width: 1px;\r\n height: 19px;\r\n background: #b0b0b0;\r\n }\r\n }\r\n\r\n .dijitSplitContainer-child,\r\n .dijitBorderContainer-child {\r\n border: 1px solid #cccccc;\r\n }\r\n\r\n .dijitBorderContainer-dijitTabContainerTop,\r\n .dijitBorderContainer-dijitTabContainerBottom,\r\n .dijitBorderContainer-dijitTabContainerLeft,\r\n .dijitBorderContainer-dijitTabContainerRight {\r\n border: none;\r\n }\r\n\r\n .dijitBorderContainer-dijitBorderContainer {\r\n padding: 0;\r\n border: none;\r\n }\r\n\r\n .dijitSplitterActive {\r\n /* For IE8 and earlier */\r\n margin: 0;\r\n opacity: 0.6;\r\n background-color: #aaaaaa;\r\n background-image: none;\r\n font-size: 1px;\r\n }\r\n\r\n .dijitSplitContainer-dijitContentPane,\r\n .dijitBorderContainer-dijitContentPane {\r\n padding: 8px;\r\n background-color: #ffffff;\r\n }\r\n }\r\n\r\n /*\r\n * Dijit Menu Popup\r\n *\r\n * Used in datepickers and calendar widgets\r\n */\r\n\r\n .dijitMenuPopup {\r\n margin-top: 8px;\r\n\r\n .dijitMenu {\r\n display: block;\r\n width: 200px !important;\r\n margin-top: 0; // No top margin because there is no parent with margin bottom\r\n padding: 12px 8px;\r\n border-radius: 3px;\r\n background: $brand-inverse;\r\n\r\n &:after {\r\n position: absolute;\r\n bottom: 100%;\r\n left: 20px;\r\n width: 0;\r\n height: 0;\r\n margin-left: -8px;\r\n content: \" \";\r\n pointer-events: none;\r\n border: medium solid transparent;\r\n border-width: 8px;\r\n border-bottom-color: $brand-inverse;\r\n }\r\n\r\n // Menu item\r\n .dijitMenuItem {\r\n background: transparent;\r\n\r\n .dijitMenuItemLabel {\r\n display: block;\r\n overflow: hidden;\r\n width: 180px !important;\r\n padding: 8px;\r\n text-overflow: ellipsis;\r\n color: #ffffff;\r\n border-radius: 3px;\r\n }\r\n\r\n // Hover\r\n &.dijitMenuItemHover {\r\n background: none;\r\n\r\n .dijitMenuItemLabel {\r\n background: $brand-primary;\r\n }\r\n }\r\n }\r\n\r\n // New label\r\n .tg_newlabelmenuitem {\r\n .dijitMenuItemLabel {\r\n font-weight: $font-weight-bold;\r\n }\r\n }\r\n\r\n // Seperator\r\n .dijitMenuSeparator {\r\n td {\r\n padding: 0;\r\n border-bottom-width: 3px;\r\n }\r\n\r\n .dijitMenuSeparatorIconCell {\r\n > div {\r\n margin: 0; //override dijit styling\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n$default-android-color: #6fbeb5;\r\n$default-ios-color: rgb(100, 189, 99);\r\n\r\n@mixin bootstrap-style-ios($brand-style) {\r\n border-color: $brand-style;\r\n background-color: $brand-style;\r\n box-shadow: $brand-style 0 0 0 16px inset;\r\n}\r\n\r\n@mixin bootstrap-style-android($brand-style) {\r\n background-color: lighten($brand-style, 10%);\r\n}\r\n\r\n@mixin style($brand-key, $brand-variable) {\r\n div.widget-switch-brand-#{$brand-key} {\r\n .widget-switch {\r\n .widget-switch-btn-wrapper {\r\n &.checked {\r\n @include bootstrap-style-ios($brand-variable);\r\n }\r\n }\r\n }\r\n &.android {\r\n .widget-switch {\r\n .widget-switch-btn-wrapper {\r\n &.checked {\r\n @include bootstrap-style-android($brand-variable);\r\n\r\n .widget-switch-btn {\r\n background: $brand-variable;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n// maintained for backwards compatibility prior to Switch 3.0.0.\r\n@mixin ios {\r\n .widget-switch-btn-wrapper {\r\n &.checked {\r\n &.widget-switch-btn-wrapper-default {\r\n @include bootstrap-style-ios($default-ios-color);\r\n }\r\n\r\n &.widget-switch-btn-wrapper-success {\r\n @include bootstrap-style-ios($brand-success);\r\n }\r\n\r\n &.widget-switch-btn-wrapper-info {\r\n @include bootstrap-style-ios($brand-info);\r\n }\r\n\r\n &.widget-switch-btn-wrapper-primary {\r\n @include bootstrap-style-ios($brand-primary);\r\n }\r\n\r\n &.widget-switch-btn-wrapper-warning {\r\n @include bootstrap-style-ios($brand-warning);\r\n }\r\n\r\n &.widget-switch-btn-wrapper-danger {\r\n @include bootstrap-style-ios($brand-danger);\r\n }\r\n\r\n &.widget-switch-btn-wrapper-inverse {\r\n @include bootstrap-style-ios($brand-inverse);\r\n }\r\n }\r\n }\r\n}\r\n\r\n// maintained for backwards compatibility prior to Switch 3.0.0.\r\n@mixin android {\r\n .widget-switch-btn-wrapper {\r\n &.checked {\r\n &.widget-switch-btn-wrapper-default {\r\n @include bootstrap-style-android($default-android-color);\r\n\r\n .widget-switch-btn {\r\n background: $default-android-color;\r\n }\r\n }\r\n\r\n &.widget-switch-btn-wrapper-success {\r\n @include bootstrap-style-android($brand-success);\r\n\r\n .widget-switch-btn {\r\n background: $brand-success;\r\n }\r\n }\r\n\r\n &.widget-switch-btn-wrapper-info {\r\n @include bootstrap-style-android($brand-info);\r\n\r\n .widget-switch-btn {\r\n background: $brand-info;\r\n }\r\n }\r\n\r\n &.widget-switch-btn-wrapper-primary {\r\n @include bootstrap-style-android($brand-primary);\r\n\r\n .widget-switch-btn {\r\n background: $brand-primary;\r\n }\r\n }\r\n\r\n &.widget-switch-btn-wrapper-warning {\r\n @include bootstrap-style-android($brand-warning);\r\n\r\n .widget-switch-btn {\r\n background: $brand-warning;\r\n }\r\n }\r\n\r\n &.widget-switch-btn-wrapper-danger {\r\n @include bootstrap-style-android($brand-danger);\r\n\r\n .widget-switch-btn {\r\n background: $brand-danger;\r\n }\r\n }\r\n\r\n &.widget-switch-btn-wrapper-inverse {\r\n @include bootstrap-style-android($brand-inverse);\r\n\r\n .widget-switch-btn {\r\n background: $brand-inverse;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n@mixin switch() {\r\n .widget-switch-btn-wrapper {\r\n &:focus {\r\n outline: 1px solid $brand-primary;\r\n }\r\n }\r\n\r\n @include style(\"primary\", $brand-primary);\r\n @include style(\"secondary\", $brand-default);\r\n @include style(\"success\", $brand-success);\r\n @include style(\"warning\", $brand-warning);\r\n @include style(\"danger\", $brand-danger);\r\n\r\n // below is maintained for backwards compatibility prior to Switch 3.0.0.\r\n div {\r\n &.widget-switch {\r\n &.iOS {\r\n @include ios;\r\n }\r\n\r\n &.android {\r\n @include android;\r\n }\r\n\r\n &.auto {\r\n @include ios;\r\n }\r\n }\r\n }\r\n\r\n html {\r\n div {\r\n &.dj_android {\r\n .widget-switch {\r\n &.auto {\r\n @include android;\r\n }\r\n }\r\n }\r\n\r\n &.dj_ios {\r\n .widget-switch {\r\n &.auto {\r\n @include ios;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Atlas layout\r\n\r\n The core stucture of all atlas layouts\r\n========================================================================== */\r\n@mixin layout-atlas() {\r\n .layout-atlas {\r\n // Toggle button\r\n .toggle-btn {\r\n & > img,\r\n & > .glyphicon,\r\n & > .mx-icon-lined,\r\n & > .mx-icon-filled {\r\n margin: 0;\r\n }\r\n }\r\n .toggle-btn > .mx-icon-lined {\r\n font-family: \"Atlas_Core$Atlas\";\r\n }\r\n\r\n .toggle-btn > .mx-icon-filled {\r\n font-family: \"Atlas_Core$Atlas_Filled\";\r\n }\r\n\r\n .mx-scrollcontainer-open {\r\n .expand-btn > img {\r\n transform: rotate(180deg);\r\n }\r\n }\r\n\r\n // Sidebar\r\n .region-sidebar {\r\n background-color: $navsidebar-bg;\r\n @if not $use-modern-client {\r\n z-index: 101;\r\n }\r\n box-shadow: 0 0 4px rgb(0 0 0 / 14%), 2px 4px 8px rgb(0 0 0 / 28%);\r\n\r\n .mx-scrollcontainer-wrapper {\r\n display: flex;\r\n flex-direction: column;\r\n padding: $spacing-small 0;\r\n }\r\n\r\n .mx-navigationtree .navbar-inner > ul > li > a {\r\n padding: $spacing-medium;\r\n\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n margin-right: $spacing-small;\r\n }\r\n }\r\n\r\n .sidebar-heading {\r\n background: $navsidebar-sub-bg;\r\n }\r\n\r\n .toggle-btn {\r\n margin-right: $spacing-small;\r\n border-color: transparent;\r\n border-radius: 0;\r\n background: transparent;\r\n padding: $spacing-medium;\r\n }\r\n }\r\n\r\n // Topbar\r\n .region-topbar {\r\n position: relative;\r\n z-index: 60; // Show dropshadow\r\n min-height: $topbar-minimalheight;\r\n background-color: $navtopbar-bg;\r\n\r\n // Topbar Content\r\n .topbar-content {\r\n display: flex;\r\n align-items: center;\r\n min-height: $topbar-minimalheight;\r\n }\r\n\r\n // Toggle btn\r\n .toggle-btn {\r\n padding: 0;\r\n margin-right: $spacing-medium;\r\n border-color: transparent;\r\n border-radius: 0;\r\n background: transparent;\r\n }\r\n\r\n // For your company, product, or project name\r\n .navbar-brand {\r\n display: inline-block;\r\n float: none; // reset bootstrap\r\n height: auto;\r\n padding: 0;\r\n line-height: inherit;\r\n font-size: 16px;\r\n margin-right: $spacing-small;\r\n\r\n img {\r\n display: inline-block;\r\n margin-right: $spacing-small;\r\n @if $brand-logo !=false {\r\n width: 0;\r\n height: 0;\r\n padding: ($brand-logo-height / 2) ($brand-logo-width / 2);\r\n background-image: url($brand-logo);\r\n background-repeat: no-repeat;\r\n background-position: left center;\r\n background-size: $brand-logo-width;\r\n } @else {\r\n width: auto;\r\n height: $brand-logo-height;\r\n }\r\n }\r\n\r\n a {\r\n margin-left: $spacing-small;\r\n color: $navbar-brand-name;\r\n font-size: 20px;\r\n\r\n &:hover,\r\n &:focus {\r\n text-decoration: none;\r\n }\r\n }\r\n }\r\n\r\n .mx-navbar {\r\n display: inline-flex;\r\n vertical-align: middle;\r\n background: transparent;\r\n justify-content: center;\r\n align-items: center;\r\n\r\n & > .mx-navbar-item {\r\n & > a {\r\n margin-top: 5px;\r\n padding: 0 20px;\r\n }\r\n }\r\n }\r\n }\r\n\r\n @if (not $use-modern-client) {\r\n .mx-scrollcontainer-slide {\r\n &:not(.mx-scrollcontainer-open) > .region-sidebar {\r\n overflow: hidden;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Atlas layout\r\n\r\n Extra styling for phone layouts\r\n========================================================================== */\r\n@mixin layout-atlas-phone() {\r\n .layout-atlas-phone {\r\n .region-topbar {\r\n min-height: $m-header-height;\r\n border-style: none;\r\n background-color: $m-header-bg;\r\n\r\n &::before {\r\n display: none;\r\n }\r\n }\r\n\r\n .region-sidebar {\r\n .mx-navigationtree .navbar-inner > ul > li > a {\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n margin-right: $spacing-medium;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Atlas layout\r\n\r\n Extra styling for responsive layouts\r\n========================================================================== */\r\n@mixin layout-atlas-responsive() {\r\n $sidebar-icon-height: 52px;\r\n $sidebar-icon-width: 52px;\r\n\r\n .layout-atlas-responsive,\r\n .layout-atlas-responsive-default {\r\n @media (min-width: $screen-md) {\r\n --closed-sidebar-width: #{$navsidebar-width-closed};\r\n .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar,\r\n .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar,\r\n .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar {\r\n @if (not $use-modern-client) {\r\n width: $navsidebar-width-closed !important;\r\n }\r\n\r\n .mx-scrollcontainer-wrapper .mx-navigationtree ul li {\r\n &.mx-navigationtree-has-items a {\r\n white-space: nowrap;\r\n }\r\n\r\n &.mx-navigationtree-has-items:hover > ul {\r\n position: absolute;\r\n z-index: 100;\r\n top: 0;\r\n bottom: 0;\r\n left: $sidebar-icon-width;\r\n display: block;\r\n min-width: auto;\r\n padding: $spacing-small 0;\r\n\r\n & > li.mx-navigationtree-has-items:hover > ul {\r\n left: 100%;\r\n }\r\n }\r\n\r\n &.mx-navigationtree-collapsed,\r\n &.mx-navigationtree-has-items {\r\n ul {\r\n display: none;\r\n }\r\n }\r\n }\r\n }\r\n\r\n .widget-sidebar:not(.widget-sidebar-expanded) {\r\n .mx-navigationtree ul li {\r\n &.mx-navigationtree-has-items:hover {\r\n ul {\r\n position: absolute;\r\n z-index: 100;\r\n top: 0;\r\n bottom: 0;\r\n left: $sidebar-icon-width;\r\n display: block;\r\n overflow-y: auto;\r\n min-width: auto;\r\n padding: $spacing-small 0;\r\n }\r\n }\r\n\r\n &.mx-navigationtree-collapsed,\r\n &.mx-navigationtree-has-items {\r\n ul {\r\n display: none;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n @if (not $use-modern-client) {\r\n .mx-scrollcontainer-slide {\r\n &:not(.mx-scrollcontainer-open) > .region-sidebar {\r\n overflow: hidden;\r\n }\r\n\r\n &.mx-scrollcontainer-open > .region-sidebar {\r\n width: $navsidebar-width-closed !important;\r\n\r\n & > .mx-scrollcontainer-wrapper {\r\n position: relative;\r\n }\r\n }\r\n\r\n .region-sidebar > .mx-scrollcontainer-wrapper {\r\n z-index: 2;\r\n left: -$navsidebar-width-closed;\r\n background-color: inherit;\r\n }\r\n }\r\n\r\n // Push aside for mobile\r\n @media (max-width: $screen-sm-max) {\r\n .mx-scrollcontainer-open:not(.mx-scrollcontainer-slide) {\r\n width: 1100px;\r\n }\r\n\r\n .mx-scrollcontainer-slide .toggle-btn {\r\n display: inline-block !important;\r\n }\r\n }\r\n }\r\n\r\n // Sidebar\r\n .region-sidebar {\r\n .toggle-btn {\r\n width: $sidebar-icon-width;\r\n border-color: transparent;\r\n border-radius: 0;\r\n background: transparent;\r\n }\r\n\r\n .mx-scrollcontainer-wrapper {\r\n .toggle-btn-wrapper {\r\n display: flex;\r\n padding: $spacing-small;\r\n align-items: center;\r\n min-height: calc(#{$topbar-minimalheight} + 4px);\r\n background: $navsidebar-sub-bg;\r\n }\r\n\r\n .toggle-btn {\r\n padding: $spacing-medium;\r\n\r\n img {\r\n width: 24px;\r\n height: 24px;\r\n }\r\n }\r\n\r\n .toggle-text {\r\n color: #fff;\r\n font-weight: bold;\r\n }\r\n\r\n .mx-navigationtree .navbar-inner > ul > li {\r\n & > a {\r\n height: $sidebar-icon-height;\r\n padding: $spacing-small 0;\r\n white-space: nowrap;\r\n overflow: hidden;\r\n // Glyph icon\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n width: $sidebar-icon-width;\r\n height: $sidebar-icon-height;\r\n padding: $spacing-small $spacing-medium;\r\n border-radius: $border-radius-default;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Topbar\r\n .region-topbar {\r\n padding: 0 $spacing-small;\r\n\r\n .toggle-btn {\r\n padding: 0;\r\n border-color: transparent;\r\n border-radius: 0;\r\n background: transparent;\r\n display: flex;\r\n }\r\n\r\n .mx-icon-filled,\r\n .mx-icon-lined {\r\n font-size: 20px;\r\n }\r\n }\r\n }\r\n\r\n // Topbar variant\r\n .layout-atlas-responsive-topbar {\r\n .region-topbar {\r\n padding: 0 $spacing-medium;\r\n @media (max-width: $screen-sm-max) {\r\n padding: 0 $spacing-small;\r\n }\r\n }\r\n }\r\n\r\n // Fix Safari issue of sidebar disappearing\r\n .profile-tablet {\r\n .mx-scrollcontainer:not(.mx-scrollcontainer-open) > .region-sidebar {\r\n overflow-y: hidden;\r\n\r\n .mx-scrollcontainer-wrapper {\r\n overflow: visible;\r\n }\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Atlas layout\r\n\r\n Extra styling for tablet layouts\r\n========================================================================== */\r\n@mixin layout-atlas-tablet() {\r\n .layout-atlas-tablet {\r\n .region-topbar {\r\n min-height: $m-header-height;\r\n border-style: none;\r\n background-color: $m-header-bg;\r\n\r\n &::before {\r\n display: none;\r\n }\r\n }\r\n\r\n .region-sidebar {\r\n .mx-navigationtree .navbar-inner > ul > li > a {\r\n .glyphicon,\r\n .mx-icon-lined,\r\n .mx-icon-filled {\r\n margin-right: $spacing-medium;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n","//\r\n// DISCLAIMER:\r\n// Do not change this file because it is core styling.\r\n// Customizing core files will make updating Atlas much more difficult in the future.\r\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\r\n//\r\n\r\n/* ==========================================================================\r\n Alerts\r\n\r\n Default Bootstrap Alert boxes. Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages\r\n========================================================================== */\r\n\r\n.alert {\r\n margin-top: 0;\r\n padding: $spacing-medium;\r\n border: 1px solid;\r\n border-radius: $border-radius-default;\r\n padding: $spacing-medium;\r\n}\r\n\r\n.alert-icon {\r\n font-size: $font-size-h3;\r\n}\r\n\r\n.alert-title {\r\n color: inherit;\r\n}\r\n\r\n.alert-description {\r\n color: inherit;\r\n}\r\n\r\n//Variations\r\n\r\n.alert-primary,\r\n.alert {\r\n color: $alert-primary-color;\r\n border-color: $alert-primary-border-color;\r\n background-color: $alert-primary-bg;\r\n}\r\n\r\n.alert-secondary {\r\n color: $alert-secondary-color;\r\n border-color: $alert-secondary-border-color;\r\n background-color: $alert-secondary-bg;\r\n}\r\n\r\n// Semantic variations\r\n.alert-success {\r\n color: $alert-success-color;\r\n border-color: $alert-success-border-color;\r\n background-color: $alert-success-bg;\r\n}\r\n\r\n.alert-warning {\r\n color: $alert-warning-color;\r\n border-color: $alert-warning-border-color;\r\n background-color: $alert-warning-bg;\r\n}\r\n\r\n.alert-danger {\r\n color: $alert-danger-color;\r\n border-color: $alert-danger-border-color;\r\n background-color: $alert-danger-bg;\r\n}\r\n\r\n//== State\r\n//## Styling when component is in certain state\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.has-error .alert {\r\n margin-top: $spacing-small;\r\n margin-bottom: 0;\r\n}\r\n","/* ==========================================================================\r\n Breadcrumbs\r\n\r\n========================================================================== */\r\n.breadcrumb {\r\n //reset\r\n margin: 0;\r\n padding: 0;\r\n border-radius: 0;\r\n background-color: transparent;\r\n font-size: $font-size-default;\r\n margin-bottom: $spacing-large;\r\n}\r\n\r\n//== Elements\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.breadcrumb-item {\r\n display: inline-block;\r\n margin: 0;\r\n &:last-child {\r\n color: $font-color-default;\r\n a {\r\n text-decoration: none;\r\n }\r\n }\r\n}\r\n.breadcrumb-item + .breadcrumb-item {\r\n &::before {\r\n display: inline-block;\r\n padding-right: $spacing-small;\r\n padding-left: $spacing-small;\r\n content: \"/\";\r\n color: $gray-light;\r\n }\r\n}\r\n\r\n//== Variations\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.breadcrumb-large {\r\n font-size: $font-size-h3;\r\n}\r\n.breadcrumb-underline {\r\n padding-bottom: $spacing-medium;\r\n border-bottom: 1px solid $border-color-default;\r\n}\r\n","/* ==========================================================================\r\n Cards\r\n\r\n========================================================================== */\r\n.card {\r\n border: 0;\r\n border-radius: $border-radius-default;\r\n background-color: #ffffff;\r\n overflow: hidden;\r\n position: relative;\r\n padding: $spacing-large;\r\n margin-bottom: $spacing-large;\r\n}\r\n\r\n//== Card components\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.card-body {\r\n padding: $spacing-large;\r\n}\r\n\r\n.card-overlay {\r\n position: absolute;\r\n bottom: 0;\r\n left: 0;\r\n width: 100%;\r\n background: rgba(0, 0, 0, 0.6);\r\n background: linear-gradient(\r\n to bottom,\r\n rgba(255, 255, 255, 0) 0%,\r\n rgba(250, 250, 250, 0) 8%,\r\n rgba(0, 0, 0, 0.99) 121%,\r\n #000 100%\r\n );\r\n padding: $spacing-large;\r\n}\r\n\r\n.card-title {\r\n}\r\n\r\n.card-image {\r\n width: 100%;\r\n height: auto;\r\n}\r\n\r\n.card-supportingtext {\r\n}\r\n\r\n.card-action {\r\n}\r\n\r\n.card-icon {\r\n font-size: $font-size-h1;\r\n}\r\n\r\n//== Variations\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.card-with-image {\r\n overflow: hidden;\r\n}\r\n\r\n.card-with-background {\r\n position: relative;\r\n}\r\n","/* ==========================================================================\r\n Chats\r\n\r\n========================================================================== */\r\n.chat {\r\n display: flex;\r\n flex-direction: column;\r\n height: 100%;\r\n background-color: $bg-color-secondary;\r\n}\r\n\r\n//== Elements\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.chat-content {\r\n display: flex;\r\n overflow: auto;\r\n flex: 1;\r\n flex-direction: column;\r\n justify-content: flex-end;\r\n\r\n .chat-list {\r\n position: relative;\r\n overflow: auto;\r\n\r\n ul {\r\n display: flex;\r\n flex-direction: column-reverse;\r\n margin-bottom: $m-spacing-large;\r\n }\r\n\r\n li {\r\n padding: 15px 30px;\r\n animation: fadeIn 0.2s;\r\n background-color: transparent;\r\n animation-fill-mode: both;\r\n\r\n &,\r\n &:last-child {\r\n border: 0;\r\n }\r\n }\r\n\r\n .mx-listview-loadMore {\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n left: 0;\r\n display: block;\r\n width: 50%;\r\n margin: 15px auto;\r\n color: #ffffff;\r\n background-color: $brand-primary;\r\n box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);\r\n }\r\n }\r\n}\r\n\r\n.chat-message {\r\n display: flex;\r\n}\r\n\r\n.chat-avatar {\r\n margin: 0 20px 0 0;\r\n border-radius: 50%;\r\n}\r\n\r\n.chat-message-content {\r\n display: inline-flex;\r\n flex-direction: column;\r\n}\r\n\r\n.chat-message-balloon {\r\n position: relative;\r\n display: flex;\r\n flex-direction: column;\r\n padding: 10px 15px;\r\n border-radius: 5px;\r\n background-color: $bg-color;\r\n\r\n &::after {\r\n position: absolute;\r\n top: 10px;\r\n right: 100%;\r\n width: 0;\r\n height: 0;\r\n content: \"\";\r\n border: 10px solid transparent;\r\n border-top: 0;\r\n border-right-color: $bg-color;\r\n border-left: 0;\r\n }\r\n}\r\n\r\n.chat-message-time {\r\n padding-top: 2px;\r\n\r\n .form-control-static {\r\n border: 0;\r\n }\r\n}\r\n\r\n.chat-footer {\r\n z-index: 1;\r\n padding: $m-spacing-large;\r\n background-color: $bg-color;\r\n box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);\r\n}\r\n\r\n.chat-input {\r\n display: flex;\r\n\r\n .chat-textbox {\r\n flex: 1;\r\n margin-right: $spacing-large;\r\n margin-bottom: 0;\r\n\r\n .form-control {\r\n border: 0;\r\n }\r\n }\r\n}\r\n\r\n//== Variations\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.chat-message-self {\r\n justify-content: flex-end;\r\n\r\n .chat-avatar {\r\n margin: 0 0 0 20px;\r\n }\r\n\r\n .chat-message-balloon {\r\n background-color: $color-primary-lighter;\r\n\r\n &::after {\r\n left: 100%;\r\n border: 10px solid transparent;\r\n border-top: 0;\r\n border-right: 0;\r\n border-left-color: $color-primary-lighter;\r\n }\r\n }\r\n\r\n .chat-message-time {\r\n text-align: right;\r\n }\r\n}\r\n","/* ==========================================================================\r\n Control Group\r\n \r\n A group of buttons next to eachother\r\n========================================================================== */\r\n.controlgroup {\r\n .btn,\r\n .btn-group {\r\n margin-right: $spacing-small;\r\n margin-bottom: $spacing-small;\r\n\r\n &:last-child {\r\n margin-right: 0;\r\n }\r\n .btn {\r\n margin-right: 0;\r\n margin-bottom: 0;\r\n }\r\n }\r\n .btn-group {\r\n .btn + .btn {\r\n margin-left: -1px;\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Full page blocks\r\n\r\n Blocks that take up the full width and height\r\n========================================================================== */\r\n\r\n.fullpageblock {\r\n position: relative;\r\n height: 100%;\r\n min-height: 100%;\r\n\r\n // Helper to make it fullheight\r\n .fullheight {\r\n height: 100% !important;\r\n\r\n & > .mx-dataview-content {\r\n height: inherit !important;\r\n }\r\n }\r\n\r\n .fullpage-overlay {\r\n position: absolute;\r\n z-index: 10;\r\n bottom: 0;\r\n left: 0;\r\n width: 100%;\r\n }\r\n}\r\n","/* ==========================================================================\r\n Pageheader\r\n========================================================================== */\r\n\r\n//== Default\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.pageheader {\r\n width: 100%;\r\n margin-bottom: $spacing-large;\r\n}\r\n\r\n//== Elements\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.pageheader-title {\r\n}\r\n\r\n.pageheader-subtitle {\r\n}\r\n\r\n.pageheader-image {\r\n}\r\n","/* ==========================================================================\r\n Hero header\r\n\r\n========================================================================== */\r\n\r\n.headerhero {\r\n width: 100%;\r\n min-height: $header-min-height;\r\n background-color: $header-bg-color;\r\n position: relative;\r\n overflow: hidden;\r\n padding: $spacing-large;\r\n margin-bottom: $spacing-large;\r\n}\r\n\r\n//== Elements\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.headerhero-title {\r\n color: $header-text-color;\r\n}\r\n\r\n.headerhero-subtitle {\r\n color: $header-text-color;\r\n}\r\n\r\n.headerhero-backgroundimage {\r\n position: absolute;\r\n z-index: 0;\r\n top: 0;\r\n height: 100%;\r\n width: 100%;\r\n filter: $header-bgimage-filter;\r\n}\r\n\r\n.btn.headerhero-action {\r\n color: $header-text-color;\r\n}\r\n\r\n.heroheader-overlay {\r\n z-index: 1;\r\n}\r\n","/* ==========================================================================\r\n Form Block\r\n\r\n Used in default forms\r\n========================================================================== */\r\n.formblock {\r\n width: 100%;\r\n margin-bottom: $spacing-large;\r\n}\r\n\r\n//== Elements\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.form-title {\r\n}\r\n","/* ==========================================================================\r\n Master Detail\r\n\r\n A list with a listening dataview\r\n========================================================================== */\r\n.masterdetail {\r\n background: #fff;\r\n .masterdetail-master {\r\n border-right: 1px solid $border-color-default;\r\n }\r\n .masterdetail-detail {\r\n padding: $spacing-large;\r\n }\r\n}\r\n\r\n//== Variations\r\n//-------------------------------------------------------------------------------------------------------------------//\r\n.masterdetail-vertical {\r\n background: #fff;\r\n .masterdetail-master {\r\n border-bottom: 1px solid $border-color-default;\r\n }\r\n .masterdetail-detail {\r\n padding: $spacing-large;\r\n }\r\n}\r\n","/* ==========================================================================\r\n User profile blocks\r\n -\r\n========================================================================== */\r\n.userprofile {\r\n .userprofile-img {\r\n }\r\n .userprofile-title {\r\n }\r\n .userprofile-subtitle {\r\n }\r\n}\r\n","//Wizard\r\n.wizard {\r\n display: flex;\r\n justify-content: space-between;\r\n width: 100%;\r\n margin-bottom: $spacing-large;\r\n}\r\n\r\n//Wizard step\r\n.wizard-step {\r\n position: relative;\r\n width: 100%;\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n//Wizard step number\r\n.wizard-step-number {\r\n position: relative;\r\n z-index: 1;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n width: $wizard-step-number-size;\r\n height: $wizard-step-number-size;\r\n color: $wizard-default-step-color;\r\n font-size: $wizard-step-number-font-size;\r\n border-radius: 50%;\r\n background-color: $wizard-default-bg;\r\n border-color: $wizard-default-border-color;\r\n}\r\n\r\n//Wizard step text\r\n.wizard-step-text {\r\n overflow: hidden;\r\n white-space: nowrap;\r\n text-decoration: none;\r\n text-overflow: ellipsis;\r\n color: $wizard-default-step-color;\r\n}\r\n\r\n//Wizard circle\r\n.wizard-circle .wizard-step {\r\n flex-direction: column;\r\n &::before {\r\n position: absolute;\r\n z-index: 0;\r\n top: $wizard-step-number-size / 2;\r\n display: block;\r\n width: 100%;\r\n height: 2px;\r\n content: \"\";\r\n background-color: $wizard-default-border-color;\r\n }\r\n}\r\n\r\n//Wizard arrow\r\n.wizard-arrow .wizard-step {\r\n height: $wizard-step-height;\r\n margin-left: calc(0px - (#{$wizard-step-height} / 2));\r\n padding-left: ($wizard-step-height / 2);\r\n background-color: $wizard-default-bg;\r\n justify-content: flex-start;\r\n border: 1px solid $wizard-default-border-color;\r\n &::before,\r\n &::after {\r\n position: absolute;\r\n z-index: 1;\r\n left: 100%;\r\n margin-left: calc(0px - ((#{$wizard-step-height} / 2) - 1px));\r\n content: \" \";\r\n border-style: solid;\r\n border-color: transparent;\r\n }\r\n &::after {\r\n top: 0;\r\n border-width: calc((#{$wizard-step-height} / 2) - 1px);\r\n border-left-color: $wizard-default-bg;\r\n }\r\n &::before {\r\n top: -1px;\r\n border-width: $wizard-step-height / 2;\r\n border-left-color: $wizard-default-border-color;\r\n }\r\n\r\n &:first-child {\r\n margin-left: 0;\r\n padding-left: 0;\r\n border-top-left-radius: $border-radius-default;\r\n border-bottom-left-radius: $border-radius-default;\r\n }\r\n\r\n &:last-child {\r\n border-top-right-radius: $border-radius-default;\r\n border-bottom-right-radius: $border-radius-default;\r\n &::before,\r\n &::after {\r\n display: none;\r\n }\r\n }\r\n}\r\n\r\n//Wizard states\r\n.wizard-circle .wizard-step-active {\r\n .wizard-step-number {\r\n color: $wizard-active-color;\r\n border-color: $wizard-active-border-color;\r\n background-color: $wizard-active-bg;\r\n }\r\n .wizard-step-text {\r\n color: $wizard-active-step-color;\r\n }\r\n}\r\n.wizard-circle .wizard-step-visited {\r\n .wizard-step-number {\r\n color: $wizard-visited-color;\r\n border-color: $wizard-visited-border-color;\r\n background-color: $wizard-visited-bg;\r\n }\r\n .wizard-step-text {\r\n color: $wizard-visited-step-color;\r\n }\r\n}\r\n\r\n.wizard-arrow .wizard-step-active {\r\n background-color: $wizard-active-bg;\r\n .wizard-step-text {\r\n color: $wizard-active-color;\r\n }\r\n &::after {\r\n border-left-color: $wizard-active-bg;\r\n }\r\n}\r\n\r\n.wizard-arrow .wizard-step-visited {\r\n .wizard-step-text {\r\n color: $link-color;\r\n }\r\n}\r\n",".login-formblock {\r\n display: flex;\r\n flex-direction: column;\r\n}\r\n\r\n.login-form {\r\n flex: 1;\r\n display: flex;\r\n flex-direction: column;\r\n}\r\n",".listtab-tabs.mx-tabcontainer {\r\n background: $bg-color-secondary;\r\n .mx-tabcontainer-tabs {\r\n background: $brand-primary;\r\n margin-bottom: 0;\r\n li {\r\n > a {\r\n color: #fff;\r\n opacity: 0.6;\r\n &:hover,\r\n &:focus {\r\n color: #fff;\r\n }\r\n }\r\n &.active {\r\n > a {\r\n opacity: 1;\r\n color: #fff;\r\n border-color: #fff;\r\n &:hover,\r\n &:focus {\r\n color: #fff;\r\n border-color: #fff;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",".springboard-grid {\r\n display: flex;\r\n flex-direction: column;\r\n .row {\r\n flex: 1;\r\n .col {\r\n display: flex;\r\n }\r\n }\r\n}\r\n\r\n.springboard-header {\r\n flex: 1;\r\n display: flex;\r\n flex-direction: column;\r\n}\r\n\r\n.springboard-card {\r\n flex: 1;\r\n display: flex;\r\n flex-direction: column;\r\n}\r\n",".statuspage-section {\r\n display: flex;\r\n flex-direction: column;\r\n}\r\n\r\n.statuspage-content {\r\n flex: 1;\r\n}\r\n\r\n.statuspage-icon {\r\n color: #fff;\r\n}\r\n\r\n.statuspage-subtitle {\r\n opacity: 0.6;\r\n}\r\n\r\n.statuspage-buttons {\r\n}\r\n","$background-color: #fff !default;\r\n$icon-color: #606671 !default;\r\n$icon-size: 14px !default;\r\n$pagination-button-color: #3b4251 !default;\r\n$pagination-caption-color: #0a1325 !default;\r\n$dragging-color-effect: rgba(10, 19, 37, 0.8) !default;\r\n$dragging-effect-size: 4px;\r\n\r\n$grid-bg-striped: #fafafb !default;\r\n$grid-bg-hover: #f5f6f6 !default;\r\n$spacing-small: 8px !default;\r\n$spacing-medium: 16px !default;\r\n$spacing-large: 24px !default;\r\n$grid-border-color: #ced0d3 !default;\r\n\r\n$brand-primary: #264ae5 !default;\r\n$brand-light: #e6eaff !default;\r\n$grid-selected-row-background: $brand-light;\r\n\r\n.table {\r\n position: relative;\r\n border-width: 0;\r\n background-color: $background-color;\r\n\r\n /* Table Content */\r\n .table-content {\r\n display: grid;\r\n position: relative;\r\n }\r\n\r\n /* Pseudo Row, to target this object please use .tr > .td or .tr > div */\r\n .tr {\r\n display: contents;\r\n }\r\n\r\n /* Column Header */\r\n .th {\r\n display: flex;\r\n align-items: flex-start;\r\n font-weight: 600;\r\n background-color: $background-color;\r\n border-width: 0;\r\n border-color: $grid-border-color;\r\n padding: $spacing-medium;\r\n top: 0;\r\n min-width: 0;\r\n\r\n /* Clickable column header (Sortable) */\r\n .clickable {\r\n cursor: pointer;\r\n }\r\n\r\n /* Column resizer when column is resizable */\r\n .column-resizer {\r\n padding: 0 4px;\r\n align-self: stretch;\r\n cursor: col-resize;\r\n\r\n &:hover .column-resizer-bar {\r\n background-color: $brand-primary;\r\n }\r\n &:active .column-resizer-bar {\r\n background-color: $brand-primary;\r\n }\r\n\r\n .column-resizer-bar {\r\n height: 100%;\r\n width: 4px;\r\n }\r\n }\r\n\r\n /* Content of the column header */\r\n .column-container {\r\n display: flex;\r\n flex-direction: column;\r\n flex-grow: 1;\r\n align-self: stretch;\r\n min-width: 0;\r\n padding-left: $dragging-effect-size;\r\n margin-left: -$dragging-effect-size;\r\n /* Styles while dragging another column */\r\n &.dragging {\r\n border-left: $dragging-effect-size solid $dragging-color-effect;\r\n padding-left: 0;\r\n }\r\n\r\n &:not(:has(.filter)) {\r\n .column-header {\r\n height: 100%;\r\n }\r\n }\r\n }\r\n\r\n /* Header text */\r\n .column-header {\r\n margin: 1px 1px 1px -$dragging-effect-size + 1px;\r\n\r\n display: flex;\r\n align-items: baseline;\r\n\r\n span {\r\n min-width: 0;\r\n flex-grow: 1;\r\n text-overflow: ellipsis;\r\n overflow: hidden;\r\n text-wrap: nowrap;\r\n align-self: center;\r\n }\r\n\r\n svg {\r\n margin-left: 8px;\r\n flex: 0 0 $icon-size;\r\n color: $icon-color;\r\n height: $icon-size;\r\n align-self: center;\r\n }\r\n\r\n &:focus:not(:focus-visible) {\r\n outline: none;\r\n }\r\n\r\n &:focus-visible {\r\n outline: 1px solid $brand-primary;\r\n }\r\n }\r\n\r\n /* Header filter */\r\n .filter {\r\n display: flex;\r\n margin-top: 4px;\r\n input:not([type=\"checkbox\"]) {\r\n font-weight: normal;\r\n flex-grow: 1;\r\n width: 100%;\r\n }\r\n > .form-group {\r\n margin-bottom: 0;\r\n }\r\n > .form-control {\r\n flex: unset;\r\n min-width: unset;\r\n }\r\n }\r\n }\r\n\r\n /* If Column Header has filter */\r\n &:has(.th .column-container .filter:not(:empty)) {\r\n .th {\r\n &.column-selector {\r\n padding: $spacing-medium 0;\r\n }\r\n /*adjust filter-selector icon to be mid-bottom aligned */\r\n .column-selector-content {\r\n align-self: flex-end;\r\n margin-bottom: 3px;\r\n }\r\n\r\n /*adjust checkbox toggle to be mid-bottom aligned */\r\n &.widget-datagrid-col-select {\r\n align-items: flex-end;\r\n padding-bottom: calc($spacing-medium + 11px);\r\n }\r\n }\r\n }\r\n\r\n /* Column selector for hidable columns */\r\n .column-selector {\r\n padding: 0;\r\n\r\n /* Column content */\r\n .column-selector-content {\r\n align-self: center;\r\n padding-right: $spacing-medium;\r\n /* Button containing the eye icon */\r\n .column-selector-button {\r\n $icon-margin: 7px;\r\n /* 2px as path of icon's path is a bit bigger than outer svg */\r\n $icon-slack-size: 2px;\r\n\r\n padding: 0;\r\n margin: 0;\r\n\r\n height: ($icon-size + $icon-margin * 2 + $icon-slack-size);\r\n width: ($icon-size + $icon-margin * 2 + $icon-slack-size);\r\n\r\n svg {\r\n margin: $icon-margin;\r\n }\r\n }\r\n\r\n /* List of columns to select */\r\n .column-selectors {\r\n position: absolute;\r\n right: 0;\r\n margin: 8px;\r\n padding: 0 16px;\r\n background: $background-color;\r\n z-index: 102;\r\n border-radius: 3px;\r\n border: 1px solid transparent;\r\n list-style-type: none;\r\n -webkit-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\r\n -moz-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\r\n box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\r\n\r\n li {\r\n display: flex;\r\n align-items: center;\r\n\r\n label {\r\n margin: 8px;\r\n font-weight: normal;\r\n white-space: nowrap;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n /* Column content */\r\n .td {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n padding: $spacing-medium;\r\n border-style: solid;\r\n border-width: 0;\r\n border-color: $grid-border-color;\r\n border-bottom-width: 1px;\r\n min-width: 0;\r\n\r\n &.td-borders {\r\n border-top-width: 1px;\r\n border-top-style: solid;\r\n }\r\n\r\n &:focus {\r\n outline-width: 1px;\r\n outline-style: solid;\r\n outline-offset: -1px;\r\n outline-color: $brand-primary;\r\n }\r\n\r\n &.clickable {\r\n cursor: pointer;\r\n }\r\n\r\n > .td-text {\r\n white-space: nowrap;\r\n word-break: break-word;\r\n text-overflow: ellipsis;\r\n overflow: hidden;\r\n }\r\n\r\n > .td-custom-content {\r\n flex-grow: 1;\r\n }\r\n\r\n > .empty-placeholder {\r\n width: 100%;\r\n }\r\n\r\n &.wrap-text {\r\n min-height: 0;\r\n min-width: 0;\r\n\r\n > .td-text,\r\n > .mx-text {\r\n white-space: normal;\r\n }\r\n }\r\n }\r\n\r\n & *:focus {\r\n outline: 0;\r\n }\r\n\r\n .align-column-left {\r\n justify-content: flex-start;\r\n }\r\n\r\n .align-column-center {\r\n justify-content: center;\r\n }\r\n\r\n .align-column-right {\r\n justify-content: flex-end;\r\n }\r\n}\r\n\r\n.pagination-bar {\r\n display: flex;\r\n justify-content: flex-end;\r\n white-space: nowrap;\r\n align-items: baseline;\r\n margin: 16px;\r\n color: $pagination-caption-color;\r\n\r\n .paging-status {\r\n padding: 0 8px 8px;\r\n }\r\n\r\n .pagination-button {\r\n padding: 6px;\r\n color: $pagination-button-color;\r\n border-color: transparent;\r\n background-color: transparent;\r\n\r\n &:hover {\r\n color: $brand-primary;\r\n border-color: transparent;\r\n background-color: transparent;\r\n }\r\n\r\n &:disabled {\r\n border-color: transparent;\r\n background-color: transparent;\r\n }\r\n\r\n &:focus:not(:focus-visible) {\r\n outline: none;\r\n }\r\n\r\n &:focus-visible {\r\n outline: 1px solid $brand-primary;\r\n }\r\n }\r\n .pagination-icon {\r\n position: relative;\r\n top: 4px;\r\n display: inline-block;\r\n width: 20px;\r\n height: 20px;\r\n }\r\n}\r\n\r\n/* Column selector for hidable columns outside DG context */\r\n/* List of columns to select */\r\n.column-selectors {\r\n position: absolute;\r\n right: 0;\r\n margin: 8px 0;\r\n padding: 0 16px;\r\n background: $background-color;\r\n z-index: 102;\r\n border-radius: 3px;\r\n border: 1px solid transparent;\r\n list-style-type: none;\r\n -webkit-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\r\n -moz-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\r\n box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\r\n\r\n &.overflow {\r\n height: 250px;\r\n overflow-y: scroll;\r\n }\r\n\r\n li {\r\n display: flex;\r\n align-items: center;\r\n cursor: pointer;\r\n\r\n label {\r\n margin: 8px;\r\n font-weight: normal;\r\n white-space: nowrap;\r\n }\r\n }\r\n}\r\n\r\n.widget-datagrid {\r\n &.widget-datagrid-selection-method-click {\r\n .tr.tr-selected .td {\r\n background-color: $grid-selected-row-background;\r\n }\r\n }\r\n}\r\n\r\n.widget-datagrid-col-select input:focus-visible {\r\n outline-offset: 0;\r\n}\r\n\r\n.widget-datagrid-content {\r\n overflow-y: auto;\r\n}\r\n","/**\r\n Classes for React Date-Picker font-unit and color adjustments\r\n*/\r\n$day-color: #555 !default;\r\n$day-range-color: #000 !default;\r\n$day-range-background: #eaeaea !default;\r\n$outside-month-color: #c8c8c8 !default;\r\n$text-color: #fff !default;\r\n$border-color: #d7d7d7 !default;\r\n\r\n.react-datepicker {\r\n font-size: 1em;\r\n border: 1px solid $border-color;\r\n}\r\n\r\n.react-datepicker-wrapper {\r\n display: flex;\r\n flex: 1;\r\n}\r\n\r\n.react-datepicker__input-container {\r\n display: flex;\r\n flex: 1;\r\n}\r\n\r\n.react-datepicker__header {\r\n padding-top: 0.8em;\r\n background-color: $background-color;\r\n border-color: transparent;\r\n}\r\n\r\n.react-datepicker__header__dropdown {\r\n margin: 8px 0 4px 0; //4px due to the header contains 4px already\r\n}\r\n\r\n.react-datepicker__year-dropdown-container {\r\n margin-left: 8px;\r\n}\r\n\r\n.react-datepicker__month {\r\n margin: 4px 4px 8px 4px; //4px due to the rows already contains 4px each day\r\n}\r\n\r\n.react-datepicker__month-container {\r\n font-weight: normal;\r\n}\r\n\r\n.react-datepicker__day-name,\r\n.react-datepicker__day {\r\n width: 2em;\r\n line-height: 2em;\r\n margin: 4px;\r\n}\r\n\r\n.react-datepicker__day,\r\n.react-datepicker__day--in-range {\r\n color: $day-color;\r\n border-radius: 50%;\r\n\r\n &:hover {\r\n border-radius: 50%;\r\n color: $brand-primary;\r\n background-color: $hover-color;\r\n }\r\n}\r\n\r\n.react-datepicker__day-name {\r\n color: $brand-primary;\r\n font-weight: bold;\r\n}\r\n\r\n.react-datepicker__day--outside-month {\r\n color: $outside-month-color;\r\n}\r\n\r\n.react-datepicker__day--today:not(.react-datepicker__day--in-range),\r\n.react-datepicker__day--keyboard-selected {\r\n color: $brand-primary;\r\n background-color: $hover-color;\r\n}\r\n\r\n.react-datepicker__day--selected,\r\n.react-datepicker__day--range-start,\r\n.react-datepicker__day--range-end,\r\n.react-datepicker__day--in-selecting-range.react-datepicker__day--selecting-range-start {\r\n background-color: $brand-primary;\r\n color: $text-color;\r\n\r\n &:hover {\r\n border-radius: 50%;\r\n background-color: $brand-primary;\r\n color: $text-color;\r\n }\r\n}\r\n\r\n.react-datepicker__day--in-range:not(.react-datepicker__day--range-start, .react-datepicker__day--range-end),\r\n.react-datepicker__day--in-selecting-range:not(\r\n .react-datepicker__day--in-range,\r\n .react-datepicker__month-text--in-range,\r\n .react-datepicker__quarter-text--in-range,\r\n .react-datepicker__year-text--in-range,\r\n .react-datepicker__day--selecting-range-start\r\n ) {\r\n background-color: $day-range-background;\r\n color: $day-range-color;\r\n\r\n &:hover {\r\n background-color: $brand-primary;\r\n color: $text-color;\r\n }\r\n}\r\n\r\nbutton.react-datepicker__close-icon::after {\r\n background-color: $brand-primary;\r\n}\r\n\r\n.react-datepicker__current-month {\r\n font-size: 1em;\r\n font-weight: normal;\r\n}\r\n\r\n.react-datepicker__navigation {\r\n top: 1em;\r\n line-height: 1.7em;\r\n border: 0.45em solid transparent;\r\n}\r\n\r\n.react-datepicker__navigation--previous {\r\n border-right-color: #ccc;\r\n left: 8px;\r\n border: none;\r\n}\r\n\r\n.react-datepicker__navigation--next {\r\n border-left-color: #ccc;\r\n right: 8px;\r\n border: none;\r\n}\r\n\r\n/**\r\nSpace between the fields and the popup\r\n */\r\n.react-datepicker-popper[data-placement^=\"bottom\"] {\r\n margin-top: unset;\r\n padding-top: 0;\r\n}\r\n","$hover-color: #f8f8f8 !default;\r\n$background-color: #fff !default;\r\n$selected-color: #dadcde !default;\r\n$border-color: #ced0d3 !default;\r\n$arrow: \"resources/dropdown-arrow.svg\";\r\n$item-min-height: 32px;\r\n\r\n@import \"date-picker\";\r\n\r\n@font-face {\r\n font-family: \"datagrid-filters\";\r\n src: url(\"./fonts/datagrid-filters.eot\");\r\n src: url(\"./fonts/datagrid-filters.eot\") format(\"embedded-opentype\"),\r\n url(\"./fonts/datagrid-filters.woff2\") format(\"woff2\"), url(\"./fonts/datagrid-filters.woff\") format(\"woff\"),\r\n url(\"./fonts/datagrid-filters.ttf\") format(\"truetype\"), url(\"./fonts/datagrid-filters.svg\") format(\"svg\");\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n.filter-container {\r\n display: flex;\r\n flex-direction: row;\r\n flex-grow: 1;\r\n\r\n .filter-input {\r\n border-top-left-radius: 0;\r\n border-bottom-left-radius: 0;\r\n }\r\n\r\n .btn-calendar {\r\n margin-left: 5px; //Review in atlas, the current date picker is also 5px\r\n .button-icon {\r\n width: 18px;\r\n height: 18px;\r\n }\r\n }\r\n}\r\n\r\n.filter-selector {\r\n padding-left: 0;\r\n padding-right: 0;\r\n\r\n .filter-selector-content {\r\n height: 100%;\r\n align-self: flex-end;\r\n\r\n .filter-selector-button {\r\n padding: 8px;\r\n border-top-right-radius: 0;\r\n border-bottom-right-radius: 0;\r\n border-right: none;\r\n height: 100%;\r\n\r\n &:before {\r\n justify-content: center;\r\n width: 20px;\r\n height: 20px;\r\n padding-left: 4px; /* The font has spaces in the right side, so to align in the middle we need this */\r\n }\r\n }\r\n\r\n .filter-selectors {\r\n position: absolute;\r\n width: max-content;\r\n left: 0;\r\n margin: 0 $spacing-small;\r\n padding: 0;\r\n background: $background-color;\r\n z-index: 102;\r\n border-radius: 8px;\r\n list-style-type: none;\r\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\r\n overflow: hidden;\r\n z-index: 102;\r\n\r\n li {\r\n display: flex;\r\n align-items: center;\r\n font-weight: normal;\r\n line-height: 32px;\r\n cursor: pointer;\r\n\r\n .filter-label {\r\n padding-right: 8px;\r\n }\r\n\r\n &.filter-selected {\r\n background-color: $hover-color;\r\n color: $brand-primary;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: $hover-color;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.filter-selectors {\r\n padding: 0;\r\n background: $background-color;\r\n border-radius: 8px;\r\n list-style-type: none;\r\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\r\n overflow: hidden;\r\n z-index: 102;\r\n\r\n li {\r\n display: flex;\r\n align-items: center;\r\n font-weight: normal;\r\n line-height: 32px;\r\n cursor: pointer;\r\n\r\n .filter-label {\r\n padding-right: 8px;\r\n }\r\n\r\n &.filter-selected {\r\n background-color: $hover-color;\r\n color: $brand-primary;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: $hover-color;\r\n }\r\n }\r\n}\r\n\r\n.dropdown-list {\r\n list-style-type: none;\r\n padding: 0;\r\n margin-bottom: 0;\r\n\r\n li {\r\n display: flex;\r\n align-items: center;\r\n font-weight: normal;\r\n min-height: $item-min-height;\r\n cursor: pointer;\r\n padding: 0 $spacing-small;\r\n\r\n .filter-label {\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n }\r\n\r\n &.filter-selected {\r\n background-color: $hover-color;\r\n color: $brand-primary;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: $hover-color;\r\n }\r\n\r\n label {\r\n text-overflow: ellipsis;\r\n overflow: hidden;\r\n white-space: nowrap;\r\n margin: 8px;\r\n font-weight: normal;\r\n width: calc(100% - 32px);\r\n }\r\n }\r\n}\r\n\r\n:not(.dropdown-content) > .dropdown-list {\r\n background: $background-color;\r\n border-radius: 8px;\r\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\r\n max-height: 40vh;\r\n z-index: 102;\r\n}\r\n\r\n.dropdown-content {\r\n background: $background-color;\r\n border-radius: 8px;\r\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\r\n max-height: 40vh;\r\n z-index: 140;\r\n\r\n &-section + &-section {\r\n border-top: 1px solid $form-input-border-color;\r\n }\r\n}\r\n\r\n.dropdown-footer {\r\n position: sticky;\r\n bottom: 0;\r\n background: inherit;\r\n z-index: 50;\r\n}\r\n\r\n.dropdown-footer-item {\r\n display: flex;\r\n flex-flow: row nowrap;\r\n align-items: center;\r\n padding: 0 $spacing-small;\r\n min-height: 40px;\r\n}\r\n\r\n.dropdown-loading {\r\n flex-grow: 1;\r\n text-align: center;\r\n}\r\n\r\n.dropdown-container {\r\n flex: 1;\r\n position: relative;\r\n\r\n .dropdown-triggerer {\r\n caret-color: transparent;\r\n cursor: pointer;\r\n\r\n background-image: url($arrow);\r\n background-repeat: no-repeat;\r\n background-position: center;\r\n background-position-x: right;\r\n background-position-y: center;\r\n background-origin: content-box;\r\n text-overflow: ellipsis;\r\n width: 100%;\r\n }\r\n\r\n .dropdown-list {\r\n left: 0;\r\n margin: 0 $spacing-small;\r\n padding: 0;\r\n background: $background-color;\r\n z-index: 102;\r\n border-radius: 8px;\r\n list-style-type: none;\r\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\r\n overflow-x: hidden;\r\n max-height: 40vh;\r\n\r\n li {\r\n display: flex;\r\n align-items: center;\r\n font-weight: normal;\r\n min-height: $item-min-height;\r\n cursor: pointer;\r\n padding: 0 $spacing-small;\r\n\r\n .filter-label {\r\n overflow: hidden;\r\n text-overflow: ellipsis;\r\n white-space: nowrap;\r\n }\r\n\r\n &.filter-selected {\r\n background-color: $hover-color;\r\n color: $brand-primary;\r\n }\r\n\r\n &:hover,\r\n &:focus {\r\n background-color: $hover-color;\r\n }\r\n\r\n label {\r\n text-overflow: ellipsis;\r\n overflow: hidden;\r\n white-space: nowrap;\r\n margin: 8px;\r\n font-weight: normal;\r\n width: calc(100% - 32px);\r\n }\r\n }\r\n }\r\n}\r\n\r\n/**\r\nIcons\r\n */\r\n\r\n.filter-icon {\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n height: 20px;\r\n width: 20px;\r\n margin: 6px 8px;\r\n font-family: \"datagrid-filters\";\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n}\r\n\r\n.button-icon {\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n font-family: \"datagrid-filters\";\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n}\r\n\r\n.contains:before {\r\n content: \"\\e808\";\r\n}\r\n.endsWith:before {\r\n content: \"\\e806\";\r\n}\r\n.equal:before {\r\n content: \"\\e809\";\r\n}\r\n.greater:before {\r\n content: \"\\e80a\";\r\n}\r\n.greaterEqual:before {\r\n content: \"\\e80b\";\r\n}\r\n.notEqual:before {\r\n content: \"\\e80c\";\r\n}\r\n.smaller:before {\r\n content: \"\\e80d\";\r\n}\r\n.smallerEqual:before {\r\n content: \"\\e80e\";\r\n}\r\n.startsWith:before {\r\n content: \"\\e807\";\r\n}\r\n.between:before {\r\n content: \"\\e900\";\r\n}\r\n.empty:before {\r\n content: \"\\e901\";\r\n}\r\n.notEmpty:before {\r\n content: \"\\e903\";\r\n}\r\n\r\n/**\r\n* Specific styles for filters inside Data Grid 2\r\n**/\r\ndiv:not(.table-compact) > .table {\r\n .th {\r\n .filter-selector {\r\n .filter-selectors {\r\n margin: 0;\r\n }\r\n }\r\n\r\n .dropdown-container {\r\n .dropdown-list {\r\n margin: 0;\r\n }\r\n }\r\n }\r\n}\r\n",".table-compact {\r\n .th {\r\n padding: $spacing-small;\r\n\r\n .filter-selectors {\r\n margin: 0 $spacing-small;\r\n }\r\n }\r\n\r\n &:has(.th .column-container .filter:not(:empty)) {\r\n .th {\r\n &.column-selector {\r\n padding: $spacing-small 0;\r\n }\r\n &.widget-datagrid-col-select {\r\n padding-bottom: calc($spacing-small + 11px);\r\n }\r\n }\r\n }\r\n\r\n .td {\r\n padding: $spacing-small;\r\n }\r\n\r\n .dropdown-container .dropdown-list {\r\n margin: 0 $spacing-small;\r\n }\r\n\r\n .column-selector {\r\n /* Column content */\r\n .column-selector-content {\r\n padding-right: $spacing-small;\r\n }\r\n }\r\n}\r\n\r\n.table-striped {\r\n .tr:nth-child(odd) > .td {\r\n background-color: $grid-bg-striped;\r\n }\r\n}\r\n\r\n.table-hover {\r\n .tr:hover > .td {\r\n background-color: $grid-bg-hover;\r\n }\r\n}\r\n\r\n.table-bordered-all {\r\n .th,\r\n .td {\r\n border-left-width: 1px;\r\n border-left-style: solid;\r\n\r\n // Column for the visibility when a column can be hidden\r\n &.column-selector {\r\n border-left-width: 0;\r\n }\r\n\r\n &:last-child,\r\n &.column-selector {\r\n border-right-width: 1px;\r\n border-right-style: solid;\r\n }\r\n }\r\n .th {\r\n border-top-width: 1px;\r\n border-top-style: solid;\r\n }\r\n\r\n .td {\r\n border-bottom-width: 1px;\r\n border-bottom-style: solid;\r\n\r\n &.td-borders {\r\n border-top-width: 1px;\r\n }\r\n }\r\n}\r\n\r\n.table-bordered-horizontal {\r\n .td {\r\n border-bottom-width: 1px;\r\n border-bottom-style: solid;\r\n\r\n &.td-borders {\r\n border-top-width: 1px;\r\n }\r\n }\r\n}\r\n\r\n.table-bordered-vertical {\r\n .th,\r\n .td {\r\n border-left-width: 1px;\r\n border-left-style: solid;\r\n border-bottom-width: 0;\r\n\r\n // Column for the visibility when a column can be hidden\r\n &.column-selector {\r\n border-left-width: 0;\r\n border-bottom-width: 0;\r\n border-right-width: 1px;\r\n border-right-style: solid;\r\n }\r\n\r\n &.td-borders {\r\n border-top-width: 0;\r\n }\r\n }\r\n}\r\n\r\n.table-bordered-none {\r\n .td,\r\n .th {\r\n border: 0;\r\n\r\n &.column-selector {\r\n border: 0;\r\n }\r\n\r\n &.td-borders {\r\n border: 0;\r\n }\r\n }\r\n}\r\n",".sticky-sentinel {\r\n &.container-stuck {\r\n & + .widget-datagrid-grid,\r\n & + .table {\r\n .th {\r\n position: -webkit-sticky; /* Safari */\r\n position: sticky;\r\n z-index: 50;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.widget-datagrid-content.infinite-loading {\r\n overflow-y: auto;\r\n margin-bottom: 20px;\r\n}\r\n\r\n.table {\r\n .table-content {\r\n &.infinite-loading {\r\n overflow-y: scroll;\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Drop-down sort\r\n\r\n Override styles of Drop-down sort widget\r\n========================================================================== */\r\n@font-face {\r\n font-family: \"dropdown-sort\";\r\n src: url(\"./fonts/dropdown-sort.eot?46260688\");\r\n src: url(\"./fonts/dropdown-sort.eot?46260688#iefix\") format(\"embedded-opentype\"),\r\n url(\"./fonts/dropdown-sort.woff2?46260688\") format(\"woff2\"),\r\n url(\"./fonts/dropdown-sort.woff?46260688\") format(\"woff\"),\r\n url(\"./fonts/dropdown-sort.ttf?46260688\") format(\"truetype\"),\r\n url(\"./fonts/dropdown-sort.svg?46260688#dropdown-sort\") format(\"svg\");\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n.dropdown-triggerer-wrapper {\r\n display: flex;\r\n\r\n .dropdown-triggerer {\r\n border-bottom-right-radius: 0;\r\n border-top-right-radius: 0;\r\n border-right-width: 0;\r\n }\r\n\r\n .btn-sort {\r\n padding: $spacing-small;\r\n border-bottom-left-radius: 0;\r\n border-top-left-radius: 0;\r\n\r\n font-family: \"dropdown-sort\";\r\n font-style: normal;\r\n font-weight: normal;\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n\r\n &.icon-asc:before {\r\n content: \"\\e802\";\r\n margin: 2px;\r\n }\r\n\r\n &.icon-desc:before {\r\n content: \"\\e803\";\r\n margin: 2px;\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Gallery\r\n\r\n Override styles of Gallery widget\r\n========================================================================== */\r\n@mixin grid-items($number, $suffix) {\r\n @for $i from 1 through $number {\r\n &.widget-gallery-#{$suffix}-#{$i} {\r\n grid-template-columns: repeat($i, 1fr);\r\n }\r\n }\r\n}\r\n\r\n@mixin grid-span($number, $type) {\r\n @for $i from 1 through $number {\r\n .widget-gallery-#{$type}-span-#{$i} {\r\n grid-#{$type}: span $i;\r\n }\r\n }\r\n}\r\n\r\n.widget-gallery {\r\n .widget-gallery-items {\r\n display: grid;\r\n grid-gap: $spacing-small;\r\n\r\n /*\r\n Desktop widths\r\n */\r\n @media screen and (min-width: $screen-lg) {\r\n @include grid-items(12, \"lg\");\r\n }\r\n\r\n /*\r\n Tablet widths\r\n */\r\n @media screen and (min-width: $screen-md) and (max-width: ($screen-lg - 1px)) {\r\n @include grid-items(12, \"md\");\r\n }\r\n\r\n /*\r\n Phone widths\r\n */\r\n @media screen and (max-width: ($screen-md - 1)) {\r\n @include grid-items(12, \"sm\");\r\n }\r\n }\r\n\r\n .widget-gallery-clickable {\r\n cursor: pointer;\r\n\r\n &:focus:not(:focus-visible) {\r\n outline: none;\r\n }\r\n\r\n &:focus-visible {\r\n outline: 1px solid $brand-primary;\r\n outline-offset: -1px;\r\n }\r\n }\r\n\r\n &:not(.widget-gallery-disable-selected-items-highlight) {\r\n .widget-gallery-item.widget-gallery-clickable.widget-gallery-selected {\r\n background: $brand-light;\r\n }\r\n }\r\n\r\n .infinite-loading {\r\n overflow: auto;\r\n }\r\n\r\n .widget-gallery-filter,\r\n .widget-gallery-empty,\r\n .widget-gallery-pagination {\r\n flex: 1;\r\n }\r\n\r\n /**\r\n Helper classes\r\n */\r\n @include grid-span(12, \"column\");\r\n @include grid-span(12, \"row\");\r\n}\r\n\r\n.widget-gallery-item-button {\r\n width: inherit;\r\n}\r\n","/* ==========================================================================\r\n Gallery default\r\n\r\n//== Design Properties\r\n//## Helper classes to change the look and feel of the component\r\n========================================================================== */\r\n// All borders\r\n.widget-gallery-bordered-all {\r\n .widget-gallery-item {\r\n border: 1px solid $grid-border-color;\r\n }\r\n}\r\n\r\n// Vertical borders\r\n.widget-gallery-bordered-vertical {\r\n .widget-gallery-item {\r\n border-color: $grid-border-color;\r\n border-style: solid;\r\n border-width: 0;\r\n border-left-width: 1px;\r\n border-right-width: 1px;\r\n }\r\n}\r\n\r\n// Horizontal orders\r\n.widget-gallery-bordered-horizontal {\r\n .widget-gallery-item {\r\n border-color: $grid-border-color;\r\n border-style: solid;\r\n border-width: 0;\r\n border-top-width: 1px;\r\n border-bottom-width: 1px;\r\n }\r\n}\r\n\r\n// Hover styles\r\n.widget-gallery-hover {\r\n .widget-gallery-items {\r\n .widget-gallery-item:hover {\r\n background-color: $grid-bg-hover;\r\n }\r\n }\r\n}\r\n\r\n// Striped styles\r\n.widget-gallery-striped {\r\n .widget-gallery-item:nth-child(odd) {\r\n background-color: $grid-bg-striped;\r\n }\r\n .widget-gallery-item:nth-child(even) {\r\n background-color: #fff;\r\n }\r\n}\r\n\r\n// Grid spacing none\r\n.widget-gallery.widget-gallery-gridgap-none {\r\n .widget-gallery-items {\r\n gap: 0;\r\n }\r\n}\r\n\r\n// Grid spacing small\r\n.widget-gallery.widget-gallery-gridgap-small {\r\n .widget-gallery-items {\r\n gap: $spacing-small;\r\n }\r\n}\r\n\r\n// Grid spacing medium\r\n.widget-gallery.widget-gallery-gridgap-medium {\r\n .widget-gallery-items {\r\n gap: $spacing-medium;\r\n }\r\n}\r\n\r\n// Grid spacing large\r\n.widget-gallery.widget-gallery-gridgap-large {\r\n .widget-gallery-items {\r\n gap: $spacing-large;\r\n }\r\n}\r\n\r\n// Pagination left\r\n.widget-gallery-pagination-left {\r\n .widget-gallery-pagination {\r\n .pagination-bar {\r\n justify-content: flex-start;\r\n }\r\n }\r\n}\r\n\r\n// Pagination center\r\n.widget-gallery-pagination-center {\r\n .widget-gallery-pagination {\r\n .pagination-bar {\r\n justify-content: center;\r\n }\r\n }\r\n}\r\n\r\n.widget-gallery-disable-selected-items-highlight {\r\n // placeholder\r\n // this class in needed to disable standard styles of highlighted items\r\n}\r\n","input[type=\"checkbox\"].three-state-checkbox {\r\n position: relative !important; //Remove after mxui merge\r\n width: 16px;\r\n height: 16px;\r\n margin: 0 !important; // Remove after mxui merge\r\n cursor: pointer;\r\n -webkit-user-select: none;\r\n user-select: none;\r\n appearance: none;\r\n -moz-appearance: none;\r\n -webkit-appearance: none;\r\n transform: translateZ(0);\r\n\r\n &:before,\r\n &:after {\r\n position: absolute;\r\n display: block;\r\n transition: all 0.3s ease;\r\n }\r\n\r\n &:before {\r\n // Checkbox\r\n width: 100%;\r\n height: 100%;\r\n content: \"\";\r\n border: 1px solid #e7e7e9;\r\n border-radius: 4px;\r\n background-color: transparent;\r\n }\r\n\r\n &:not(:indeterminate):after {\r\n // Checkmark\r\n width: 8px;\r\n height: 4px;\r\n margin: 5px 4px;\r\n transform: rotate(-45deg);\r\n pointer-events: none;\r\n border: 2px solid #ffffff;\r\n border-top: 0;\r\n border-right: 0;\r\n }\r\n\r\n &:indeterminate:after {\r\n // Checkmark\r\n width: 8px;\r\n height: 4px;\r\n margin: 5px 4px;\r\n transform: rotate(0deg);\r\n pointer-events: none;\r\n border: 0 solid #ffffff;\r\n border-bottom-width: 2px;\r\n transition: border 0s;\r\n }\r\n\r\n &:not(:disabled):not(:checked):hover:after {\r\n content: \"\";\r\n border-color: #e7e7e9; // color of checkmark on hover\r\n }\r\n\r\n &:indeterminate:before,\r\n &:checked:before {\r\n border-color: #264ae5;\r\n background-color: #264ae5;\r\n }\r\n\r\n &:indeterminate:after,\r\n &:checked:after {\r\n content: \"\";\r\n }\r\n\r\n &:disabled:before {\r\n background-color: #f8f8f8;\r\n }\r\n\r\n &:checked:disabled:before {\r\n border-color: transparent;\r\n background-color: rgba(#264ae5, 0.4);\r\n }\r\n\r\n &:disabled:after,\r\n &:checked:disabled:after {\r\n border-color: #f8f8f8;\r\n }\r\n\r\n & + .control-label {\r\n margin-left: 8px;\r\n }\r\n}\r\n",".widget-tree-node {\r\n width: 100%;\r\n padding: 0;\r\n display: flex;\r\n flex-direction: column;\r\n\r\n .widget-tree-node-branch {\r\n display: block;\r\n\r\n &:focus-visible {\r\n outline: none;\r\n & > .widget-tree-node-branch-header {\r\n outline: -webkit-focus-ring-color auto 1px;\r\n outline: -moz-mac-focusring auto 1px;\r\n }\r\n }\r\n }\r\n\r\n .widget-tree-node-branch-header-clickable {\r\n cursor: pointer;\r\n }\r\n\r\n .widget-tree-node-branch-header {\r\n display: flex;\r\n flex-direction: row;\r\n justify-content: space-between;\r\n align-items: center;\r\n margin: 0;\r\n padding: 8px 0;\r\n\r\n svg {\r\n &.widget-tree-node-branch-header-icon-animated {\r\n transition: transform 0.2s ease-in-out 50ms;\r\n }\r\n &.widget-tree-node-branch-header-icon-collapsed-left {\r\n transform: rotate(-90deg);\r\n }\r\n &.widget-tree-node-branch-header-icon-collapsed-right {\r\n transform: rotate(90deg);\r\n }\r\n }\r\n\r\n .widget-tree-node-loading-spinner {\r\n width: 16px;\r\n height: 16px;\r\n animation: spin 2s linear infinite;\r\n }\r\n\r\n @keyframes spin {\r\n 0% {\r\n transform: rotate(0deg);\r\n }\r\n 100% {\r\n transform: rotate(360deg);\r\n }\r\n }\r\n }\r\n\r\n .widget-tree-node-branch-header-reversed {\r\n flex-direction: row-reverse;\r\n }\r\n\r\n .widget-tree-node-branch-header-value {\r\n flex: 1;\r\n font-size: 16px;\r\n margin: 0 8px;\r\n }\r\n\r\n .widget-tree-node-branch-header-icon-container {\r\n display: flex;\r\n align-items: center;\r\n }\r\n\r\n .widget-tree-node-body {\r\n padding-left: 24px;\r\n transition: height 0.2s ease 50ms;\r\n overflow: hidden;\r\n\r\n &.widget-tree-node-branch-hidden {\r\n display: none;\r\n }\r\n }\r\n}\r\n\r\n.widget-tree-node-lined-styling {\r\n .widget-tree-node .widget-tree-node-body {\r\n position: relative;\r\n\r\n &::before {\r\n content: \"\";\r\n width: 0px;\r\n height: 100%;\r\n position: absolute;\r\n top: 0;\r\n left: 7px;\r\n border: 1px solid #b6b8be;\r\n }\r\n }\r\n\r\n .widget-tree-node[role=\"group\"] > .widget-tree-node-branch > .widget-tree-node-branch-header {\r\n position: relative;\r\n\r\n &::before {\r\n content: \"\";\r\n position: absolute;\r\n width: 10px;\r\n height: 0;\r\n border: 1px solid #b6b8be;\r\n top: 50%;\r\n left: -16px;\r\n transform: translate(0, -50%);\r\n }\r\n }\r\n}\r\n","/* ==========================================================================\r\n Tree Node\r\n\r\n//== Design Properties\r\n//## Helper classes to change the look and feel of the component\r\n========================================================================== */\r\n\r\n.widget-tree-node-hover {\r\n .widget-tree-node-branch:hover > .widget-tree-node-branch-header {\r\n background-color: $grid-bg-hover;\r\n }\r\n}\r\n\r\n.widget-tree-node-bordered-horizontal {\r\n .widget-tree-node-branch > .widget-tree-node-branch-header {\r\n border-width: 0;\r\n border-bottom-width: 1px;\r\n border-bottom-style: solid;\r\n border-bottom-color: $grid-border-color;\r\n }\r\n}\r\n\r\n.widget-tree-node-bordered-all {\r\n border: 1px solid $grid-border-color;\r\n border-radius: 8px;\r\n overflow: hidden;\r\n\r\n .widget-tree-node-body:not(.widget-tree-node-branch-loading) {\r\n border-width: 0;\r\n border-top-width: 1px;\r\n border-top-style: solid;\r\n border-top-color: #ced0d3;\r\n }\r\n .widget-tree-node-branch:not(:first-of-type) > .widget-tree-node-branch-header {\r\n border-width: 0;\r\n border-top-width: 1px;\r\n border-top-style: solid;\r\n border-top-color: #ced0d3;\r\n }\r\n}\r\n\r\n.widget-tree-node-bordered-none {\r\n border-width: 0;\r\n .widget-tree-node-branch > .widget-tree-node-branch-header {\r\n border-width: 0;\r\n }\r\n}\r\n"]} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["../../themesource/atlas_core/web/main.scss","../../deployment/sass/Atlas_Core.Atlas_Filled.scss","../../deployment/sass/Atlas_Core.Atlas.scss","../../themesource/administration/web/main.scss","../../themesource/feedbackmodule/web/main.scss","../../themesource/feedbackmodule/web/_lightbox.scss","../../themesource/feedbackmodule/web/includes/_variables.scss","../../themesource/feedbackmodule/web/includes/_helpers.scss","../../themesource/feedbackmodule/web/_startButton.scss","../../themesource/feedbackmodule/web/includes/_atlasVariables.scss","../../themesource/feedbackmodule/web/annotation/_annotation-canvas.scss","../../themesource/feedbackmodule/web/annotation/_annotation-frame.scss","../../themesource/feedbackmodule/web/_failed.scss","../../themesource/feedbackmodule/web/_result.scss","../../themesource/feedbackmodule/web/_feedbackForm.scss","../../themesource/feedbackmodule/web/dialog/_dialog.scss","../../themesource/feedbackmodule/web/dialog/_underlay.scss","../../themesource/feedbackmodule/web/dialog/_closeButton.scss","../../themesource/feedbackmodule/web/toolbar/_toolbar.scss","../../themesource/feedbackmodule/web/toolbar/_toolButton.scss","../../themesource/feedbackmodule/web/_labelGroup.scss","../../themesource/feedbackmodule/web/button/_buttonGroup.scss","../../themesource/feedbackmodule/web/button/_button.scss","../../themesource/feedbackmodule/web/_screenshotPreview.scss","../../themesource/feedbackmodule/web/_tooltip.scss","../../themesource/webactions/web/_take-picture.scss","../../themesource/atlas_core/web/_variables-css-mappings.scss","../../themesource/atlas_core/web/core/_legacy/bootstrap/_bootstrap.scss","../../themesource/atlas_core/web/core/_legacy/bootstrap/_bootstrap-rtl.scss","../../themesource/atlas_core/web/core/_legacy/_mxui.scss","../../themesource/atlas_core/web/core/base/_animation.scss","../../themesource/atlas_core/web/core/base/_flex.scss","../../theme/web/custom-variables.scss","../../themesource/atlas_core/web/core/base/_spacing.scss","../../themesource/atlas_core/web/core/base/mixins/_spacing.scss","../../themesource/atlas_core/web/core/base/mixins/_layout-spacing.scss","../../themesource/atlas_core/web/core/base/_base.scss","../../themesource/atlas_core/web/core/base/_login.scss","../../themesource/atlas_core/web/core/widgets/_input.scss","../../themesource/atlas_core/web/core/helpers/_background.scss","../../themesource/atlas_core/web/core/widgets/_label.scss","../../themesource/atlas_core/web/core/widgets/_badge.scss","../../themesource/atlas_core/web/core/helpers/_label.scss","../../themesource/atlas_core/web/core/widgets/_badge-button.scss","../../themesource/atlas_core/web/core/helpers/_badge-button.scss","../../themesource/atlas_core/web/core/widgets/_button.scss","../../themesource/atlas_core/web/core/helpers/_button.scss","../../themesource/atlas_core/web/core/base/mixins/_buttons.scss","../../themesource/atlas_core/web/core/widgets/_check-box.scss","../../themesource/atlas_core/web/core/widgets/_grid.scss","../../themesource/atlas_core/web/core/widgets/_data-grid.scss","../../themesource/atlas_core/web/core/base/mixins/_animations.scss","../../themesource/atlas_core/web/core/helpers/_data-grid.scss","../../themesource/atlas_core/web/core/widgets/_data-view.scss","../../themesource/atlas_core/web/core/widgets/_date-picker.scss","../../themesource/atlas_core/web/core/widgets/_header.scss","../../themesource/atlas_core/web/core/widgets/_glyphicon.scss","../../themesource/atlas_core/web/core/widgets/_group-box.scss","../../themesource/atlas_core/web/core/helpers/_group-box.scss","../../themesource/atlas_core/web/core/base/mixins/_groupbox.scss","../../themesource/atlas_core/web/_variables.scss","../../themesource/atlas_core/web/core/helpers/_image.scss","../../themesource/atlas_core/web/core/widgets/_list-view.scss","../../themesource/atlas_core/web/core/helpers/_list-view.scss","../../themesource/atlas_core/web/core/widgets/_modal.scss","../../themesource/atlas_core/web/core/widgets/_navigation-bar.scss","../../themesource/atlas_core/web/core/helpers/_navigation-bar.scss","../../themesource/atlas_core/web/core/widgets/_navigation-list.scss","../../themesource/atlas_core/web/core/widgets/_navigation-tree.scss","../../themesource/atlas_core/web/core/helpers/_navigation-tree.scss","../../themesource/atlas_core/web/core/widgets/_pop-up-menu.scss","../../themesource/atlas_core/web/core/widgets/_simple-menu-bar.scss","../../themesource/atlas_core/web/core/helpers/_simple-menu-bar.scss","../../themesource/atlas_core/web/core/widgets/_radio-button.scss","../../themesource/atlas_core/web/core/widgets/_scroll-container-dojo.scss","../../themesource/atlas_core/web/core/widgets/_tab-container.scss","../../themesource/atlas_core/web/core/helpers/_tab-container.scss","../../themesource/atlas_core/web/core/widgets/_table.scss","../../themesource/atlas_core/web/core/helpers/_table.scss","../../themesource/atlas_core/web/core/widgets/_template-grid.scss","../../themesource/atlas_core/web/core/helpers/_template-grid.scss","../../themesource/atlas_core/web/core/widgets/_typography.scss","../../themesource/atlas_core/web/core/helpers/_typography.scss","../../themesource/atlas_core/web/core/widgets/_layout-grid.scss","../../themesource/atlas_core/web/core/widgets/_pagination.scss","../../themesource/atlas_core/web/core/widgets/_progress.scss","../../themesource/atlas_core/web/core/widgets/_progress-bar.scss","../../themesource/atlas_core/web/core/helpers/_progress-bar.scss","../../themesource/atlas_core/web/core/widgets/_progress-circle.scss","../../themesource/atlas_core/web/core/helpers/_progress-circle.scss","../../themesource/atlas_core/web/core/widgets/_rating.scss","../../themesource/atlas_core/web/core/helpers/_rating.scss","../../themesource/atlas_core/web/core/widgets/_range-slider.scss","../../themesource/atlas_core/web/core/helpers/_slider-color-variant.scss","../../themesource/atlas_core/web/core/helpers/_range-slider.scss","../../themesource/atlas_core/web/core/widgets/_slider.scss","../../themesource/atlas_core/web/core/helpers/_slider.scss","../../themesource/atlas_core/web/core/widgets/_timeline.scss","../../themesource/atlas_core/web/core/widgets/_tooltip.scss","../../themesource/atlas_core/web/core/helpers/_helper-classes.scss","../../themesource/atlas_core/web/core/widgets/_barcode-scanner.scss","../../themesource/atlas_core/web/core/widgets/_accordion.scss","../../themesource/atlas_core/web/core/helpers/_accordion.scss","../../themesource/atlas_core/web/core/widgetscustom/_dijit-widget.scss","../../themesource/atlas_core/web/core/widgets/_switch.scss","../../themesource/atlas_core/web/layouts/_layout-atlas.scss","../../themesource/atlas_core/web/layouts/_layout-atlas-phone.scss","../../themesource/atlas_core/web/layouts/_layout-atlas-responsive.scss","../../themesource/atlas_core/web/layouts/_layout-atlas-tablet.scss","../../themesource/atlas_web_content/web/buildingblocks/_alert.scss","../../themesource/atlas_web_content/web/buildingblocks/_breadcrumb.scss","../../themesource/atlas_web_content/web/buildingblocks/_card.scss","../../themesource/atlas_web_content/web/buildingblocks/_chat.scss","../../themesource/atlas_web_content/web/buildingblocks/_controlgroup.scss","../../themesource/atlas_web_content/web/buildingblocks/_pageblocks.scss","../../themesource/atlas_web_content/web/buildingblocks/_pageheader.scss","../../themesource/atlas_web_content/web/buildingblocks/_heroheader.scss","../../themesource/atlas_web_content/web/buildingblocks/_formblock.scss","../../themesource/atlas_web_content/web/buildingblocks/_master-detail.scss","../../themesource/atlas_web_content/web/buildingblocks/_userprofile.scss","../../themesource/atlas_web_content/web/buildingblocks/_wizard.scss","../../themesource/atlas_web_content/web/pagetemplates/_login.scss","../../themesource/atlas_web_content/web/pagetemplates/_list-tab.scss","../../themesource/atlas_web_content/web/pagetemplates/_springboard.scss","../../themesource/atlas_web_content/web/pagetemplates/_statuspage.scss","../../themesource/datawidgets/web/_datagrid.scss","../../themesource/datawidgets/web/_date-picker.scss","../../themesource/datawidgets/web/_datagrid-filters.scss","../../themesource/datawidgets/web/_datagrid-design-properties.scss","../../themesource/datawidgets/web/_datagrid-scroll.scss","../../themesource/datawidgets/web/_drop-down-sort.scss","../../themesource/datawidgets/web/_gallery.scss","../../themesource/datawidgets/web/_gallery-design-properties.scss","../../themesource/datawidgets/web/_three-state-checkbox.scss","../../themesource/datawidgets/web/_tree-node.scss","../../themesource/datawidgets/web/_tree-node-design-properties.scss"],"names":[],"mappings":";AAUY;ACVZ;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACnlCF;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACjlCE;EACI;;AAYJ;EACI;;AAGJ;EACI;EACA;EACA;;;ACtBR;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;ACLA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCImC;EDHnC,SCT0B;;ADW1B;EACI;EACA;EACA;;AEdH;EFWD;IAMQ;;;AAKJ;EACI;EACA,QCDc;;;AEvB1B;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCFY;EDGZ,OCoBgB;EDnBhB,WCOkB;EDNlB,YFK6B;EEJ7B,SFf8B;;AEiB9B;EAEI,kBCYe;;;AC7BvB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBJK4C;;AIH5C;EACI;EACA,YD2BU;;;AEzClB;EACI;EACA;EACA;EACA;EACA;EACA,SLHuB;;;AMHvB;EACI;EACA,QHmCQ;;AGhCZ;EACI;;;ACLN;EACI;EACA;EACA;;AAGJ;EACE;;AAGF;EACE;;;ACbA;EACI;;;AVkBR;AAAA;AAAA;AAAA;AAAA;AWjBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,SN+BY;EM9BZ,OTHsB;ESItB;EACA;EACA,kBNSiB;EMRjB;EACA,eNGoB;EMFpB;EACA;EACA,STjB0B;;ASmB1B;EACI,WNGU;EMFV,aNKe;EMJf;EACA;EACA,ONVa;EMWb;;;ACzBR;EACI;EACA,SVF0B;;;AWC9B;EACI,ORoCa;EQnCb;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA,OREa;EQDb,QRCa;;AQEjB;EACI,MRcY;;;AS/BpB;EACI;EACA;EACA;EACA,KTuCU;EStCV,KTmCa;ESlCb;EACA;EACA;EACA,kBTYiB;ESXjB;EACA,eTMoB;ESLpB,WTYc;ESXd;EACA,SZXuB;;AYavB;EACI;;AAGJ;EACI;;;ACrBR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OVFQ;;AUKZ;EACI,OVgBe;;AUbnB;EACI;EACA;EACA;;AAGJ;EACI,ObEkB;EaDlB,QbCkB;EaAlB;;AAGJ;EACI,YVMU;EULV;;AAGJ;EACI,MVnCM;EUoCN;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA,KVPM;EUQN;EACA;EACA;EACA;EACA,SVlBQ;EUmBR,YVnCa;EUoCb;EACA,eVzCgB;EU0ChB,ObnDU;EaoDV;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIA;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;AawDR;EACI,kBbzDI;;Aa6DZ;EACI;EACA;EACA,QV/DQ;;AUmEhB;EACI;EACA;EACA,eVpFgB;EUqFhB;;AAEA;EACI,kBVtGC;;AUyGL;EACI;EACA;;AAGJ;EACI,kBVhHL;;AUmHC;EACI;EACA;EACA;EACA;EACA;;AAKI;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;AaqFP;EACI,QbtFG;;;Ac1CvB;EACI;EACA;EACA;EACA,eXgCc;;AW9Bd;EACI;;;ACNR;EACI;EACA;EACA,KZuCU;;AYrCV;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;Ad1BH;EcyBD;IAIQ;;;;AC7BZ;EACI;EACA;EACA;EACA,KbsCU;;AapCV;EACI,OhBgBkB;EgBflB,QhBekB;EgBdlB;;;ACVR;EACI;EACA;EACA,QjBMmC;EiBLnC;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA,edKgB;;AcFpB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBd3BM;Ec4BN;EACA,edZgB;;AcchB;EACI;;AAGJ;EACI;;AAIR;EACI,OjBhBkB;EiBiBlB,QjBjBkB;EiBkBlB,MdtCO;;AcyCX;EACI;EACA;EACA;EACA;EACA,OjB1BkB;EiB2BlB,QjB3BkB;EiB4BlB,QdpDI;EcqDJ,MdjDO;EckDP;EACA;;;ACvDR;EAEI;EACA;;AAEA;EACI,OlBiBkB;EkBhBlB,QlBgBkB;;AkBdlB;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA,OlBbmB;EkBcnB;EACA;EACA;EACA;EACA,kBfzBM;Ee0BN,OfOc;EeNd,WfHU;EeIV;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,MAlCE;EAmCF;EACA;EACA;EACA;EACA;EACA;;;AC5CZ;AAAA;AAAA;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACA;EACA;;;AAEJ;EACI;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;AACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;AACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;AACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;AAGA;EACI;;;ACvJJ;AACI;AAAA;AAAA;AAAA;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAgBA;AACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;AAEA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;AACA;EACA;EACA;EACA;AAEA;EACA;EACA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;AAEA;AACA;;AAAA;EAGA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;EAEA;EACA;EACA;EACA;EACA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;AAEA;AACA;AAEA;EACA;AAEA;AACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EAEA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EAEA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AACA;EACA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;AAEA;AACA;EAEA;EACA;EACA;EACA;AAEA;AACA;EAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;AACA;AACA;EACA;EACA;EACA;AAEA;AAEA;EACA;EACA;AAEA;AACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;AAEA;AACA;AAEA;EACA;AAEA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;AAEA;AACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AACA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AAEA;AACA;AAEA;EACA;EACA;AAEA;EACA;EACA;AACA;AACA;AAEA;EACA;AAEA;EACA;;;AC/vBJ;AAAA;AAAA;AAAA;AAAA;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADOI;AACA;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaI;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EAKI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAMJ;AAAA;EAEI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;AACA;EACI;AAAA;AAAA;IAGI;IACA;IACA;IACA;IACA;;EAEJ;AAAA;IAEI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;IAEA;;EAEJ;IACI;;EAEJ;AAAA;IAEI;;EAEJ;IACI;;EAEJ;AAAA;AAAA;IAGI;IACA;;EAEJ;AAAA;IAEI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;AAAA;IAEI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;;AAGR;EACI;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;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AAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAkBI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA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;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAuOJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EASI;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EA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;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;IACI;IACA;IACA;IAEA;IACA;IACA;IACA;;EAEJ;AAAA;IAEI;IACA;IACA;;EAEJ;AAAA;IAEI;IACA;IACA;;EAEJ;AAAA;AAAA;IAGI;IACA;IACA;;;AAGR;AAAA;AAAA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AA;AAAA;EAYI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IAYI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;;AAGR;EACI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IAYI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;;AAGR;EACI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IAYI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;;AAIR;EACI;;AAGJ;EACI;;AAGJ;EACI;IACI;;EAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;IAMI;IACA;;EAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;IAMI;IACA;;;AAIR;AAAA;EAEI;EACA;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;IACI;IACA;;EAEJ;AAAA;IAEI;IACA;;;AAGR;EACI;IACI;;;AAIR;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;IACI;IACA;;EAEJ;IACI;IACA;;;AAIR;AAAA;EAEI;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI;;AAGJ;AAAA;AAAA;EAGI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;AAAA;EAEI;;AAGJ;EACI;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;AAGJ;EACI;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAOI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAOI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;IACI;;;AAGR;EACI;IACI;;;AAIR;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;AAAA;IAEI;IACA;;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;AAAA;IAEI;;;AAGR;EACI;IACI;;EAEJ;IACI;;;AAGR;EACI;IACI;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;IACA;;EAEJ;IACI;IACA;;;AAGR;EACI;IACI;;EAEJ;IACI;IACA;;;AAIR;EACI;;AAGJ;AAAA;EAEI;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI;;AAGJ;AAAA;EAEI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaI;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAYI;EACA;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAYI;EACA;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EAKA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EAKA;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;AAAA;IAEI;IACA;;EAEJ;AAAA;IAEI;IACA;;EAEJ;IACI;IACA;IACA;;;AAIR;EACI;;AAGJ;EACI;;;ACzsDZ;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAw7GA;AAEA;AAEA;AAEA;AAEA;;AA17GI;AAAA;AAAA;AAIA;AACI;AAAA;AAAA;AAAA;EAIA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAGJ;AACI;AAAA;AAAA;AAAA;EAIA;EACA;EACA;EACA;;;AAGJ;AACI;EACA;EACA;;;AAGJ;AACI;EACA;EACA;;;AAEJ;EACI;;;AAGJ;AACI;EACA;EACA;EACA;;;AAGJ;AAAA;AAEI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAGJ;AAAA;AAAA;EAGI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;AAAA;AAEI;EACA;EACA;;;AAEJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;AACI;EACA;EACA;EACA;;;AAGJ;AAAA;AAAA;AAAA;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACI;EACA;EACA;EACA;EACA;;;AAGJ;AACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACI;EACA;;;AAGJ;AACI;EACA;;;AAGJ;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMI;AAAA;EAEA;;;AAEJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;AAEA;AAAA;AAAA;EAGA;;;AAEJ;EACI;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;AACA;EACI;;;AAEJ;AAAA;AAEI;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;AAAA;AAAA;AAKA;AACI;EACA;EACA;;;AAGJ;AACI;EACA;EACA;;;AAGJ;AACI;EACA;EACA;;;AAGJ;AACA;EACI;;;AAGJ;AAAA;AAAA;AAAA;AAII;EACA;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;AACI;EACA;AACA;;;AAGJ;AACI;EACA;;;AAGJ;AAAA;AAAA;AAAA;EAII;;;AAGJ;AACI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;AACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;AACI;AAAA;EAEA;;;AAEJ;EACI;;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAGJ;AACI;EACA;;;AAGJ;AACI;AAAA;AAAA;AAAA;EAIA;;;AAGJ;EACI;;;AAGJ;AAAA;AAAA;AAAA;AAKA;EACI;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAGJ;AACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AACA;EACI;;;AAEJ;EACI;;;AAGJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAEJ;AACI;EACA;EACA;EACA;AACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;AAGI;AAAA;AAAA;EAGA;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAeI;;;AAEJ;AAAA;AAEI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;AAEA;AAAA;AAEI;EACA;;;AAEJ;AAAA;AAEI;EACA;;;AAGJ;AACI;EACA;;;AAEJ;AACI;EACA;;;AAEJ;EACI;;;AAGJ;AACI;EACA;;;AAGJ;AAEA;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AACI;AAAA;AAAA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;EAGI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;;;AAGJ;AACI;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;AAEI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAGJ;AACI;EACA;EACA;;;AAGJ;AAAA;AAAA;AAIA;EACI;;;AAEJ;AACI;EACA;EACA;EACA;EACA;;;AAGJ;AACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAGJ;AACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACI;EACA;EACA;EACA;;;AAGJ;AACI;EACA;AACA;EACA;;;AAGJ;AACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;AAAA;AAIA;EACI;EACA;EACA;AACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAGJ;AAAA;AAGA;EACI;EACA;EACA;;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;EAEI;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;AACI;AAAA;EAEA;;;AAGJ;AACI;EACA;EACA;;;AAGJ;;AAAA;AAAA;AAAA;AAMA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AACA;EACI;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;AAAA;AAAA;EAGI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAGJ;AAEA;EACI;EACA;EACA;;;AAGJ;AACI;AAAA;AAAA;AAAA;EAIA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAEA;EACI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAII;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;AAEI;EACA;;;AAEJ;AAAA;AAEI;EACA;EACA;;;AAEJ;AAAA;AAEI;EACA;;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQI;EACA;;;AAGJ;AAAA;AAEI;EACA;;;AAGJ;AAAA;AAAA;AAAA;AAKA;EACI;EACA;EACA;;;AAGJ;AACI;AAAA;AAAA;EAGA;EACA;EACA;EACA;EACA;;;AAEJ;AAAA;AAAA;AAGI;AAAA;AAAA;EAGA;EACA;;;AAGJ;AACI;EACA;EACA;EACA;EACA;;;AAEJ;AACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AACI;EACA;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;AAAA;AAEI;EACA;;;AAGJ;AAEA;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAGJ;AACA;AAAA;EAEI;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;AACI;EACA;;;AAGJ;AAEA;EACI;EACA;;;AAEJ;AAAA;EAEI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;EAKI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;AACI;EACA;EACA;EACA;EACA;;;AAGJ;AAEA;EACI;;;AAGJ;AAEA;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAGJ;AACA;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAKA;EACI;;;AAGJ;AAAA;AAEI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAOA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AACI;EACA;EACA;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;AACA;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;AACA;EACI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AACI;EACA;;;AAGJ;AAEA;EACI;;;AAGJ;AAAA;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA;EACI;EACA;;;AAEJ;AACI;EACA;;;AAEJ;EACI;;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;;AAGJ;EACI;;;AAEJ;AAAA;AAAA;AAAA;EAII;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;AACI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;AACI;EACA;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;AAAA;AAEI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;AACI;AAAA;AAAA;EAGA;EACA;;;AAEJ;AACI;EACA;;;AAEJ;AACI;EACA;EACA;EACA;;;AAGJ;AAEA;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;AAAA;AAGI;AAAA;AAAA;EAGA;;;AAGJ;AACA;EACI;EACA;;;AAGJ;AAAA;AAEI;EACA;;;AAGJ;AAAA;AAAA;AAGI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AACA;EACI;EACA;;;AAGJ;EACI;;;AAGJ;AACI;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AACI;EACA;;;AAGJ;AACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AAEA;EACI;EACA;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;AACA;AAAA;EAEI;EACA;;;AAGJ;EACI;AACA;EACA;;;AAGJ;EACI;;;AAGJ;AAEA;EACI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;AACA;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;AACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAGJ;AACA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACA;AAAA;EAEI;;;AAEJ;EACI;;;AAGJ;AACA;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;AACI;EACA;;;AAGJ;AAAA;AAAA;AAIA;EACI;EACA;EACA;EACA;;;AAGJ;AACA;EACI;AACA;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;;;AAGJ;AAEA;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;AACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAGJ;AAAA;EAEI;;;AAGJ;AACA;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EAKI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;AAAA;EAGI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAMI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAGJ;AACI;EACA;;;AAEJ;AAAA;AAEI;EACA;;;AAGJ;AACA;EACI;;;AAGJ;AACA;EACI;;;AAGJ;AACA;EACI;;;AAGJ;AACA;EACI;;;AAGJ;AACA;AAAA;AAAA;AAAA;AAII;EACA;;;AAGJ;AACA;EACI;AAEA;EACA;EACA;;;AAEJ;AACI;EACA;;;AAGJ;AAAA;EAEI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAGJ;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;EACI;;;AAGJ;AACA;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;AACA;AAAA;AAAA;;;AAKJ;AAEA;AACA;AAAA;AAAA;EAGI;;;AAEJ;AAAA;AAAA;AAAA;EAII;;;AAEJ;AAAA;EAEI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;EAEI;;;AAGJ;AACI;AAAA;AAAA;EAGA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACA;EACI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;AACI;EACA;EACA;EACA;;;AAGJ;AACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAgBJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAGJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACA;EACI;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;;;AAEJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;AAAA;EAEI;EACA;;;AAEJ;AAAA;EAEI;EACA;;;AAGJ;EACI;;;AAGJ;AACA;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAGJ;AACA;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;AACA;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;AACA;EACI;;;AAKJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;AAAA;AAAA;EAGI;;;AAGJ;AACA;AAAA;EAEI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;IACI;;EAEJ;IACI;;;AAIR;AAAA;EAEI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;;;AAQJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAKJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAGJ;AAAA;EAEI;;;AAEJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAGJ;AACA;EACI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;AACA;AAAA;AAAA;EAGA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;AACA;AAAA;AAAA;EAGA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAEJ;EACI;EACA;;;AA2BJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAEJ;AAAA;AAAA;EAGI;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;EAEI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EAEA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAEJ;AAAA;EAEI;;;AAGJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AAAA;AAAA;AAAA;AAAA;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAUJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;AACA;AAAA;EAEA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;AACA;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAEJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;IACI;IACA;IACA;;EAGJ;AAAA;IAEI;;EAGJ;AACI;IACA;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;AAAA;AAAA;IAGI;IACA;IACA;;EAGJ;AAAA;IAEI;;EAGJ;IACI;;EAGJ;AAAA;IAEI;IACA;;EAGJ;AACI;IACA;;;ACj7GR;EACI;IACI;IACA;;EAGJ;IACI;;;AAIR;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;IACI;IACA;;EAGJ;IACI;;;AAIR;EACI;;;AAGJ;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;;;AC/CR;AAAA;;AAAA;AAAA;AASI;EACI;EACA;EACA;EACA;;AAEA;EACI,cCkkBE;;ADhkBF;EACI;;AAIR;EACI;EACA;;;AAKR;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;EACI;EACA;;;AAIJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EAEI;;;AAGJ;EACI;;;AAIJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAUI;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AE7KhB;AAAA;;AAAA;AAAA;AASI;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;ACjEI;EDqER;ICpEY;;;AAEJ;EDkER;ICjEY;;;AAEJ;ED+DR;IC9DY;;;;AAGJ;EDmER;IClEY;;;AAEJ;EDgER;IC/DY;;;AAEJ;ED6DR;IC5DY;;;;AAPJ;ED2ER;IC1EY;;;AAEJ;EDwER;ICvEY;;;AAEJ;EDqER;ICpEY;;;;AAPJ;EDmFR;IClFY;;;AAEJ;EDgFR;IC/EY;;;AAEJ;ED6ER;IC5EY;;;;AAPJ;ED2FR;IC1FY;;;AAEJ;EDwFR;ICvFY;;;AAEJ;EDqFR;ICpFY;;;;AAPJ;EDmGR;IClGY;;;AAEJ;EDgGR;IC/FY;;;AAEJ;ED6FR;IC5FY;;;AAPJ;EDmGR;IClGY;;;AAEJ;EDgGR;IC/FY;;;AAEJ;ED6FR;IC5FY;;;;AAPJ;EDgHR;IC/GY;;;AAEJ;ED6GR;IC5GY;;;AAEJ;ED0GR;ICzGY;;;AAPJ;EDgHR;IC/GY;;;AAEJ;ED6GR;IC5GY;;;AAEJ;ED0GR;ICzGY;;;;AAjBJ;EDuIR;ICtIY;;;AAEJ;EDoIR;ICnIY;;;AAEJ;EDiIR;IChIY;;;;AAGJ;EDqIR;ICpIY;;;AAEJ;EDkIR;ICjIY;;;AAEJ;ED+HR;IC9HY;;;;AAPJ;ED6IR;IC5IY;;;AAEJ;ED0IR;ICzIY;;;AAEJ;EDuIR;ICtIY;;;;AAPJ;EDqJR;ICpJY;;;AAEJ;EDkJR;ICjJY;;;AAEJ;ED+IR;IC9IY;;;;AAPJ;ED6JR;IC5JY;;;AAEJ;ED0JR;ICzJY;;;AAEJ;EDuJR;ICtJY;;;;AAPJ;EDqKR;ICpKY;;;AAEJ;EDkKR;ICjKY;;;AAEJ;ED+JR;IC9JY;;;AAPJ;EDqKR;ICpKY;;;AAEJ;EDkKR;ICjKY;;;AAEJ;ED+JR;IC9JY;;;;AAPJ;EDkLR;ICjLY;;;AAEJ;ED+KR;IC9KY;;;AAEJ;ED4KR;IC3KY;;;AAPJ;EDkLR;ICjLY;;;AAEJ;ED+KR;IC9KY;;;AAEJ;ED4KR;IC3KY;;;;AAjDJ;ED0OR;ICzOY;;;AAEJ;EDuOR;ICtOY;;;AAEJ;EDoOR;ICnOY;;;;AAGJ;EDwOR;ICvOY;;;AAEJ;EDqOR;ICpOY;;;AAEJ;EDkOR;ICjOY;;;;AAPJ;EDgPR;IC/OY;;;AAEJ;ED6OR;IC5OY;;;AAEJ;ED0OR;ICzOY;;;;AAPJ;EDwPR;ICvPY;;;AAEJ;EDqPR;ICpPY;;;AAEJ;EDkPR;ICjPY;;;;AAPJ;EDgQR;IC/PY;;;AAEJ;ED6PR;IC5PY;;;AAEJ;ED0PR;ICzPY;;;;AAPJ;EDwQR;ICvQY;;;AAEJ;EDqQR;ICpQY;;;AAEJ;EDkQR;ICjQY;;;AAPJ;EDwQR;ICvQY;;;AAEJ;EDqQR;ICpQY;;;AAEJ;EDkQR;ICjQY;;;;AAPJ;EDqRR;ICpRY;;;AAEJ;EDkRR;ICjRY;;;AAEJ;ED+QR;IC9QY;;;AAPJ;EDqRR;ICpRY;;;AAEJ;EDkRR;ICjRY;;;AAEJ;ED+QR;IC9QY;;;;AAjBJ;ED4SR;IC3SY;;;AAEJ;EDySR;ICxSY;;;AAEJ;EDsSR;ICrSY;;;;AAGJ;ED0SR;ICzSY;;;AAEJ;EDuSR;ICtSY;;;AAEJ;EDoSR;ICnSY;;;;AAPJ;EDkTR;ICjTY;;;AAEJ;ED+SR;IC9SY;;;AAEJ;ED4SR;IC3SY;;;;AAPJ;ED0TR;ICzTY;;;AAEJ;EDuTR;ICtTY;;;AAEJ;EDoTR;ICnTY;;;;AAPJ;EDkUR;ICjUY;;;AAEJ;ED+TR;IC9TY;;;AAEJ;ED4TR;IC3TY;;;;AAPJ;ED0UR;ICzUY;;;AAEJ;EDuUR;ICtUY;;;AAEJ;EDoUR;ICnUY;;;AAPJ;ED0UR;ICzUY;;;AAEJ;EDuUR;ICtUY;;;AAEJ;EDoUR;ICnUY;;;;AAPJ;EDuVR;ICtVY;;;AAEJ;EDoVR;ICnVY;;;AAEJ;EDiVR;IChVY;;;AAPJ;EDuVR;ICtVY;;;AAEJ;EDoVR;ICnVY;;;AAEJ;EDiVR;IChVY;;;;AClBA;EFgXZ;IE/WgB;;;AAEJ;EF6WZ;IE5WgB;;;AAEJ;EF0WZ;IEzWgB;;;;AAGJ;EF+WZ;IE9WgB;;;AAEJ;EF4WZ;IE3WgB;;;AAEJ;EFyWZ;IExWgB;;;;AAGJ;EF8WZ;IE7WgB;;;AAEJ;EF2WZ;IE1WgB;;;AAEJ;EFwWZ;IEvWgB;;;;AAGJ;EF6WZ;IE5WgB;;;AAEJ;EF0WZ;IEzWgB;;;AAEJ;EFuWZ;IEtWgB;;;;AAGJ;EF4WZ;IE3WgB;;;AAEJ;EFyWZ;IExWgB;;;AAEJ;EFsWZ;IErWgB;;;;AArCJ;EFmZZ;IElZgB;;;AAEJ;EFgZZ;IE/YgB;;;AAEJ;EF6YZ;IE5YgB;;;AAaJ;EF+XZ;IE9XgB;;;AAEJ;EF4XZ;IE3XgB;;;AAEJ;EFyXZ;IExXgB;;;;AAGJ;EFmYZ;IElYgB;;;AAEJ;EFgYZ;IE/XgB;;;AAEJ;EF6XZ;IE5XgB;;;AA3BJ;EFuZZ;IEtZgB;;;AAEJ;EFoZZ;IEnZgB;;;AAEJ;EFiZZ;IEhZgB;;;;AA3BJ;EF0bZ;IEzbgB;;;AAEJ;EFubZ;IEtbgB;;;AAEJ;EFobZ;IEnbgB;;;;AAGJ;EFybZ;IExbgB;;;AAEJ;EFsbZ;IErbgB;;;AAEJ;EFmbZ;IElbgB;;;;AAGJ;EFwbZ;IEvbgB;;;AAEJ;EFqbZ;IEpbgB;;;AAEJ;EFkbZ;IEjbgB;;;;AAGJ;EFubZ;IEtbgB;;;AAEJ;EFobZ;IEnbgB;;;AAEJ;EFibZ;IEhbgB;;;;AAGJ;EFsbZ;IErbgB;;;AAEJ;EFmbZ;IElbgB;;;AAEJ;EFgbZ;IE/agB;;;;AArCJ;EF6dZ;IE5dgB;;;AAEJ;EF0dZ;IEzdgB;;;AAEJ;EFudZ;IEtdgB;;;AAaJ;EFycZ;IExcgB;;;AAEJ;EFscZ;IErcgB;;;AAEJ;EFmcZ;IElcgB;;;;AAGJ;EF6cZ;IE5cgB;;;AAEJ;EF0cZ;IEzcgB;;;AAEJ;EFucZ;IEtcgB;;;AA3BJ;EFieZ;IEhegB;;;AAEJ;EF8dZ;IE7dgB;;;AAEJ;EF2dZ;IE1dgB;;;;ACpCpB;AAAA;;AAAA;AAAA;AAMI;EACI;;;AAGJ;EACI;EACA,OJea;EIdb,kBJuCG;EItCH,aJ6DW;EI5DX,WJWY;EIVZ,aJmEa;EIlEb,aJkFW;;;AI/Ef;EACI;EACA,OJRQ;EISR;;;AAGJ;EACI;EACA,OJ6BW;;;AIzBf;EACI;;;AAIJ;AAAA;EAEI;;;AAIJ;AAAA;AAAA;EAGI;;;AAIJ;EACI;;;AAIJ;AAAA;EAEI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;ACnEJ;EACI;;;AAGJ;EACI;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;EACA;EACA;EAEI,Of4jBA;;AezjBJ;EACI,cfnDD;EeoDC,kBfpDD;;;AcYX;ECnBI,Of8OY;Ee7OZ,cfWQ;EeVR,kBfUQ;;AeRR;EAKI,OfqOQ;EepOR,cf8OW;Ee7OX,kBf6OW;;Ae3Of;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cffA;EegBA,kBfhBA;;AeoBR;EACI;EAEI,OfvBA;;Ae0BJ;EAKI,OfmMI;EelMJ,cfhCA;EeiCA,kBfjCA;;AeqCR;EACI;EACA;EACA;EAEI,Of1CA;;Ae6CJ;EACI,cfnDD;EeoDC,kBfpDD;;;AcgBX;ECvBI,OfooBS;EenoBT,cfknBK;EejnBL,kBfinBK;;Ae/mBL;EAKI,Of2nBK;Ee1nBL,cf8nBQ;Ee7nBR,kBf6nBQ;;Ae3nBZ;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cfwlBH;EevlBG,kBfulBH;;AenlBL;EACI;EAEI,OfglBH;;Ae7kBD;EAKI,OfylBC;EexlBD,cfukBH;EetkBG,kBfskBH;;AelkBL;EACI;EACA;EACA;EAEI,Of6jBH;;Ae1jBD;EACI,cfnDD;EeoDC,kBfpDD;;;AcoBX;EC3BI,Of+OY;Ee9OZ,cfYQ;EeXR,kBfWQ;;AeTR;EAKI,OfsOQ;EerOR,cf+OW;Ee9OX,kBf8OW;;Ae5Of;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cfdA;EeeA,kBffA;;AemBR;EACI;EAEI,OftBA;;AeyBJ;EAKI,OfoMI;EenMJ,cf/BA;EegCA,kBfhCA;;AeoCR;EACI;EACA;EACA;EAEI,OfzCA;;Ae4CJ;EACI,cfnDD;EeoDC,kBfpDD;;;AcwBX;EC/BI,OfgPW;Ee/OX,cfaO;EeZP,kBfYO;;AeVP;EAKI,OfuOO;EetOP,cfgPU;Ee/OV,kBf+OU;;Ae7Od;EAGI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;EAKI,cfbD;EecC,kBfdD;;AekBP;EACI;EAEI,OfrBD;;AewBH;EAKI,OfqMG;EepMH,cf9BD;Ee+BC,kBf/BD;;AemCP;EACI;EACA;EACA;EAEI,OfxCD;;Ae2CH;EACI,cfnDD;EeoDC,kBfpDD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A;;AAnBA;EACI,kBlCyIN;EkCxIM,qBlCwIN;;AkCtIE;EAGI,OlCmIN;EkClIM,kBlCgIH;;AkC/HG;EACI,kBlCgIV;EkC/HU,qBlC+HV;;AkC5HE;EACI,OlC2HN;EkC1HM,kBlCyHF;;AkCrHF;EACI;;AAIJ;AAAA;AAAA;EAGI,WlCyGD;;AkCpGP;EAMI,OlCmGF;EkClGE,kBlCgGC;;AkC/FD;EACI,kBlCgGN;EkC/FM,qBlC+FN;;AkC3FF;EACI,elCxCI;EkCyCJ,kBlCtCR;EkCuCQ;EACA;EACA;EACA;;AACA;EACI,SlC4dR;EkC3dQ,OlCkFN;EkCjFM,elCjDA;EkCkDA,elCydR;EkCxdQ;;AACA;EAEI,OlC4EV;EkC3EU,kBlCyEP;;AkCrEL;EACI,OlC+ES;EkC9ET,kBlCmEC;;AkClED;EACI,kBlC4EK;EkC3EL,qBlC2EK;;AkCvEjB;EAGI;IACI,kBlCrER;;EkCsEQ;IACI,OlC+DF;IkC9DE,WlC3BN;;EkC4BM;IAEI,OlC4DA;IkC3DA,kBlCiDP;;EkC/CG;IACI,OlCyDC;IkCxDD,kBlC6CP;;;;AkCnCb;EACI,kBlCtFC;;AkCuFD;AACI;AAsCA;;AArCA;EACI,OlCaD;EkCZC,WlCxGA;AkC0GA;AAoBA;;AAnBA;EACI,kBlCQL;EkCPK,qBlCOL;;AkCLC;EAGI,OlCGC;EkCFD,kBlCZF;;AkCaE;EACI,kBlCCF;EkCAE;;AAGR;EACI,OlCJE;EkCKF,kBlCnBD;;AkCuBH;EACI;;AAIJ;AAAA;AAAA;EAGI,WlCrBA;;AkC0BR;EAMI,OlC7BK;EkC8BL,kBlC5CE;;AkC6CF;EACI,kBlChCC;EkCiCD,qBlCjCC;;AkCoCT;EACI,OlChCU;EkCiCV,kBlC9IP;;AkC+IO;EACI,kBlCnCM;EkCoCN,qBlCpCM;;AkCwClB;EAGI;IACI,kBlC9JR;;EkC+JQ;IACI,OlChDD;IkCiDC,WlCpHN;;EkCqHM;IAEI,OlCnDC;IkCoDD,kBlChKf;;EkCkKW;IACI,OlCtDE;IkCuDF,kBlCpKf;;;;AkC6KL;AAAA;AAAA;EAGI;;;ACrNR;AAAA;;AAAA;AAAA;AAKA;EACI;EACA;EACA;;AAEA;EhBHA;EACA,iBARI;EgBYA,SnC+hBK;EmC9hBL;EACA;EACA,cnCaW;EmCZX;EACA,kBnCkTF;;AmChTE;EAEI;EACA,kBnC+SA;;AmC5SJ;EACI;EACA,kBnC2SG;;;AoCtUf;AAAA;;AAAA;AAAA;AAKA;EACI,kBR4nBQ;AQ1nBR;AAgEA;AA6CA;;AA5GA;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA,QpC0FK;EoCzFL,SpC0FM;EoCzFN,OpC+FD;EoC5FC,kBRymBJ;EQxmBI;EACA,WpCsFG;EoCrFH,apCqDC;;AoCnDD;EACI,kBpCsFL;EoCrFK,qBpCqFL;;AoClFC;EACI;EACA;EACA;;AAGJ;AAAA;AAAA;EAGI;EACA;EACA;EACA,WpCoEA;;AoChER;AAAA;AAAA;EAGI;EACA,OpC+DK;EoC9DL,kBRslBE;;AQplBF;AAAA;AAAA;EACI,kBpC4DE;EoC3DF,qBpC2DE;;AoCvDV;EACI,OpCsDM;EoCrDN,mBpCqDM;EoCpDN,kBR4kBG;;AQrkBX;EACI;EACA;EACA,kBRokBI;;AQlkBJ;EACI;EACA;EACA;;AAEA;EACI,SpCsdP;EoCrdO;EACA,OpCkCD;EoCjCC;EACA,kBRwjBJ;EQvjBI;EACA,WpCdN;EoCeM,apCXH;;AoCYG;AAAA;AAAA;EAGI,cpCwcZ;;AoCrcQ;EAGI,OpCoBC;EoCnBD;EACA,kBRyiBR;;AQtiBI;EACI,OpCeE;EoCdF;EACA,kBRmiBR;;AQ3hBZ;EACI;;;ACvHR;AAAA;;AAAA;AAAA;AAAA;AAQI;EACI,kBrCuBA;AqCcA;;AAlCQ;EACI,OrCkJN;EqCjJM,crCcD;EqCbC,kBrCiBZ;EqChBY,WrCQJ;;AqCPI;EACI,kBrC6IV;EqC5IU,qBrC4IV;;AqCzIM;AAAA;AAAA;EAGI,WrCiIL;;AqC9HH;AAAA;AAAA;EAGI,OrCgIN;EqC/HM,kBrC6HH;;AqC5HG;AAAA;AAAA;EACI,kBrC6HV;EqC5HU,qBrC4HV;;AqCzHE;EACI,OrCwHN;EqCvHM,mBrCuHN;EqCtHM,kBrCqHF;;AqC9GN;EACI,kBrCjBR;;AqCmBY;EACI,OrCkHN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I;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;;AAIR;EACI;IACI;IACA;IACA;;EAEJ;IACI;IACA;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;;AAIR;EACI;IACI;IACA;IACA;;EAEJ;IACI;IACA;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;IACA;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;IACI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAEJ;AAAA;IAEI;;EAE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BJ,crEEmB;EqEDnB,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEfa;EqEgBb,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrE6BQ;;AqE1BZ;EACI,MrEyBQ;;AqErBR;EAGI,kBrEpCL;;AqEsCK;EACI,OrE7EJ;;AqEgFA;EACI,MrEjFJ;;AqEuFZ;EACI,crExEe;EqEyEf;;AAMA;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrETQ;;;AsExGhB;AAAA;;AAAA;AAAA;AAAA;AASQ;EDiBR,crEdY;EqEeZ,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEtDQ;EqEuDR,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEmKQ;;AqEhKZ;EACI,MrE+JQ;;AqE3JR;EAGI,kBrEkKO;;AqEhKP;EACI,OrEqJA;;AqElJJ;EACI,MrEiJA;;AqE3IhB;EACI,crExFQ;EqEyFR;;AClFI;EDOR,crEnBW;EqEoBX,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrE6JS;EqE5JT,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrE/DI;;AqEkER;EACI,MrEnEI;;AqEuEJ;EAGI,kBrE/ED;;AqEiFC;EACI,OrE7EJ;;AqEgFA;EACI,MrEjFJ;;AqEuFZ;EACI,crE7FO;EqE8FP;;ACxEI;EDHR,crEbY;EqEcZ,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrErDQ;EqEsDR,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEoKQ;;AqEjKZ;EACI,MrEgKQ;;AqE5JR;EAGI,kBrEmKO;;AqEjKP;EACI,OrEsJA;;AqEnJJ;EACI,MrEkJA;;AqE5IhB;EACI,crEvFQ;EqEwFR;;AC9DI;EDbR,crEZY;EqEaZ,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEpDQ;EqEqDR,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEqKQ;;AqElKZ;EACI,MrEiKQ;;AqE7JR;EAGI,kBrEoKO;;AqElKP;EACI,OrEuJA;;AqEpJJ;EACI,MrEmJA;;AqE7IhB;EACI,crEtFQ;EqEuFR;;ACpDI;EDvBR,crEXW;EqEYX,kBrEwBiB;;AqEtBjB;EACI,wBrEDgB;EqEEhB,yBrEFgB;;AqEIhB;EACI;EACA;;AAIR;EACI,2BrEXgB;EqEYhB,4BrEZgB;;AqEiBhB;EACI;EACA;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA,kBrEnDO;EqEoDP,SrEweS;;AqEteT;EACI,WrE9CQ;EqE+CR,arEWW;;AqERf;EACI,OrEsKO;;AqEnKX;EACI,MrEkKO;;AqE9JP;EAGI,kBrEqKM;;AqEnKN;EACI,OrEwJD;;AqErJH;EACI,MrEoJD;;AqE9If;EACI,crErFO;EqEsFP;;AAMA;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrE6HQ;;AqEnIZ;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,OrErGI;;AqE+FR;EACI,WrEpFQ;EqEqFR,arE3BW;;AqE8Bf;EACI,Or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AAAA;AAAA;EACI,kB9FvFQ;E8FwFR,OArGK;;;AAyGb;EACI,kB9F7FY;;;A8FgGhB;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;AAAA;AAAA;AAGA;EACI;EACA;;;ACvIJ;EACI;EACA;EACA;EAGA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AACA;EACI;EACA;;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA,YFnEO;EEoEP;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI,kBAvFN;EAwFM,O/FpEJ;;A+FuEA;EAEI,kBA7FN;;;AAoGd;EACI;EACA,YFtGe;EEuGf;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI,kBAzHE;EA0HF,O/FtGI;;A+FyGR;EAEI,kBA/HE;;;AAoId;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,YAxIU;EAyIV;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI,kBAxJE;EAyJF,O/FrII;;A+FwIR;EAEI,kBA9JE;;AAiKN;EACI;EACA;EACA;EACA;EACA;EACA;;;AAKZ;EACI,YF7Ke;EE8Kf;EACA;EACA;EACA;;;AAGJ;EACI,YFrLe;EEsLf;EACA;EACA;EACA;;AAEA;EACI;;;AAIR;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA,YF1OW;EE2OX;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,YAjPM;EAkPN;EACA;;AAEA;EACI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","file":"theme.compiled.css","sourcesContent":["// Default variables\n@import \"exclusion-variables-defaults\";\n@import \"../../../theme/web/exclusion-variables\";\n@import \"generated-exclusion-variables\";\n@import \"variables\";\n@import \"variables-css-mappings\";\n@import \"../../../theme/web/custom-variables\";\n\n// Font Family Import\n@if $font-family-import != false {\n @import url($font-family-import);\n}\n\n//=============================== Bootstrap ================================\\\\\n\n// Utilities\n@import \"core/_legacy/bootstrap/bootstrap\";\n@import \"core/_legacy/bootstrap/bootstrap-rtl\";\n@if not $exclude-bootstrap {\n @include bootstrap();\n @include bootstrap-rtl();\n}\n@import \"core/_legacy/mxui\";\n@if not $exclude-mxui {\n @include mxui();\n}\n\n//================================== CORE ==================================\\\\\n\n// Base\n@import \"core/base/mixins/animations\";\n@import \"core/base/mixins/spacing\";\n@import \"core/base/mixins/layout-spacing\";\n@import \"core/base/mixins/buttons\";\n@import \"core/base/mixins/groupbox\";\n\n@import \"core/base/animation\";\n@if not $exclude-animations {\n @include animations();\n}\n@import \"core/base/flex\";\n@if not $exclude-flex {\n @include flex();\n}\n@import \"core/base/spacing\";\n@if not $exclude-spacing {\n @include spacing();\n}\n@import \"core/base/base\";\n@if not $exclude-base {\n @include base();\n}\n@import \"core/base/login\";\n@if not $exclude-login {\n @include login();\n}\n\n// Widgets\n@import \"core/widgets/input\";\n@if not $exclude-input {\n @include input();\n}\n\n@import \"core/helpers/background\";\n@if not $exclude-background-helpers {\n @include background-helpers();\n}\n\n@import \"core/widgets/label\";\n@if not $exclude-label {\n @include label();\n}\n\n@import \"core/widgets/badge\";\n@if not $exclude-badge {\n @include badge();\n}\n\n@import \"core/helpers/label\";\n@if not $exclude-label and not $exclude-label-helpers {\n @include label-helpers();\n}\n\n@import \"core/widgets/badge-button\";\n@if not $exclude-badge-button {\n @include badge-button();\n}\n\n@import \"core/helpers/badge-button\";\n@if not $exclude-badge-button and not $exclude-badge-button-helpers {\n @include badge-button-helpers();\n}\n\n@import \"core/widgets/button\";\n@if not $exclude-button {\n @include button();\n}\n\n@import \"core/helpers/button\";\n@if not $exclude-button and not $exclude-button-helpers {\n @include button-helpers();\n}\n\n@import \"core/widgets/check-box\";\n@if not $exclude-check-box {\n @include check-box();\n}\n\n@import \"core/widgets/grid\";\n@if not $exclude-grid {\n @include grid();\n}\n\n@import \"core/widgets/data-grid\";\n@if not $exclude-data-grid {\n @include data-grid();\n}\n\n@import \"core/helpers/data-grid\";\n@if not $exclude-data-grid and not $exclude-data-grid-helpers {\n @include data-grid-helpers();\n}\n\n@import \"core/widgets/data-view\";\n@if not $exclude-data-view {\n @include data-view();\n}\n\n@import \"core/widgets/date-picker\";\n@if not $exclude-data-picker {\n @include date-picker();\n}\n\n@import \"core/widgets/header\";\n@if not $exclude-header {\n @include header();\n}\n\n@import \"core/widgets/glyphicon\";\n@if not $exclude-glyphicon {\n @include glyphicon();\n}\n\n@import \"core/widgets/group-box\";\n@if not $exclude-group-box {\n @include group-box();\n}\n\n@import \"core/helpers/group-box\";\n@if not $exclude-group-box and not $exclude-group-box-helpers {\n @include group-box-helpers();\n}\n\n@import \"core/helpers/image\";\n@if not $exclude-image-helpers {\n @include image-helpers();\n}\n\n@import \"core/widgets/list-view\";\n@if not $exclude-list-view {\n @include list-view();\n}\n\n@import \"core/helpers/list-view\";\n@if not $exclude-list-view and not $exclude-list-view-helpers {\n @include list-view-helpers();\n}\n\n@import \"core/widgets/modal\";\n@if not $exclude-modal {\n @include modal();\n}\n\n@import \"core/widgets/navigation-bar\";\n@if not $exclude-navigation-bar {\n @include navigation-bar();\n}\n\n@import \"core/helpers/navigation-bar\";\n@if not $exclude-navigation-bar and not $exclude-navigation-bar-helpers {\n @include navigation-bar-helpers();\n}\n\n@import \"core/widgets/navigation-list\";\n@if not $exclude-navigation-list {\n @include navigation-list();\n}\n\n@import \"core/widgets/navigation-tree\";\n@if not $exclude-navigation-tree {\n @include navigation-tree();\n}\n\n@import \"core/helpers/navigation-tree\";\n@if not $exclude-navigation-tree and not $exclude-navigation-tree-helpers {\n @include navigation-tree-helpers();\n}\n\n@import \"core/widgets/pop-up-menu\";\n@if not $exclude-pop-up-menu {\n @include pop-up-menu();\n}\n\n@import \"core/widgets/simple-menu-bar\";\n@if not $exclude-simple-menu-bar {\n @include simple-menu-bar();\n}\n\n@import \"core/helpers/simple-menu-bar\";\n@if not $exclude-simple-menu-bar and not $exclude-simple-menu-bar-helpers {\n @include simple-menu-bar-helpers();\n}\n\n@import \"core/widgets/radio-button\";\n@if not $exclude-radio-button {\n @include radio-button();\n}\n\n@import \"core/widgets/scroll-container-react\";\n@import \"core/widgets/scroll-container-dojo\";\n@if not $exclude-scroll-container {\n @if $use-modern-client {\n @include scroll-container-react();\n } @else {\n @include scroll-container-dojo();\n }\n}\n\n@import \"core/widgets/tab-container\";\n@if not $exclude-tab-container {\n @include tab-container();\n}\n\n@import \"core/helpers/tab-container\";\n@if not $exclude-tab-container and not $exclude-tab-container-helpers {\n @include tab-container-helpers();\n}\n\n@import \"core/widgets/table\";\n@if not $exclude-table {\n @include table();\n}\n\n@import \"core/helpers/table\";\n@if not $exclude-table and not $exclude-table-helpers {\n @include table-helpers();\n}\n\n@import \"core/widgets/template-grid\";\n@if not $exclude-template-grid {\n @include template-grid();\n}\n\n@import \"core/helpers/template-grid\";\n@if not $exclude-template-grid and not $exclude-template-grid-helpers {\n @include template-grid-helpers();\n}\n\n@import \"core/widgets/typography\";\n@if not $exclude-typography {\n @include typography();\n}\n\n@import \"core/helpers/typography\";\n@if not $exclude-typography and not $exclude-typography-helpers {\n @include typography-helpers();\n}\n\n@import \"core/widgets/layout-grid\";\n@if not $exclude-layout-grid {\n @include layout-grid();\n}\n\n@import \"core/widgets/pagination\";\n@if not $exclude-pagination {\n @include pagination();\n}\n\n@import \"core/widgets/progress\";\n@if not $exclude-progress {\n @include progress();\n}\n\n@import \"core/widgets/progress-bar\";\n@if not $exclude-progress-bar {\n @include progress-bar();\n}\n\n@import \"core/helpers/progress-bar\";\n@if not $exclude-progress-bar and not $exclude-progress-bar-helpers {\n @include progress-bar-helpers();\n}\n\n@import \"core/widgets/progress-circle\";\n@if not $exclude-progress-circle {\n @include progress-circle();\n}\n\n@import \"core/helpers/progress-circle\";\n@if not $exclude-progress-circle and not $exclude-progress-circle-helpers {\n @include progress-circle-helpers();\n}\n\n@import \"core/widgets/rating\";\n@if not $exclude-rating {\n @include rating();\n}\n\n@import \"core/helpers/rating\";\n@if not $exclude-rating and not $exclude-rating-helpers {\n @include rating-helpers();\n}\n\n@import \"core/widgets/range-slider\";\n@if not $exclude-range-slider {\n @include range-slider();\n}\n\n@import \"core/helpers/range-slider\";\n@if not $exclude-range-slider and not $exclude-range-slider-helpers {\n @include range-slider-helpers();\n}\n\n@import \"core/widgets/slider\";\n@if not $exclude-slider {\n @include slider();\n}\n\n@import \"core/helpers/slider\";\n@if not $exclude-slider and not $exclude-slider-helpers {\n @include slider-helpers();\n}\n\n@import \"core/widgets/timeline\";\n@if not $exclude-timeline {\n @include timeline();\n}\n\n@import \"core/widgets/tooltip\";\n@if not $exclude-tooltip {\n @include tooltip();\n}\n\n@import \"core/helpers/helper-classes\";\n@if not $exclude-helper-classes {\n @include helper-classes();\n}\n\n@import \"core/widgets/barcode-scanner\";\n@if not $exclude-barcode-scanner {\n @include barcode-scanner();\n}\n\n@import \"core/widgets/accordion\";\n@if not $exclude-accordion {\n @include accordion();\n}\n\n@import \"core/helpers/accordion\";\n@if not $exclude-accordion and not $exclude-accordion-helpers {\n @include accordion-helpers();\n}\n\n// Custom widgets\n@import \"core/widgetscustom/dijit-widget\";\n@if not $exclude-custom-dijit-widget {\n @include dijit-widget();\n}\n\n@import \"core/widgets/switch\";\n@if not $exclude-custom-switch {\n @include switch();\n}\n\n//================================= CUSTOM =================================\\\\\n\n// Layouts\n@import \"layouts/layout-atlas\";\n@if not $exclude-layout-atlas {\n @include layout-atlas();\n}\n@import \"layouts/layout-atlas-phone\";\n@if not $exclude-layout-atlas-phone {\n @include layout-atlas-phone();\n}\n@import \"layouts/layout-atlas-responsive\";\n@if not $exclude-layout-atlas-responsive {\n @include layout-atlas-responsive();\n}\n@import \"layouts/layout-atlas-tablet\";\n@if not $exclude-layout-atlas-tablet {\n @include layout-atlas-tablet();\n}\n","@font-face {\n font-family: \"Atlas_Core$Atlas_Filled\";\n src: url(\"./fonts/Atlas_Core$Atlas_Filled.ttf\") format(\"truetype\");\n}\n.mx-icon-filled {\n display: inline-block;\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n font-family: \"Atlas_Core$Atlas_Filled\";\n}\n.mx-icon-filled.mx-icon-add::before {\n content: \"\\e900\";\n}\n.mx-icon-filled.mx-icon-add-circle::before {\n content: \"\\e901\";\n}\n.mx-icon-filled.mx-icon-airplane::before {\n content: \"\\e902\";\n}\n.mx-icon-filled.mx-icon-alarm-bell::before {\n content: \"\\e903\";\n}\n.mx-icon-filled.mx-icon-alarm-bell-off::before {\n content: \"\\e904\";\n}\n.mx-icon-filled.mx-icon-alert-circle::before {\n content: \"\\e905\";\n}\n.mx-icon-filled.mx-icon-alert-triangle::before {\n content: \"\\e906\";\n}\n.mx-icon-filled.mx-icon-align-bottom::before {\n content: \"\\e907\";\n}\n.mx-icon-filled.mx-icon-align-center::before {\n content: \"\\e908\";\n}\n.mx-icon-filled.mx-icon-align-left::before {\n content: \"\\e909\";\n}\n.mx-icon-filled.mx-icon-align-middle::before {\n content: \"\\e90a\";\n}\n.mx-icon-filled.mx-icon-align-right::before {\n content: \"\\e90b\";\n}\n.mx-icon-filled.mx-icon-align-top::before {\n content: \"\\e90c\";\n}\n.mx-icon-filled.mx-icon-analytics-bars::before {\n content: \"\\e90d\";\n}\n.mx-icon-filled.mx-icon-analytics-graph-bar::before {\n content: \"\\e90e\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-down::before {\n content: \"\\e90f\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-left::before {\n content: \"\\e910\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-right::before {\n content: \"\\e911\";\n}\n.mx-icon-filled.mx-icon-arrow-circle-up::before {\n content: \"\\e912\";\n}\n.mx-icon-filled.mx-icon-arrow-down::before {\n content: \"\\e913\";\n}\n.mx-icon-filled.mx-icon-arrow-left::before {\n content: \"\\e914\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-down::before {\n content: \"\\e915\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-left::before {\n content: \"\\e916\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-right::before {\n content: \"\\e917\";\n}\n.mx-icon-filled.mx-icon-arrow-narrow-up::before {\n content: \"\\e918\";\n}\n.mx-icon-filled.mx-icon-arrow-right::before {\n content: \"\\e919\";\n}\n.mx-icon-filled.mx-icon-arrow-square-down::before {\n content: \"\\e91a\";\n}\n.mx-icon-filled.mx-icon-arrow-square-left::before {\n content: \"\\e91b\";\n}\n.mx-icon-filled.mx-icon-arrow-square-right::before {\n content: \"\\e91c\";\n}\n.mx-icon-filled.mx-icon-arrow-square-up::before {\n content: \"\\e91d\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-down::before {\n content: \"\\e91e\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-left::before {\n content: \"\\e91f\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-right::before {\n content: \"\\e920\";\n}\n.mx-icon-filled.mx-icon-arrow-thick-up::before {\n content: \"\\e921\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-down::before {\n content: \"\\e922\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-left::before {\n content: \"\\e923\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-right::before {\n content: \"\\e924\";\n}\n.mx-icon-filled.mx-icon-arrow-triangle-up::before {\n content: \"\\e925\";\n}\n.mx-icon-filled.mx-icon-arrow-up::before {\n content: \"\\e926\";\n}\n.mx-icon-filled.mx-icon-arrows-retweet::before {\n content: \"\\e927\";\n}\n.mx-icon-filled.mx-icon-asterisk::before {\n content: \"\\e928\";\n}\n.mx-icon-filled.mx-icon-badge::before {\n content: \"\\e929\";\n}\n.mx-icon-filled.mx-icon-barcode::before {\n content: \"\\e92a\";\n}\n.mx-icon-filled.mx-icon-binoculars::before {\n content: \"\\e92b\";\n}\n.mx-icon-filled.mx-icon-bitcoin::before {\n content: \"\\e92c\";\n}\n.mx-icon-filled.mx-icon-blocks::before {\n content: \"\\e92d\";\n}\n.mx-icon-filled.mx-icon-book-closed::before {\n content: \"\\e92e\";\n}\n.mx-icon-filled.mx-icon-book-open::before {\n content: \"\\e92f\";\n}\n.mx-icon-filled.mx-icon-bookmark::before {\n content: \"\\e930\";\n}\n.mx-icon-filled.mx-icon-briefcase::before {\n content: \"\\e931\";\n}\n.mx-icon-filled.mx-icon-browser::before {\n content: \"\\e932\";\n}\n.mx-icon-filled.mx-icon-browser-code::before {\n content: \"\\e933\";\n}\n.mx-icon-filled.mx-icon-browser-page-text::before {\n content: \"\\e934\";\n}\n.mx-icon-filled.mx-icon-browser-search::before {\n content: \"\\e935\";\n}\n.mx-icon-filled.mx-icon-browser-trophy::before {\n content: \"\\e936\";\n}\n.mx-icon-filled.mx-icon-calendar::before {\n content: \"\\e937\";\n}\n.mx-icon-filled.mx-icon-calendar-1::before {\n content: \"\\e938\";\n}\n.mx-icon-filled.mx-icon-camera::before {\n content: \"\\e939\";\n}\n.mx-icon-filled.mx-icon-camping-tent::before {\n content: \"\\e93a\";\n}\n.mx-icon-filled.mx-icon-cash-payment-bill::before {\n content: \"\\e93b\";\n}\n.mx-icon-filled.mx-icon-cash-payment-bill-2::before {\n content: \"\\e93c\";\n}\n.mx-icon-filled.mx-icon-cd::before {\n content: \"\\e93d\";\n}\n.mx-icon-filled.mx-icon-charger::before {\n content: \"\\e93e\";\n}\n.mx-icon-filled.mx-icon-checkmark::before {\n content: \"\\e93f\";\n}\n.mx-icon-filled.mx-icon-checkmark-circle::before {\n content: \"\\e940\";\n}\n.mx-icon-filled.mx-icon-checkmark-shield::before {\n content: \"\\e941\";\n}\n.mx-icon-filled.mx-icon-checkmark-square::before {\n content: \"\\e942\";\n}\n.mx-icon-filled.mx-icon-chevron-down::before {\n content: \"\\e943\";\n}\n.mx-icon-filled.mx-icon-chevron-left::before {\n content: \"\\e944\";\n}\n.mx-icon-filled.mx-icon-chevron-right::before {\n content: \"\\e945\";\n}\n.mx-icon-filled.mx-icon-chevron-up::before {\n content: \"\\e946\";\n}\n.mx-icon-filled.mx-icon-cloud::before {\n content: \"\\e947\";\n}\n.mx-icon-filled.mx-icon-cloud-check::before {\n content: \"\\e948\";\n}\n.mx-icon-filled.mx-icon-cloud-data-transfer::before {\n content: \"\\e949\";\n}\n.mx-icon-filled.mx-icon-cloud-disable::before {\n content: \"\\e94a\";\n}\n.mx-icon-filled.mx-icon-cloud-download::before {\n content: \"\\e94b\";\n}\n.mx-icon-filled.mx-icon-cloud-lock::before {\n content: \"\\e94c\";\n}\n.mx-icon-filled.mx-icon-cloud-off::before {\n content: \"\\e94d\";\n}\n.mx-icon-filled.mx-icon-cloud-refresh::before {\n content: \"\\e94e\";\n}\n.mx-icon-filled.mx-icon-cloud-remove::before {\n content: \"\\e94f\";\n}\n.mx-icon-filled.mx-icon-cloud-search::before {\n content: \"\\e950\";\n}\n.mx-icon-filled.mx-icon-cloud-settings::before {\n content: \"\\e951\";\n}\n.mx-icon-filled.mx-icon-cloud-subtract::before {\n content: \"\\e952\";\n}\n.mx-icon-filled.mx-icon-cloud-sync::before {\n content: \"\\e953\";\n}\n.mx-icon-filled.mx-icon-cloud-upload::before {\n content: \"\\e954\";\n}\n.mx-icon-filled.mx-icon-cloud-warning::before {\n content: \"\\e955\";\n}\n.mx-icon-filled.mx-icon-cog::before {\n content: \"\\e956\";\n}\n.mx-icon-filled.mx-icon-cog-hand-give::before {\n content: \"\\e957\";\n}\n.mx-icon-filled.mx-icon-cog-play::before {\n content: \"\\e958\";\n}\n.mx-icon-filled.mx-icon-cog-shield::before {\n content: \"\\e959\";\n}\n.mx-icon-filled.mx-icon-color-bucket-brush::before {\n content: \"\\e95a\";\n}\n.mx-icon-filled.mx-icon-color-painting-palette::before {\n content: \"\\e95b\";\n}\n.mx-icon-filled.mx-icon-compass-directions::before {\n content: \"\\e95c\";\n}\n.mx-icon-filled.mx-icon-compressed::before {\n content: \"\\e95d\";\n}\n.mx-icon-filled.mx-icon-computer-chip::before {\n content: \"\\e95e\";\n}\n.mx-icon-filled.mx-icon-connect::before {\n content: \"\\e95f\";\n}\n.mx-icon-filled.mx-icon-connect-1::before {\n content: \"\\e960\";\n}\n.mx-icon-filled.mx-icon-console-terminal::before {\n content: \"\\e961\";\n}\n.mx-icon-filled.mx-icon-contacts::before {\n content: \"\\e962\";\n}\n.mx-icon-filled.mx-icon-contrast::before {\n content: \"\\e963\";\n}\n.mx-icon-filled.mx-icon-controls-backward::before {\n content: \"\\e964\";\n}\n.mx-icon-filled.mx-icon-controls-eject::before {\n content: \"\\e965\";\n}\n.mx-icon-filled.mx-icon-controls-fast-backward::before {\n content: \"\\e966\";\n}\n.mx-icon-filled.mx-icon-controls-fast-forward::before {\n content: \"\\e967\";\n}\n.mx-icon-filled.mx-icon-controls-forward::before {\n content: \"\\e968\";\n}\n.mx-icon-filled.mx-icon-controls-pause::before {\n content: \"\\e969\";\n}\n.mx-icon-filled.mx-icon-controls-play::before {\n content: \"\\e96a\";\n}\n.mx-icon-filled.mx-icon-controls-record::before {\n content: \"\\e96b\";\n}\n.mx-icon-filled.mx-icon-controls-shuffle::before {\n content: \"\\e96c\";\n}\n.mx-icon-filled.mx-icon-controls-step-backward::before {\n content: \"\\e96d\";\n}\n.mx-icon-filled.mx-icon-controls-step-forward::before {\n content: \"\\e96e\";\n}\n.mx-icon-filled.mx-icon-controls-stop::before {\n content: \"\\e96f\";\n}\n.mx-icon-filled.mx-icon-controls-volume-full::before {\n content: \"\\e970\";\n}\n.mx-icon-filled.mx-icon-controls-volume-low::before {\n content: \"\\e971\";\n}\n.mx-icon-filled.mx-icon-controls-volume-off::before {\n content: \"\\e972\";\n}\n.mx-icon-filled.mx-icon-conversation-question-warning::before {\n content: \"\\e973\";\n}\n.mx-icon-filled.mx-icon-copy::before {\n content: \"\\e974\";\n}\n.mx-icon-filled.mx-icon-credit-card::before {\n content: \"\\e975\";\n}\n.mx-icon-filled.mx-icon-crossroad-sign::before {\n content: \"\\e976\";\n}\n.mx-icon-filled.mx-icon-cube::before {\n content: \"\\e977\";\n}\n.mx-icon-filled.mx-icon-cutlery::before {\n content: \"\\e978\";\n}\n.mx-icon-filled.mx-icon-dashboard::before {\n content: \"\\e979\";\n}\n.mx-icon-filled.mx-icon-data-transfer::before {\n content: \"\\e97a\";\n}\n.mx-icon-filled.mx-icon-desktop::before {\n content: \"\\e97b\";\n}\n.mx-icon-filled.mx-icon-diamond::before {\n content: \"\\e97c\";\n}\n.mx-icon-filled.mx-icon-direction-buttons::before {\n content: \"\\e97d\";\n}\n.mx-icon-filled.mx-icon-direction-buttons-arrows::before {\n content: \"\\e97e\";\n}\n.mx-icon-filled.mx-icon-disable::before {\n content: \"\\e97f\";\n}\n.mx-icon-filled.mx-icon-document::before {\n content: \"\\e980\";\n}\n.mx-icon-filled.mx-icon-document-open::before {\n content: \"\\e981\";\n}\n.mx-icon-filled.mx-icon-document-save::before {\n content: \"\\e982\";\n}\n.mx-icon-filled.mx-icon-dollar::before {\n content: \"\\e983\";\n}\n.mx-icon-filled.mx-icon-double-bed::before {\n content: \"\\e984\";\n}\n.mx-icon-filled.mx-icon-double-chevron-left::before {\n content: \"\\e985\";\n}\n.mx-icon-filled.mx-icon-double-chevron-right::before {\n content: \"\\e986\";\n}\n.mx-icon-filled.mx-icon-download-bottom::before {\n content: \"\\e987\";\n}\n.mx-icon-filled.mx-icon-download-button::before {\n content: \"\\e988\";\n}\n.mx-icon-filled.mx-icon-duplicate::before {\n content: \"\\e989\";\n}\n.mx-icon-filled.mx-icon-email::before {\n content: \"\\e98a\";\n}\n.mx-icon-filled.mx-icon-equalizer::before {\n content: \"\\e98b\";\n}\n.mx-icon-filled.mx-icon-eraser::before {\n content: \"\\e98c\";\n}\n.mx-icon-filled.mx-icon-euro::before {\n content: \"\\e98d\";\n}\n.mx-icon-filled.mx-icon-expand-horizontal::before {\n content: \"\\e98e\";\n}\n.mx-icon-filled.mx-icon-expand-vertical::before {\n content: \"\\e98f\";\n}\n.mx-icon-filled.mx-icon-external::before {\n content: \"\\e990\";\n}\n.mx-icon-filled.mx-icon-file-pdf::before {\n content: \"\\e991\";\n}\n.mx-icon-filled.mx-icon-file-zip::before {\n content: \"\\e992\";\n}\n.mx-icon-filled.mx-icon-film::before {\n content: \"\\e993\";\n}\n.mx-icon-filled.mx-icon-filter::before {\n content: \"\\e994\";\n}\n.mx-icon-filled.mx-icon-fire::before {\n content: \"\\e995\";\n}\n.mx-icon-filled.mx-icon-flag::before {\n content: \"\\e996\";\n}\n.mx-icon-filled.mx-icon-flash::before {\n content: \"\\e997\";\n}\n.mx-icon-filled.mx-icon-floppy-disk::before {\n content: \"\\e998\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-arrow-down::before {\n content: \"\\e999\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-arrow-up::before {\n content: \"\\e99a\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-checkmark::before {\n content: \"\\e99b\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-group::before {\n content: \"\\e99c\";\n}\n.mx-icon-filled.mx-icon-floppy-disk-remove::before {\n content: \"\\e99d\";\n}\n.mx-icon-filled.mx-icon-folder-closed::before {\n content: \"\\e99e\";\n}\n.mx-icon-filled.mx-icon-folder-open::before {\n content: \"\\e99f\";\n}\n.mx-icon-filled.mx-icon-folder-upload::before {\n content: \"\\e9a0\";\n}\n.mx-icon-filled.mx-icon-fruit-apple::before {\n content: \"\\e9a1\";\n}\n.mx-icon-filled.mx-icon-fullscreen::before {\n content: \"\\e9a2\";\n}\n.mx-icon-filled.mx-icon-gift::before {\n content: \"\\e9a3\";\n}\n.mx-icon-filled.mx-icon-github::before {\n content: \"\\e9a4\";\n}\n.mx-icon-filled.mx-icon-globe::before {\n content: \"\\e9a5\";\n}\n.mx-icon-filled.mx-icon-globe-1::before {\n content: \"\\e9a6\";\n}\n.mx-icon-filled.mx-icon-graduation-hat::before {\n content: \"\\e9a7\";\n}\n.mx-icon-filled.mx-icon-hammer::before {\n content: \"\\e9a8\";\n}\n.mx-icon-filled.mx-icon-hammer-wench::before {\n content: \"\\e9a9\";\n}\n.mx-icon-filled.mx-icon-hand-down::before {\n content: \"\\e9aa\";\n}\n.mx-icon-filled.mx-icon-hand-left::before {\n content: \"\\e9ab\";\n}\n.mx-icon-filled.mx-icon-hand-right::before {\n content: \"\\e9ac\";\n}\n.mx-icon-filled.mx-icon-hand-up::before {\n content: \"\\e9ad\";\n}\n.mx-icon-filled.mx-icon-handshake-business::before {\n content: \"\\e9ae\";\n}\n.mx-icon-filled.mx-icon-hard-drive::before {\n content: \"\\e9af\";\n}\n.mx-icon-filled.mx-icon-headphones::before {\n content: \"\\e9b0\";\n}\n.mx-icon-filled.mx-icon-headphones-mic::before {\n content: \"\\e9b1\";\n}\n.mx-icon-filled.mx-icon-heart::before {\n content: \"\\e9b2\";\n}\n.mx-icon-filled.mx-icon-hierarchy-files::before {\n content: \"\\e9b3\";\n}\n.mx-icon-filled.mx-icon-home::before {\n content: \"\\e9b4\";\n}\n.mx-icon-filled.mx-icon-hourglass::before {\n content: \"\\e9b5\";\n}\n.mx-icon-filled.mx-icon-hyperlink::before {\n content: \"\\e9b6\";\n}\n.mx-icon-filled.mx-icon-image::before {\n content: \"\\e9b7\";\n}\n.mx-icon-filled.mx-icon-image-collection::before {\n content: \"\\e9b8\";\n}\n.mx-icon-filled.mx-icon-images::before {\n content: \"\\e9b9\";\n}\n.mx-icon-filled.mx-icon-info-circle::before {\n content: \"\\e9ba\";\n}\n.mx-icon-filled.mx-icon-laptop::before {\n content: \"\\e9bb\";\n}\n.mx-icon-filled.mx-icon-layout::before {\n content: \"\\e9bc\";\n}\n.mx-icon-filled.mx-icon-layout-1::before {\n content: \"\\e9bd\";\n}\n.mx-icon-filled.mx-icon-layout-2::before {\n content: \"\\e9be\";\n}\n.mx-icon-filled.mx-icon-layout-column::before {\n content: \"\\e9bf\";\n}\n.mx-icon-filled.mx-icon-layout-horizontal::before {\n content: \"\\e9c0\";\n}\n.mx-icon-filled.mx-icon-layout-list::before {\n content: \"\\e9c1\";\n}\n.mx-icon-filled.mx-icon-layout-rounded::before {\n content: \"\\e9c2\";\n}\n.mx-icon-filled.mx-icon-layout-rounded-1::before {\n content: \"\\e9c3\";\n}\n.mx-icon-filled.mx-icon-leaf::before {\n content: \"\\e9c4\";\n}\n.mx-icon-filled.mx-icon-legal-certificate::before {\n content: \"\\e9c5\";\n}\n.mx-icon-filled.mx-icon-lego-block-stack::before {\n content: \"\\e9c6\";\n}\n.mx-icon-filled.mx-icon-light-bulb-shine::before {\n content: \"\\e9c7\";\n}\n.mx-icon-filled.mx-icon-list-bullets::before {\n content: \"\\e9c8\";\n}\n.mx-icon-filled.mx-icon-location-pin::before {\n content: \"\\e9c9\";\n}\n.mx-icon-filled.mx-icon-lock::before {\n content: \"\\e9ca\";\n}\n.mx-icon-filled.mx-icon-lock-key::before {\n content: \"\\e9cb\";\n}\n.mx-icon-filled.mx-icon-login::before {\n content: \"\\e9cc\";\n}\n.mx-icon-filled.mx-icon-login-1::before {\n content: \"\\e9cd\";\n}\n.mx-icon-filled.mx-icon-login-2::before {\n content: \"\\e9ce\";\n}\n.mx-icon-filled.mx-icon-logout::before {\n content: \"\\e9cf\";\n}\n.mx-icon-filled.mx-icon-logout-1::before {\n content: \"\\e9d0\";\n}\n.mx-icon-filled.mx-icon-luggage-travel::before {\n content: \"\\e9d1\";\n}\n.mx-icon-filled.mx-icon-magnet::before {\n content: \"\\e9d2\";\n}\n.mx-icon-filled.mx-icon-map-location-pin::before {\n content: \"\\e9d3\";\n}\n.mx-icon-filled.mx-icon-martini::before {\n content: \"\\e9d4\";\n}\n.mx-icon-filled.mx-icon-megaphone::before {\n content: \"\\e9d5\";\n}\n.mx-icon-filled.mx-icon-message-bubble::before {\n content: \"\\e9d6\";\n}\n.mx-icon-filled.mx-icon-message-bubble-add::before {\n content: \"\\e9d7\";\n}\n.mx-icon-filled.mx-icon-message-bubble-check::before {\n content: \"\\e9d8\";\n}\n.mx-icon-filled.mx-icon-message-bubble-disable::before {\n content: \"\\e9d9\";\n}\n.mx-icon-filled.mx-icon-message-bubble-edit::before {\n content: \"\\e9da\";\n}\n.mx-icon-filled.mx-icon-message-bubble-information::before {\n content: \"\\e9db\";\n}\n.mx-icon-filled.mx-icon-message-bubble-quotation::before {\n content: \"\\e9dc\";\n}\n.mx-icon-filled.mx-icon-message-bubble-remove::before {\n content: \"\\e9dd\";\n}\n.mx-icon-filled.mx-icon-message-bubble-typing::before {\n content: \"\\e9de\";\n}\n.mx-icon-filled.mx-icon-mobile-phone::before {\n content: \"\\e9df\";\n}\n.mx-icon-filled.mx-icon-modal-window::before {\n content: \"\\e9e0\";\n}\n.mx-icon-filled.mx-icon-monitor::before {\n content: \"\\e9e1\";\n}\n.mx-icon-filled.mx-icon-monitor-camera::before {\n content: \"\\e9e2\";\n}\n.mx-icon-filled.mx-icon-monitor-cash::before {\n content: \"\\e9e3\";\n}\n.mx-icon-filled.mx-icon-monitor-e-learning::before {\n content: \"\\e9e4\";\n}\n.mx-icon-filled.mx-icon-monitor-pie-line-graph::before {\n content: \"\\e9e5\";\n}\n.mx-icon-filled.mx-icon-moon-new::before {\n content: \"\\e9e6\";\n}\n.mx-icon-filled.mx-icon-mountain-flag::before {\n content: \"\\e9e7\";\n}\n.mx-icon-filled.mx-icon-move-down::before {\n content: \"\\e9e8\";\n}\n.mx-icon-filled.mx-icon-move-left::before {\n content: \"\\e9e9\";\n}\n.mx-icon-filled.mx-icon-move-right::before {\n content: \"\\e9ea\";\n}\n.mx-icon-filled.mx-icon-move-up::before {\n content: \"\\e9eb\";\n}\n.mx-icon-filled.mx-icon-music-note::before {\n content: \"\\e9ec\";\n}\n.mx-icon-filled.mx-icon-navigation-menu::before {\n content: \"\\e9ed\";\n}\n.mx-icon-filled.mx-icon-navigation-next::before {\n content: \"\\e9ee\";\n}\n.mx-icon-filled.mx-icon-notes-checklist::before {\n content: \"\\e9ef\";\n}\n.mx-icon-filled.mx-icon-notes-checklist-flip::before {\n content: \"\\e9f0\";\n}\n.mx-icon-filled.mx-icon-notes-paper-edit::before {\n content: \"\\e9f1\";\n}\n.mx-icon-filled.mx-icon-notes-paper-text::before {\n content: \"\\e9f2\";\n}\n.mx-icon-filled.mx-icon-office-sheet::before {\n content: \"\\e9f3\";\n}\n.mx-icon-filled.mx-icon-org-chart::before {\n content: \"\\e9f4\";\n}\n.mx-icon-filled.mx-icon-paper-clipboard::before {\n content: \"\\e9f5\";\n}\n.mx-icon-filled.mx-icon-paper-holder::before {\n content: \"\\e9f6\";\n}\n.mx-icon-filled.mx-icon-paper-holder-full::before {\n content: \"\\e9f7\";\n}\n.mx-icon-filled.mx-icon-paper-list::before {\n content: \"\\e9f8\";\n}\n.mx-icon-filled.mx-icon-paper-plane::before {\n content: \"\\e9f9\";\n}\n.mx-icon-filled.mx-icon-paperclip::before {\n content: \"\\e9fa\";\n}\n.mx-icon-filled.mx-icon-password-lock::before {\n content: \"\\e9fb\";\n}\n.mx-icon-filled.mx-icon-password-type::before {\n content: \"\\e9fc\";\n}\n.mx-icon-filled.mx-icon-paste::before {\n content: \"\\e9fd\";\n}\n.mx-icon-filled.mx-icon-pen-write-paper::before {\n content: \"\\e9fe\";\n}\n.mx-icon-filled.mx-icon-pencil::before {\n content: \"\\e9ff\";\n}\n.mx-icon-filled.mx-icon-pencil-write-paper::before {\n content: \"\\ea00\";\n}\n.mx-icon-filled.mx-icon-performance-graph-calculator::before {\n content: \"\\ea01\";\n}\n.mx-icon-filled.mx-icon-phone::before {\n content: \"\\ea02\";\n}\n.mx-icon-filled.mx-icon-phone-handset::before {\n content: \"\\ea03\";\n}\n.mx-icon-filled.mx-icon-piggy-bank::before {\n content: \"\\ea04\";\n}\n.mx-icon-filled.mx-icon-pin::before {\n content: \"\\ea05\";\n}\n.mx-icon-filled.mx-icon-plane-ticket::before {\n content: \"\\ea06\";\n}\n.mx-icon-filled.mx-icon-play-circle::before {\n content: \"\\ea07\";\n}\n.mx-icon-filled.mx-icon-pound-sterling::before {\n content: \"\\ea08\";\n}\n.mx-icon-filled.mx-icon-power-button::before {\n content: \"\\ea09\";\n}\n.mx-icon-filled.mx-icon-print::before {\n content: \"\\ea0a\";\n}\n.mx-icon-filled.mx-icon-progress-bars::before {\n content: \"\\ea0b\";\n}\n.mx-icon-filled.mx-icon-qr-code::before {\n content: \"\\ea0c\";\n}\n.mx-icon-filled.mx-icon-question-circle::before {\n content: \"\\ea0d\";\n}\n.mx-icon-filled.mx-icon-redo::before {\n content: \"\\ea0e\";\n}\n.mx-icon-filled.mx-icon-refresh::before {\n content: \"\\ea0f\";\n}\n.mx-icon-filled.mx-icon-remove::before {\n content: \"\\ea10\";\n}\n.mx-icon-filled.mx-icon-remove-circle::before {\n content: \"\\ea11\";\n}\n.mx-icon-filled.mx-icon-remove-shield::before {\n content: \"\\ea12\";\n}\n.mx-icon-filled.mx-icon-repeat::before {\n content: \"\\ea13\";\n}\n.mx-icon-filled.mx-icon-resize-full::before {\n content: \"\\ea14\";\n}\n.mx-icon-filled.mx-icon-resize-small::before {\n content: \"\\ea15\";\n}\n.mx-icon-filled.mx-icon-road::before {\n content: \"\\ea16\";\n}\n.mx-icon-filled.mx-icon-robot-head::before {\n content: \"\\ea17\";\n}\n.mx-icon-filled.mx-icon-rss-feed::before {\n content: \"\\ea18\";\n}\n.mx-icon-filled.mx-icon-ruble::before {\n content: \"\\ea19\";\n}\n.mx-icon-filled.mx-icon-scissors::before {\n content: \"\\ea1a\";\n}\n.mx-icon-filled.mx-icon-search::before {\n content: \"\\ea1b\";\n}\n.mx-icon-filled.mx-icon-server::before {\n content: \"\\ea1c\";\n}\n.mx-icon-filled.mx-icon-settings-slider::before {\n content: \"\\ea1d\";\n}\n.mx-icon-filled.mx-icon-settings-slider-1::before {\n content: \"\\ea1e\";\n}\n.mx-icon-filled.mx-icon-share::before {\n content: \"\\ea1f\";\n}\n.mx-icon-filled.mx-icon-share-1::before {\n content: \"\\ea20\";\n}\n.mx-icon-filled.mx-icon-share-arrow::before {\n content: \"\\ea21\";\n}\n.mx-icon-filled.mx-icon-shipment-box::before {\n content: \"\\ea22\";\n}\n.mx-icon-filled.mx-icon-shopping-cart::before {\n content: \"\\ea23\";\n}\n.mx-icon-filled.mx-icon-shopping-cart-full::before {\n content: \"\\ea24\";\n}\n.mx-icon-filled.mx-icon-signal-full::before {\n content: \"\\ea25\";\n}\n.mx-icon-filled.mx-icon-smart-house-garage::before {\n content: \"\\ea26\";\n}\n.mx-icon-filled.mx-icon-smart-watch-circle::before {\n content: \"\\ea27\";\n}\n.mx-icon-filled.mx-icon-smart-watch-square::before {\n content: \"\\ea28\";\n}\n.mx-icon-filled.mx-icon-sort::before {\n content: \"\\ea29\";\n}\n.mx-icon-filled.mx-icon-sort-alphabet-ascending::before {\n content: \"\\ea2a\";\n}\n.mx-icon-filled.mx-icon-sort-alphabet-descending::before {\n content: \"\\ea2b\";\n}\n.mx-icon-filled.mx-icon-sort-ascending::before {\n content: \"\\ea2c\";\n}\n.mx-icon-filled.mx-icon-sort-descending::before {\n content: \"\\ea2d\";\n}\n.mx-icon-filled.mx-icon-sort-numerical-ascending::before {\n content: \"\\ea2e\";\n}\n.mx-icon-filled.mx-icon-sort-numerical-descending::before {\n content: \"\\ea2f\";\n}\n.mx-icon-filled.mx-icon-star::before {\n content: \"\\ea30\";\n}\n.mx-icon-filled.mx-icon-stopwatch::before {\n content: \"\\ea31\";\n}\n.mx-icon-filled.mx-icon-substract::before {\n content: \"\\ea32\";\n}\n.mx-icon-filled.mx-icon-subtract-circle::before {\n content: \"\\ea33\";\n}\n.mx-icon-filled.mx-icon-sun::before {\n content: \"\\ea34\";\n}\n.mx-icon-filled.mx-icon-swap::before {\n content: \"\\ea35\";\n}\n.mx-icon-filled.mx-icon-synchronize-arrow-clock::before {\n content: \"\\ea36\";\n}\n.mx-icon-filled.mx-icon-table-lamp::before {\n content: \"\\ea37\";\n}\n.mx-icon-filled.mx-icon-tablet::before {\n content: \"\\ea38\";\n}\n.mx-icon-filled.mx-icon-tag::before {\n content: \"\\ea39\";\n}\n.mx-icon-filled.mx-icon-tag-group::before {\n content: \"\\ea3a\";\n}\n.mx-icon-filled.mx-icon-task-list-multiple::before {\n content: \"\\ea3b\";\n}\n.mx-icon-filled.mx-icon-text-align-center::before {\n content: \"\\ea3c\";\n}\n.mx-icon-filled.mx-icon-text-align-justify::before {\n content: \"\\ea3d\";\n}\n.mx-icon-filled.mx-icon-text-align-left::before {\n content: \"\\ea3e\";\n}\n.mx-icon-filled.mx-icon-text-align-right::before {\n content: \"\\ea3f\";\n}\n.mx-icon-filled.mx-icon-text-background::before {\n content: \"\\ea40\";\n}\n.mx-icon-filled.mx-icon-text-bold::before {\n content: \"\\ea41\";\n}\n.mx-icon-filled.mx-icon-text-color::before {\n content: \"\\ea42\";\n}\n.mx-icon-filled.mx-icon-text-font::before {\n content: \"\\ea43\";\n}\n.mx-icon-filled.mx-icon-text-header::before {\n content: \"\\ea44\";\n}\n.mx-icon-filled.mx-icon-text-height::before {\n content: \"\\ea45\";\n}\n.mx-icon-filled.mx-icon-text-indent-left::before {\n content: \"\\ea46\";\n}\n.mx-icon-filled.mx-icon-text-indent-right::before {\n content: \"\\ea47\";\n}\n.mx-icon-filled.mx-icon-text-italic::before {\n content: \"\\ea48\";\n}\n.mx-icon-filled.mx-icon-text-size::before {\n content: \"\\ea49\";\n}\n.mx-icon-filled.mx-icon-text-subscript::before {\n content: \"\\ea4a\";\n}\n.mx-icon-filled.mx-icon-text-superscript::before {\n content: \"\\ea4b\";\n}\n.mx-icon-filled.mx-icon-text-width::before {\n content: \"\\ea4c\";\n}\n.mx-icon-filled.mx-icon-three-dots-menu-horizontal::before {\n content: \"\\ea4d\";\n}\n.mx-icon-filled.mx-icon-three-dots-menu-vertical::before {\n content: \"\\ea4e\";\n}\n.mx-icon-filled.mx-icon-thumbs-down::before {\n content: \"\\ea4f\";\n}\n.mx-icon-filled.mx-icon-thumbs-up::before {\n content: \"\\ea50\";\n}\n.mx-icon-filled.mx-icon-time-clock::before {\n content: \"\\ea51\";\n}\n.mx-icon-filled.mx-icon-tint::before {\n content: \"\\ea52\";\n}\n.mx-icon-filled.mx-icon-trash-can::before {\n content: \"\\ea53\";\n}\n.mx-icon-filled.mx-icon-tree::before {\n content: \"\\ea54\";\n}\n.mx-icon-filled.mx-icon-trophy::before {\n content: \"\\ea55\";\n}\n.mx-icon-filled.mx-icon-ui-webpage-slider::before {\n content: \"\\ea56\";\n}\n.mx-icon-filled.mx-icon-unchecked::before {\n content: \"\\ea57\";\n}\n.mx-icon-filled.mx-icon-undo::before {\n content: \"\\ea58\";\n}\n.mx-icon-filled.mx-icon-unlock::before {\n content: \"\\ea59\";\n}\n.mx-icon-filled.mx-icon-upload-bottom::before {\n content: \"\\ea5a\";\n}\n.mx-icon-filled.mx-icon-upload-button::before {\n content: \"\\ea5b\";\n}\n.mx-icon-filled.mx-icon-user::before {\n content: \"\\ea5c\";\n}\n.mx-icon-filled.mx-icon-user-3d-box::before {\n content: \"\\ea5d\";\n}\n.mx-icon-filled.mx-icon-user-man::before {\n content: \"\\ea5e\";\n}\n.mx-icon-filled.mx-icon-user-neutral-group::before {\n content: \"\\ea5f\";\n}\n.mx-icon-filled.mx-icon-user-neutral-pair::before {\n content: \"\\ea60\";\n}\n.mx-icon-filled.mx-icon-user-neutral-shield::before {\n content: \"\\ea61\";\n}\n.mx-icon-filled.mx-icon-user-neutral-sync::before {\n content: \"\\ea62\";\n}\n.mx-icon-filled.mx-icon-user-pair::before {\n content: \"\\ea63\";\n}\n.mx-icon-filled.mx-icon-user-woman::before {\n content: \"\\ea64\";\n}\n.mx-icon-filled.mx-icon-video-camera::before {\n content: \"\\ea65\";\n}\n.mx-icon-filled.mx-icon-view::before {\n content: \"\\ea66\";\n}\n.mx-icon-filled.mx-icon-view-off::before {\n content: \"\\ea67\";\n}\n.mx-icon-filled.mx-icon-wheat::before {\n content: \"\\ea68\";\n}\n.mx-icon-filled.mx-icon-whiteboard::before {\n content: \"\\ea69\";\n}\n.mx-icon-filled.mx-icon-wrench::before {\n content: \"\\ea6a\";\n}\n.mx-icon-filled.mx-icon-yen::before {\n content: \"\\ea6b\";\n}\n.mx-icon-filled.mx-icon-zoom-in::before {\n content: \"\\ea6c\";\n}\n.mx-icon-filled.mx-icon-zoom-out::before {\n content: \"\\ea6d\";\n}\n","@font-face {\n font-family: \"Atlas_Core$Atlas\";\n src: url(\"./fonts/Atlas_Core$Atlas.ttf\") format(\"truetype\");\n}\n.mx-icon-lined {\n display: inline-block;\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n font-family: \"Atlas_Core$Atlas\";\n}\n.mx-icon-lined.mx-icon-add::before {\n content: \"\\e900\";\n}\n.mx-icon-lined.mx-icon-add-circle::before {\n content: \"\\e901\";\n}\n.mx-icon-lined.mx-icon-airplane::before {\n content: \"\\e902\";\n}\n.mx-icon-lined.mx-icon-alarm-bell::before {\n content: \"\\e903\";\n}\n.mx-icon-lined.mx-icon-alarm-bell-off::before {\n content: \"\\e904\";\n}\n.mx-icon-lined.mx-icon-alert-circle::before {\n content: \"\\e905\";\n}\n.mx-icon-lined.mx-icon-alert-triangle::before {\n content: \"\\e906\";\n}\n.mx-icon-lined.mx-icon-align-bottom::before {\n content: \"\\e907\";\n}\n.mx-icon-lined.mx-icon-align-center::before {\n content: \"\\e908\";\n}\n.mx-icon-lined.mx-icon-align-left::before {\n content: \"\\e909\";\n}\n.mx-icon-lined.mx-icon-align-middle::before {\n content: \"\\e90a\";\n}\n.mx-icon-lined.mx-icon-align-right::before {\n content: \"\\e90b\";\n}\n.mx-icon-lined.mx-icon-align-top::before {\n content: \"\\e90c\";\n}\n.mx-icon-lined.mx-icon-analytics-bars::before {\n content: \"\\e90d\";\n}\n.mx-icon-lined.mx-icon-analytics-graph-bar::before {\n content: \"\\e90e\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-down::before {\n content: \"\\e90f\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-left::before {\n content: \"\\e910\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-right::before {\n content: \"\\e911\";\n}\n.mx-icon-lined.mx-icon-arrow-circle-up::before {\n content: \"\\e912\";\n}\n.mx-icon-lined.mx-icon-arrow-down::before {\n content: \"\\e913\";\n}\n.mx-icon-lined.mx-icon-arrow-left::before {\n content: \"\\e914\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-down::before {\n content: \"\\e915\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-left::before {\n content: \"\\e916\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-right::before {\n content: \"\\e917\";\n}\n.mx-icon-lined.mx-icon-arrow-narrow-up::before {\n content: \"\\e918\";\n}\n.mx-icon-lined.mx-icon-arrow-right::before {\n content: \"\\e919\";\n}\n.mx-icon-lined.mx-icon-arrow-square-down::before {\n content: \"\\e91a\";\n}\n.mx-icon-lined.mx-icon-arrow-square-left::before {\n content: \"\\e91b\";\n}\n.mx-icon-lined.mx-icon-arrow-square-right::before {\n content: \"\\e91c\";\n}\n.mx-icon-lined.mx-icon-arrow-square-up::before {\n content: \"\\e91d\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-down::before {\n content: \"\\e91e\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-left::before {\n content: \"\\e91f\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-right::before {\n content: \"\\e920\";\n}\n.mx-icon-lined.mx-icon-arrow-thick-up::before {\n content: \"\\e921\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-down::before {\n content: \"\\e922\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-left::before {\n content: \"\\e923\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-right::before {\n content: \"\\e924\";\n}\n.mx-icon-lined.mx-icon-arrow-triangle-up::before {\n content: \"\\e925\";\n}\n.mx-icon-lined.mx-icon-arrow-up::before {\n content: \"\\e926\";\n}\n.mx-icon-lined.mx-icon-arrows-retweet::before {\n content: \"\\e927\";\n}\n.mx-icon-lined.mx-icon-asterisk::before {\n content: \"\\e928\";\n}\n.mx-icon-lined.mx-icon-badge::before {\n content: \"\\e929\";\n}\n.mx-icon-lined.mx-icon-barcode::before {\n content: \"\\e92a\";\n}\n.mx-icon-lined.mx-icon-binoculars::before {\n content: \"\\e92b\";\n}\n.mx-icon-lined.mx-icon-bitcoin::before {\n content: \"\\e92c\";\n}\n.mx-icon-lined.mx-icon-blocks::before {\n content: \"\\e92d\";\n}\n.mx-icon-lined.mx-icon-book-closed::before {\n content: \"\\e92e\";\n}\n.mx-icon-lined.mx-icon-book-open::before {\n content: \"\\e92f\";\n}\n.mx-icon-lined.mx-icon-bookmark::before {\n content: \"\\e930\";\n}\n.mx-icon-lined.mx-icon-briefcase::before {\n content: \"\\e931\";\n}\n.mx-icon-lined.mx-icon-browser::before {\n content: \"\\e932\";\n}\n.mx-icon-lined.mx-icon-browser-code::before {\n content: \"\\e933\";\n}\n.mx-icon-lined.mx-icon-browser-page-text::before {\n content: \"\\e934\";\n}\n.mx-icon-lined.mx-icon-browser-search::before {\n content: \"\\e935\";\n}\n.mx-icon-lined.mx-icon-browser-trophy::before {\n content: \"\\e936\";\n}\n.mx-icon-lined.mx-icon-calendar::before {\n content: \"\\e937\";\n}\n.mx-icon-lined.mx-icon-calendar-1::before {\n content: \"\\e938\";\n}\n.mx-icon-lined.mx-icon-camera::before {\n content: \"\\e939\";\n}\n.mx-icon-lined.mx-icon-camping-tent::before {\n content: \"\\e93a\";\n}\n.mx-icon-lined.mx-icon-cash-payment-bill::before {\n content: \"\\e93b\";\n}\n.mx-icon-lined.mx-icon-cash-payment-bill-2::before {\n content: \"\\e93c\";\n}\n.mx-icon-lined.mx-icon-cd::before {\n content: \"\\e93d\";\n}\n.mx-icon-lined.mx-icon-charger::before {\n content: \"\\e93e\";\n}\n.mx-icon-lined.mx-icon-checkmark::before {\n content: \"\\e93f\";\n}\n.mx-icon-lined.mx-icon-checkmark-circle::before {\n content: \"\\e940\";\n}\n.mx-icon-lined.mx-icon-checkmark-shield::before {\n content: \"\\e941\";\n}\n.mx-icon-lined.mx-icon-checkmark-square::before {\n content: \"\\e942\";\n}\n.mx-icon-lined.mx-icon-chevron-down::before {\n content: \"\\e943\";\n}\n.mx-icon-lined.mx-icon-chevron-left::before {\n content: \"\\e944\";\n}\n.mx-icon-lined.mx-icon-chevron-right::before {\n content: \"\\e945\";\n}\n.mx-icon-lined.mx-icon-chevron-up::before {\n content: \"\\e946\";\n}\n.mx-icon-lined.mx-icon-cloud::before {\n content: \"\\e947\";\n}\n.mx-icon-lined.mx-icon-cloud-check::before {\n content: \"\\e948\";\n}\n.mx-icon-lined.mx-icon-cloud-data-transfer::before {\n content: \"\\e949\";\n}\n.mx-icon-lined.mx-icon-cloud-disable::before {\n content: \"\\e94a\";\n}\n.mx-icon-lined.mx-icon-cloud-download::before {\n content: \"\\e94b\";\n}\n.mx-icon-lined.mx-icon-cloud-lock::before {\n content: \"\\e94c\";\n}\n.mx-icon-lined.mx-icon-cloud-off::before {\n content: \"\\e94d\";\n}\n.mx-icon-lined.mx-icon-cloud-refresh::before {\n content: \"\\e94e\";\n}\n.mx-icon-lined.mx-icon-cloud-remove::before {\n content: \"\\e94f\";\n}\n.mx-icon-lined.mx-icon-cloud-search::before {\n content: \"\\e950\";\n}\n.mx-icon-lined.mx-icon-cloud-settings::before {\n content: \"\\e951\";\n}\n.mx-icon-lined.mx-icon-cloud-subtract::before {\n content: \"\\e952\";\n}\n.mx-icon-lined.mx-icon-cloud-sync::before {\n content: \"\\e953\";\n}\n.mx-icon-lined.mx-icon-cloud-upload::before {\n content: \"\\e954\";\n}\n.mx-icon-lined.mx-icon-cloud-warning::before {\n content: \"\\e955\";\n}\n.mx-icon-lined.mx-icon-cog::before {\n content: \"\\e956\";\n}\n.mx-icon-lined.mx-icon-cog-hand-give::before {\n content: \"\\e957\";\n}\n.mx-icon-lined.mx-icon-cog-play::before {\n content: \"\\e958\";\n}\n.mx-icon-lined.mx-icon-cog-shield::before {\n content: \"\\e959\";\n}\n.mx-icon-lined.mx-icon-color-bucket-brush::before {\n content: \"\\e95a\";\n}\n.mx-icon-lined.mx-icon-color-painting-palette::before {\n content: \"\\e95b\";\n}\n.mx-icon-lined.mx-icon-compass-directions::before {\n content: \"\\e95c\";\n}\n.mx-icon-lined.mx-icon-compressed::before {\n content: \"\\e95d\";\n}\n.mx-icon-lined.mx-icon-computer-chip::before {\n content: \"\\e95e\";\n}\n.mx-icon-lined.mx-icon-connect::before {\n content: \"\\e95f\";\n}\n.mx-icon-lined.mx-icon-connect-1::before {\n content: \"\\e960\";\n}\n.mx-icon-lined.mx-icon-console-terminal::before {\n content: \"\\e961\";\n}\n.mx-icon-lined.mx-icon-contacts::before {\n content: \"\\e962\";\n}\n.mx-icon-lined.mx-icon-contrast::before {\n content: \"\\e963\";\n}\n.mx-icon-lined.mx-icon-controls-backward::before {\n content: \"\\e964\";\n}\n.mx-icon-lined.mx-icon-controls-eject::before {\n content: \"\\e965\";\n}\n.mx-icon-lined.mx-icon-controls-fast-backward::before {\n content: \"\\e966\";\n}\n.mx-icon-lined.mx-icon-controls-fast-forward::before {\n content: \"\\e967\";\n}\n.mx-icon-lined.mx-icon-controls-forward::before {\n content: \"\\e968\";\n}\n.mx-icon-lined.mx-icon-controls-pause::before {\n content: \"\\e969\";\n}\n.mx-icon-lined.mx-icon-controls-play::before {\n content: \"\\e96a\";\n}\n.mx-icon-lined.mx-icon-controls-record::before {\n content: \"\\e96b\";\n}\n.mx-icon-lined.mx-icon-controls-shuffle::before {\n content: \"\\e96c\";\n}\n.mx-icon-lined.mx-icon-controls-step-backward::before {\n content: \"\\e96d\";\n}\n.mx-icon-lined.mx-icon-controls-step-forward::before {\n content: \"\\e96e\";\n}\n.mx-icon-lined.mx-icon-controls-stop::before {\n content: \"\\e96f\";\n}\n.mx-icon-lined.mx-icon-controls-volume-full::before {\n content: \"\\e970\";\n}\n.mx-icon-lined.mx-icon-controls-volume-low::before {\n content: \"\\e971\";\n}\n.mx-icon-lined.mx-icon-controls-volume-off::before {\n content: \"\\e972\";\n}\n.mx-icon-lined.mx-icon-conversation-question-warning::before {\n content: \"\\e973\";\n}\n.mx-icon-lined.mx-icon-copy::before {\n content: \"\\e974\";\n}\n.mx-icon-lined.mx-icon-credit-card::before {\n content: \"\\e975\";\n}\n.mx-icon-lined.mx-icon-crossroad-sign::before {\n content: \"\\e976\";\n}\n.mx-icon-lined.mx-icon-cube::before {\n content: \"\\e977\";\n}\n.mx-icon-lined.mx-icon-cutlery::before {\n content: \"\\e978\";\n}\n.mx-icon-lined.mx-icon-dashboard::before {\n content: \"\\e979\";\n}\n.mx-icon-lined.mx-icon-data-transfer::before {\n content: \"\\e97a\";\n}\n.mx-icon-lined.mx-icon-desktop::before {\n content: \"\\e97b\";\n}\n.mx-icon-lined.mx-icon-diamond::before {\n content: \"\\e97c\";\n}\n.mx-icon-lined.mx-icon-direction-buttons::before {\n content: \"\\e97d\";\n}\n.mx-icon-lined.mx-icon-direction-buttons-arrows::before {\n content: \"\\e97e\";\n}\n.mx-icon-lined.mx-icon-disable::before {\n content: \"\\e97f\";\n}\n.mx-icon-lined.mx-icon-document::before {\n content: \"\\e980\";\n}\n.mx-icon-lined.mx-icon-document-open::before {\n content: \"\\e981\";\n}\n.mx-icon-lined.mx-icon-document-save::before {\n content: \"\\e982\";\n}\n.mx-icon-lined.mx-icon-dollar::before {\n content: \"\\e983\";\n}\n.mx-icon-lined.mx-icon-double-bed::before {\n content: \"\\e984\";\n}\n.mx-icon-lined.mx-icon-double-chevron-left::before {\n content: \"\\e985\";\n}\n.mx-icon-lined.mx-icon-double-chevron-right::before {\n content: \"\\e986\";\n}\n.mx-icon-lined.mx-icon-download-bottom::before {\n content: \"\\e987\";\n}\n.mx-icon-lined.mx-icon-download-button::before {\n content: \"\\e988\";\n}\n.mx-icon-lined.mx-icon-duplicate::before {\n content: \"\\e989\";\n}\n.mx-icon-lined.mx-icon-email::before {\n content: \"\\e98a\";\n}\n.mx-icon-lined.mx-icon-equalizer::before {\n content: \"\\e98b\";\n}\n.mx-icon-lined.mx-icon-eraser::before {\n content: \"\\e98c\";\n}\n.mx-icon-lined.mx-icon-euro::before {\n content: \"\\e98d\";\n}\n.mx-icon-lined.mx-icon-expand-horizontal::before {\n content: \"\\e98e\";\n}\n.mx-icon-lined.mx-icon-expand-vertical::before {\n content: \"\\e98f\";\n}\n.mx-icon-lined.mx-icon-external::before {\n content: \"\\e990\";\n}\n.mx-icon-lined.mx-icon-file-pdf::before {\n content: \"\\e991\";\n}\n.mx-icon-lined.mx-icon-file-zip::before {\n content: \"\\e992\";\n}\n.mx-icon-lined.mx-icon-film::before {\n content: \"\\e993\";\n}\n.mx-icon-lined.mx-icon-filter::before {\n content: \"\\e994\";\n}\n.mx-icon-lined.mx-icon-fire::before {\n content: \"\\e995\";\n}\n.mx-icon-lined.mx-icon-flag::before {\n content: \"\\e996\";\n}\n.mx-icon-lined.mx-icon-flash::before {\n content: \"\\e997\";\n}\n.mx-icon-lined.mx-icon-floppy-disk::before {\n content: \"\\e998\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-arrow-down::before {\n content: \"\\e999\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-arrow-up::before {\n content: \"\\e99a\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-checkmark::before {\n content: \"\\e99b\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-group::before {\n content: \"\\e99c\";\n}\n.mx-icon-lined.mx-icon-floppy-disk-remove::before {\n content: \"\\e99d\";\n}\n.mx-icon-lined.mx-icon-folder-closed::before {\n content: \"\\e99e\";\n}\n.mx-icon-lined.mx-icon-folder-open::before {\n content: \"\\e99f\";\n}\n.mx-icon-lined.mx-icon-folder-upload::before {\n content: \"\\e9a0\";\n}\n.mx-icon-lined.mx-icon-fruit-apple::before {\n content: \"\\e9a1\";\n}\n.mx-icon-lined.mx-icon-fullscreen::before {\n content: \"\\e9a2\";\n}\n.mx-icon-lined.mx-icon-gift::before {\n content: \"\\e9a3\";\n}\n.mx-icon-lined.mx-icon-github::before {\n content: \"\\e9a4\";\n}\n.mx-icon-lined.mx-icon-globe::before {\n content: \"\\e9a5\";\n}\n.mx-icon-lined.mx-icon-globe-1::before {\n content: \"\\e9a6\";\n}\n.mx-icon-lined.mx-icon-graduation-hat::before {\n content: \"\\e9a7\";\n}\n.mx-icon-lined.mx-icon-hammer::before {\n content: \"\\e9a8\";\n}\n.mx-icon-lined.mx-icon-hammer-wench::before {\n content: \"\\e9a9\";\n}\n.mx-icon-lined.mx-icon-hand-down::before {\n content: \"\\e9aa\";\n}\n.mx-icon-lined.mx-icon-hand-left::before {\n content: \"\\e9ab\";\n}\n.mx-icon-lined.mx-icon-hand-right::before {\n content: \"\\e9ac\";\n}\n.mx-icon-lined.mx-icon-hand-up::before {\n content: \"\\e9ad\";\n}\n.mx-icon-lined.mx-icon-handshake-business::before {\n content: \"\\e9ae\";\n}\n.mx-icon-lined.mx-icon-hard-drive::before {\n content: \"\\e9af\";\n}\n.mx-icon-lined.mx-icon-headphones::before {\n content: \"\\e9b0\";\n}\n.mx-icon-lined.mx-icon-headphones-mic::before {\n content: \"\\e9b1\";\n}\n.mx-icon-lined.mx-icon-heart::before {\n content: \"\\e9b2\";\n}\n.mx-icon-lined.mx-icon-hierarchy-files::before {\n content: \"\\e9b3\";\n}\n.mx-icon-lined.mx-icon-home::before {\n content: \"\\e9b4\";\n}\n.mx-icon-lined.mx-icon-hourglass::before {\n content: \"\\e9b5\";\n}\n.mx-icon-lined.mx-icon-hyperlink::before {\n content: \"\\e9b6\";\n}\n.mx-icon-lined.mx-icon-image::before {\n content: \"\\e9b7\";\n}\n.mx-icon-lined.mx-icon-image-collection::before {\n content: \"\\e9b8\";\n}\n.mx-icon-lined.mx-icon-images::before {\n content: \"\\e9b9\";\n}\n.mx-icon-lined.mx-icon-info-circle::before {\n content: \"\\e9ba\";\n}\n.mx-icon-lined.mx-icon-laptop::before {\n content: \"\\e9bb\";\n}\n.mx-icon-lined.mx-icon-layout::before {\n content: \"\\e9bc\";\n}\n.mx-icon-lined.mx-icon-layout-1::before {\n content: \"\\e9bd\";\n}\n.mx-icon-lined.mx-icon-layout-2::before {\n content: \"\\e9be\";\n}\n.mx-icon-lined.mx-icon-layout-column::before {\n content: \"\\e9bf\";\n}\n.mx-icon-lined.mx-icon-layout-horizontal::before {\n content: \"\\e9c0\";\n}\n.mx-icon-lined.mx-icon-layout-list::before {\n content: \"\\e9c1\";\n}\n.mx-icon-lined.mx-icon-layout-rounded::before {\n content: \"\\e9c2\";\n}\n.mx-icon-lined.mx-icon-layout-rounded-1::before {\n content: \"\\e9c3\";\n}\n.mx-icon-lined.mx-icon-leaf::before {\n content: \"\\e9c4\";\n}\n.mx-icon-lined.mx-icon-legal-certificate::before {\n content: \"\\e9c5\";\n}\n.mx-icon-lined.mx-icon-lego-block-stack::before {\n content: \"\\e9c6\";\n}\n.mx-icon-lined.mx-icon-light-bulb-shine::before {\n content: \"\\e9c7\";\n}\n.mx-icon-lined.mx-icon-list-bullets::before {\n content: \"\\e9c8\";\n}\n.mx-icon-lined.mx-icon-location-pin::before {\n content: \"\\e9c9\";\n}\n.mx-icon-lined.mx-icon-lock::before {\n content: \"\\e9ca\";\n}\n.mx-icon-lined.mx-icon-lock-key::before {\n content: \"\\e9cb\";\n}\n.mx-icon-lined.mx-icon-login::before {\n content: \"\\e9cc\";\n}\n.mx-icon-lined.mx-icon-login-1::before {\n content: \"\\e9cd\";\n}\n.mx-icon-lined.mx-icon-login-2::before {\n content: \"\\e9ce\";\n}\n.mx-icon-lined.mx-icon-logout::before {\n content: \"\\e9cf\";\n}\n.mx-icon-lined.mx-icon-logout-1::before {\n content: \"\\e9d0\";\n}\n.mx-icon-lined.mx-icon-luggage-travel::before {\n content: \"\\e9d1\";\n}\n.mx-icon-lined.mx-icon-magnet::before {\n content: \"\\e9d2\";\n}\n.mx-icon-lined.mx-icon-map-location-pin::before {\n content: \"\\e9d3\";\n}\n.mx-icon-lined.mx-icon-martini::before {\n content: \"\\e9d4\";\n}\n.mx-icon-lined.mx-icon-megaphone::before {\n content: \"\\e9d5\";\n}\n.mx-icon-lined.mx-icon-message-bubble::before {\n content: \"\\e9d6\";\n}\n.mx-icon-lined.mx-icon-message-bubble-add::before {\n content: \"\\e9d7\";\n}\n.mx-icon-lined.mx-icon-message-bubble-check::before {\n content: \"\\e9d8\";\n}\n.mx-icon-lined.mx-icon-message-bubble-disable::before {\n content: \"\\e9d9\";\n}\n.mx-icon-lined.mx-icon-message-bubble-edit::before {\n content: \"\\e9da\";\n}\n.mx-icon-lined.mx-icon-message-bubble-information::before {\n content: \"\\e9db\";\n}\n.mx-icon-lined.mx-icon-message-bubble-quotation::before {\n content: \"\\e9dc\";\n}\n.mx-icon-lined.mx-icon-message-bubble-remove::before {\n content: \"\\e9dd\";\n}\n.mx-icon-lined.mx-icon-message-bubble-typing::before {\n content: \"\\e9de\";\n}\n.mx-icon-lined.mx-icon-mobile-phone::before {\n content: \"\\e9df\";\n}\n.mx-icon-lined.mx-icon-modal-window::before {\n content: \"\\e9e0\";\n}\n.mx-icon-lined.mx-icon-monitor::before {\n content: \"\\e9e1\";\n}\n.mx-icon-lined.mx-icon-monitor-camera::before {\n content: \"\\e9e2\";\n}\n.mx-icon-lined.mx-icon-monitor-cash::before {\n content: \"\\e9e3\";\n}\n.mx-icon-lined.mx-icon-monitor-e-learning::before {\n content: \"\\e9e4\";\n}\n.mx-icon-lined.mx-icon-monitor-pie-line-graph::before {\n content: \"\\e9e5\";\n}\n.mx-icon-lined.mx-icon-moon-new::before {\n content: \"\\e9e6\";\n}\n.mx-icon-lined.mx-icon-mountain-flag::before {\n content: \"\\e9e7\";\n}\n.mx-icon-lined.mx-icon-move-down::before {\n content: \"\\e9e8\";\n}\n.mx-icon-lined.mx-icon-move-left::before {\n content: \"\\e9e9\";\n}\n.mx-icon-lined.mx-icon-move-right::before {\n content: \"\\e9ea\";\n}\n.mx-icon-lined.mx-icon-move-up::before {\n content: \"\\e9eb\";\n}\n.mx-icon-lined.mx-icon-music-note::before {\n content: \"\\e9ec\";\n}\n.mx-icon-lined.mx-icon-navigation-menu::before {\n content: \"\\e9ed\";\n}\n.mx-icon-lined.mx-icon-navigation-next::before {\n content: \"\\e9ee\";\n}\n.mx-icon-lined.mx-icon-notes-checklist::before {\n content: \"\\e9ef\";\n}\n.mx-icon-lined.mx-icon-notes-checklist-flip::before {\n content: \"\\e9f0\";\n}\n.mx-icon-lined.mx-icon-notes-paper-edit::before {\n content: \"\\e9f1\";\n}\n.mx-icon-lined.mx-icon-notes-paper-text::before {\n content: \"\\e9f2\";\n}\n.mx-icon-lined.mx-icon-office-sheet::before {\n content: \"\\e9f3\";\n}\n.mx-icon-lined.mx-icon-org-chart::before {\n content: \"\\e9f4\";\n}\n.mx-icon-lined.mx-icon-paper-clipboard::before {\n content: \"\\e9f5\";\n}\n.mx-icon-lined.mx-icon-paper-holder::before {\n content: \"\\e9f6\";\n}\n.mx-icon-lined.mx-icon-paper-holder-full::before {\n content: \"\\e9f7\";\n}\n.mx-icon-lined.mx-icon-paper-list::before {\n content: \"\\e9f8\";\n}\n.mx-icon-lined.mx-icon-paper-plane::before {\n content: \"\\e9f9\";\n}\n.mx-icon-lined.mx-icon-paperclip::before {\n content: \"\\e9fa\";\n}\n.mx-icon-lined.mx-icon-password-lock::before {\n content: \"\\e9fb\";\n}\n.mx-icon-lined.mx-icon-password-type::before {\n content: \"\\e9fc\";\n}\n.mx-icon-lined.mx-icon-paste::before {\n content: \"\\e9fd\";\n}\n.mx-icon-lined.mx-icon-pen-write-paper::before {\n content: \"\\e9fe\";\n}\n.mx-icon-lined.mx-icon-pencil::before {\n content: \"\\e9ff\";\n}\n.mx-icon-lined.mx-icon-pencil-write-paper::before {\n content: \"\\ea00\";\n}\n.mx-icon-lined.mx-icon-performance-graph-calculator::before {\n content: \"\\ea01\";\n}\n.mx-icon-lined.mx-icon-phone::before {\n content: \"\\ea02\";\n}\n.mx-icon-lined.mx-icon-phone-handset::before {\n content: \"\\ea03\";\n}\n.mx-icon-lined.mx-icon-piggy-bank::before {\n content: \"\\ea04\";\n}\n.mx-icon-lined.mx-icon-pin::before {\n content: \"\\ea05\";\n}\n.mx-icon-lined.mx-icon-plane-ticket::before {\n content: \"\\ea06\";\n}\n.mx-icon-lined.mx-icon-play-circle::before {\n content: \"\\ea07\";\n}\n.mx-icon-lined.mx-icon-pound-sterling::before {\n content: \"\\ea08\";\n}\n.mx-icon-lined.mx-icon-power-button::before {\n content: \"\\ea09\";\n}\n.mx-icon-lined.mx-icon-print::before {\n content: \"\\ea0a\";\n}\n.mx-icon-lined.mx-icon-progress-bars::before {\n content: \"\\ea0b\";\n}\n.mx-icon-lined.mx-icon-qr-code::before {\n content: \"\\ea0c\";\n}\n.mx-icon-lined.mx-icon-question-circle::before {\n content: \"\\ea0d\";\n}\n.mx-icon-lined.mx-icon-redo::before {\n content: \"\\ea0e\";\n}\n.mx-icon-lined.mx-icon-refresh::before {\n content: \"\\ea0f\";\n}\n.mx-icon-lined.mx-icon-remove::before {\n content: \"\\ea10\";\n}\n.mx-icon-lined.mx-icon-remove-circle::before {\n content: \"\\ea11\";\n}\n.mx-icon-lined.mx-icon-remove-shield::before {\n content: \"\\ea12\";\n}\n.mx-icon-lined.mx-icon-repeat::before {\n content: \"\\ea13\";\n}\n.mx-icon-lined.mx-icon-resize-full::before {\n content: \"\\ea14\";\n}\n.mx-icon-lined.mx-icon-resize-small::before {\n content: \"\\ea15\";\n}\n.mx-icon-lined.mx-icon-road::before {\n content: \"\\ea16\";\n}\n.mx-icon-lined.mx-icon-robot-head::before {\n content: \"\\ea17\";\n}\n.mx-icon-lined.mx-icon-rss-feed::before {\n content: \"\\ea18\";\n}\n.mx-icon-lined.mx-icon-ruble::before {\n content: \"\\ea19\";\n}\n.mx-icon-lined.mx-icon-scissors::before {\n content: \"\\ea1a\";\n}\n.mx-icon-lined.mx-icon-search::before {\n content: \"\\ea1b\";\n}\n.mx-icon-lined.mx-icon-server::before {\n content: \"\\ea1c\";\n}\n.mx-icon-lined.mx-icon-settings-slider::before {\n content: \"\\ea1d\";\n}\n.mx-icon-lined.mx-icon-settings-slider-1::before {\n content: \"\\ea1e\";\n}\n.mx-icon-lined.mx-icon-share::before {\n content: \"\\ea1f\";\n}\n.mx-icon-lined.mx-icon-share-1::before {\n content: \"\\ea20\";\n}\n.mx-icon-lined.mx-icon-share-arrow::before {\n content: \"\\ea21\";\n}\n.mx-icon-lined.mx-icon-shipment-box::before {\n content: \"\\ea22\";\n}\n.mx-icon-lined.mx-icon-shopping-cart::before {\n content: \"\\ea23\";\n}\n.mx-icon-lined.mx-icon-shopping-cart-full::before {\n content: \"\\ea24\";\n}\n.mx-icon-lined.mx-icon-signal-full::before {\n content: \"\\ea25\";\n}\n.mx-icon-lined.mx-icon-smart-house-garage::before {\n content: \"\\ea26\";\n}\n.mx-icon-lined.mx-icon-smart-watch-circle::before {\n content: \"\\ea27\";\n}\n.mx-icon-lined.mx-icon-smart-watch-square::before {\n content: \"\\ea28\";\n}\n.mx-icon-lined.mx-icon-sort::before {\n content: \"\\ea29\";\n}\n.mx-icon-lined.mx-icon-sort-alphabet-ascending::before {\n content: \"\\ea2a\";\n}\n.mx-icon-lined.mx-icon-sort-alphabet-descending::before {\n content: \"\\ea2b\";\n}\n.mx-icon-lined.mx-icon-sort-ascending::before {\n content: \"\\ea2c\";\n}\n.mx-icon-lined.mx-icon-sort-descending::before {\n content: \"\\ea2d\";\n}\n.mx-icon-lined.mx-icon-sort-numerical-ascending::before {\n content: \"\\ea2e\";\n}\n.mx-icon-lined.mx-icon-sort-numerical-descending::before {\n content: \"\\ea2f\";\n}\n.mx-icon-lined.mx-icon-star::before {\n content: \"\\ea30\";\n}\n.mx-icon-lined.mx-icon-stopwatch::before {\n content: \"\\ea31\";\n}\n.mx-icon-lined.mx-icon-substract::before {\n content: \"\\ea32\";\n}\n.mx-icon-lined.mx-icon-subtract-circle::before {\n content: \"\\ea33\";\n}\n.mx-icon-lined.mx-icon-sun::before {\n content: \"\\ea34\";\n}\n.mx-icon-lined.mx-icon-swap::before {\n content: \"\\ea35\";\n}\n.mx-icon-lined.mx-icon-synchronize-arrow-clock::before {\n content: \"\\ea36\";\n}\n.mx-icon-lined.mx-icon-table-lamp::before {\n content: \"\\ea37\";\n}\n.mx-icon-lined.mx-icon-tablet::before {\n content: \"\\ea38\";\n}\n.mx-icon-lined.mx-icon-tag::before {\n content: \"\\ea39\";\n}\n.mx-icon-lined.mx-icon-tag-group::before {\n content: \"\\ea3a\";\n}\n.mx-icon-lined.mx-icon-task-list-multiple::before {\n content: \"\\ea3b\";\n}\n.mx-icon-lined.mx-icon-text-align-center::before {\n content: \"\\ea3c\";\n}\n.mx-icon-lined.mx-icon-text-align-justify::before {\n content: \"\\ea3d\";\n}\n.mx-icon-lined.mx-icon-text-align-left::before {\n content: \"\\ea3e\";\n}\n.mx-icon-lined.mx-icon-text-align-right::before {\n content: \"\\ea3f\";\n}\n.mx-icon-lined.mx-icon-text-background::before {\n content: \"\\ea40\";\n}\n.mx-icon-lined.mx-icon-text-bold::before {\n content: \"\\ea41\";\n}\n.mx-icon-lined.mx-icon-text-color::before {\n content: \"\\ea42\";\n}\n.mx-icon-lined.mx-icon-text-font::before {\n content: \"\\ea43\";\n}\n.mx-icon-lined.mx-icon-text-header::before {\n content: \"\\ea44\";\n}\n.mx-icon-lined.mx-icon-text-height::before {\n content: \"\\ea45\";\n}\n.mx-icon-lined.mx-icon-text-indent-left::before {\n content: \"\\ea46\";\n}\n.mx-icon-lined.mx-icon-text-indent-right::before {\n content: \"\\ea47\";\n}\n.mx-icon-lined.mx-icon-text-italic::before {\n content: \"\\ea48\";\n}\n.mx-icon-lined.mx-icon-text-size::before {\n content: \"\\ea49\";\n}\n.mx-icon-lined.mx-icon-text-subscript::before {\n content: \"\\ea4a\";\n}\n.mx-icon-lined.mx-icon-text-superscript::before {\n content: \"\\ea4b\";\n}\n.mx-icon-lined.mx-icon-text-width::before {\n content: \"\\ea4c\";\n}\n.mx-icon-lined.mx-icon-three-dots-menu-horizontal::before {\n content: \"\\ea4d\";\n}\n.mx-icon-lined.mx-icon-three-dots-menu-vertical::before {\n content: \"\\ea4e\";\n}\n.mx-icon-lined.mx-icon-thumbs-down::before {\n content: \"\\ea4f\";\n}\n.mx-icon-lined.mx-icon-thumbs-up::before {\n content: \"\\ea50\";\n}\n.mx-icon-lined.mx-icon-time-clock::before {\n content: \"\\ea51\";\n}\n.mx-icon-lined.mx-icon-tint::before {\n content: \"\\ea52\";\n}\n.mx-icon-lined.mx-icon-trash-can::before {\n content: \"\\ea53\";\n}\n.mx-icon-lined.mx-icon-tree::before {\n content: \"\\ea54\";\n}\n.mx-icon-lined.mx-icon-trophy::before {\n content: \"\\ea55\";\n}\n.mx-icon-lined.mx-icon-ui-webpage-slider::before {\n content: \"\\ea56\";\n}\n.mx-icon-lined.mx-icon-unchecked::before {\n content: \"\\ea57\";\n}\n.mx-icon-lined.mx-icon-undo::before {\n content: \"\\ea58\";\n}\n.mx-icon-lined.mx-icon-unlock::before {\n content: \"\\ea59\";\n}\n.mx-icon-lined.mx-icon-upload-bottom::before {\n content: \"\\ea5a\";\n}\n.mx-icon-lined.mx-icon-upload-button::before {\n content: \"\\ea5b\";\n}\n.mx-icon-lined.mx-icon-user::before {\n content: \"\\ea5c\";\n}\n.mx-icon-lined.mx-icon-user-3d-box::before {\n content: \"\\ea5d\";\n}\n.mx-icon-lined.mx-icon-user-man::before {\n content: \"\\ea5e\";\n}\n.mx-icon-lined.mx-icon-user-neutral-group::before {\n content: \"\\ea5f\";\n}\n.mx-icon-lined.mx-icon-user-neutral-pair::before {\n content: \"\\ea60\";\n}\n.mx-icon-lined.mx-icon-user-neutral-shield::before {\n content: \"\\ea61\";\n}\n.mx-icon-lined.mx-icon-user-neutral-sync::before {\n content: \"\\ea62\";\n}\n.mx-icon-lined.mx-icon-user-pair::before {\n content: \"\\ea63\";\n}\n.mx-icon-lined.mx-icon-user-woman::before {\n content: \"\\ea64\";\n}\n.mx-icon-lined.mx-icon-video-camera::before {\n content: \"\\ea65\";\n}\n.mx-icon-lined.mx-icon-view::before {\n content: \"\\ea66\";\n}\n.mx-icon-lined.mx-icon-view-off::before {\n content: \"\\ea67\";\n}\n.mx-icon-lined.mx-icon-wheat::before {\n content: \"\\ea68\";\n}\n.mx-icon-lined.mx-icon-whiteboard::before {\n content: \"\\ea69\";\n}\n.mx-icon-lined.mx-icon-wrench::before {\n content: \"\\ea6a\";\n}\n.mx-icon-lined.mx-icon-yen::before {\n content: \"\\ea6b\";\n}\n.mx-icon-lined.mx-icon-zoom-in::before {\n content: \"\\ea6c\";\n}\n.mx-icon-lined.mx-icon-zoom-out::before {\n content: \"\\ea6d\";\n}\n","\n.mx-administration-lv-dg-list {\n &.mx-listview > ul {\n margin: 0;\n }\n\n // &.mx-listview > ul > li::after {\n // display: inline-block;\n // content: \", \";\n // }\n \n // &.mx-listview > ul > li {\n // display: inline-block;\n // }\n\n .mx-listview-empty {\n display: none;\n }\n\n .mx-button.mx-listview-loadMore {\n text-align: left;\n width: auto;\n margin: 8px 0 0 0;\n }\n \n}\n\n","/* \n ==| Variables |=========================================================================================\n*/\n@import \"includes/atlasVariables\"; \n@import \"includes/variables\";\n@import \"includes/helpers\";\n\n/* \n ==| Widget blocks |=====================================================================================\n These blocks contains styles directly related to the widget's appearance and are mostly unique styles\n needed to display the widget's UI correctly.\n*/\n@import \"lightbox\";\n@import \"startButton\";\n@import \"annotation/annotation-canvas\";\n@import \"annotation/annotation-frame\";\n@import \"failed\";\n@import \"result\";\n@import \"feedbackForm\";\n\n/* \n ==| Generic blocks |====================================================================================\n These blocks are generic blocks. These styles are styles that apply to the widget's entire UI and\n outline the basic styles of the widget (in accordance with Atlas UI).\n*/\n@import \"dialog/dialog\";\n@import \"dialog/underlay\";\n@import \"dialog/closeButton\";\n@import \"toolbar/toolbar\";\n@import \"toolbar/toolButton\";\n@import \"labelGroup\";\n@import \"button/buttonGroup\";\n@import \"button/button\";\n@import \"screenshotPreview\";\n@import \"tooltip\";\n","/// The lightbox displays a preview of the screenshot when clicking on the thumbnail. \n\n.mxfeedback-lightbox {\n position: fixed;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n overflow: auto;\n padding-top: 10vh;\n padding-bottom: 10vh;\n background-color: $mxfeedback-lightbox-background-color;\n z-index: $mxfeedback-z-index-lightbox;\n\n &__image {\n margin: auto;\n display: block;\n max-width: 70%;\n\n @include mq($screen-md) {\n max-width: calc(100% - 16px);\n }\n }\n\n .mxfeedback-close-button {\n &__icon {\n width: $mxfeedback-icon-size-sm;\n height: $mxfeedback-icon-size-sm; \n }\n }\n}\n","//== z-index\n$mxfeedback-z-index-start-button: 999998 !default;\n$mxfeedback-z-index-underlay: 1000001 !default;\n$mxfeedback-z-index-lightbox: 1000002 !default;\n$mxfeedback-z-index-annotation-canvas: 1000003 !default;\n$mxfeedback-z-index-frame: 1000004 !default;\n\n//== Dimensions\n$mxfeedback-dialog-width: 560px;\n$mxfeedback-tooltip-width: 240px;\n$tool-list-width: 144px;\n$mxfeedback-screenshot-preview-height: 192px;\n$mxfeedback-dialog-spacing: 40px;\n\n//== Background colors\n$mxfeedback-lightbox-background-color: rgba(0, 0, 0, 0.9);\n$mxfeedback-modal-background-color: rgba(0, 0, 0, 0.9);\n$mxfeedback-annotation-canvas-background-color: rgba(0, 0, 0, 0.5);\n\n//== Shadows\n$mxfeedback-start-button-shadow: -2px 0 4px 0 rgb(0 0 0 / 30%);\n$mxfeedback-shadow-small: 0 2px 4px 0;\n$mxfeedback-shadow-color: rgba(0, 0, 0, 0.2);\n\n//== Icons\n$mxfeedback-icon-size-xs: 9px;\n$mxfeedback-icon-size-sm: 16px;\n$mxfeedback-icon-size-md: 20px;\n$mxfeedback-icon-size-lg: 24px;\n\n//== Annotation\n//## Annotation colors\n$annotation-colors: (\n \"midnight\": #2f3646,\n \"grey\": #c1c3c8,\n \"green\": #4fd84f,\n \"blue\": #47a9ff,\n \"purple\": #845eff,\n \"magenta\": #ca49f8,\n \"red\": #fb4a4c,\n \"yellow\": #fcc73a\n);\n\n//## Annotation thickness\n$annotation-thickness: (\n \"one\": 1px,\n \"two\": 2px,\n \"three\": 3px,\n \"four\": 4px,\n \"five\": 5px,\n \"six\": 6px\n);\n\n//## Annotation tool variables\n$mxfeedback-annotation-tool-size: 25px;\n","/// For responsiveness\n\n@mixin mq($width, $type: min) {\n @media only screen and (#{$type}-width: $width) {\n @content;\n }\n}\n","/// Creates the blue start button for the feedback widget.\n/// This can be replaced by several starting points in the future.\n\n.mxfeedback-start-button {\n position: fixed;\n top: 50%;\n right: 0;\n transform: translate(50%, -50%) rotate(270deg);\n transform-origin: bottom center;\n padding: $spacing-smaller $spacing-small;\n border: none;\n border-radius: $border-radius-default $border-radius-default 0 0;\n background-color: $btn-primary-bg;\n color: $btn-primary-color;\n font-size: $m-header-title-size;\n box-shadow: $mxfeedback-start-button-shadow;\n z-index: $mxfeedback-z-index-start-button;\n\n &:focus,\n &:hover {\n background-color: $btn-primary-bg-hover;\n }\n}\n","/// Based on ATLAS UI 3\n\n$gray-darker: #0a1325;\n$gray-dark: #474e5c;\n$gray: #787d87;\n$gray-light: #a9acb3;\n$gray-primary: #e7e7e9;\n$gray-lighter: #f8f8f8;\n\n$brand-default: $gray-primary;\n$brand-primary: #264ae5;\n$brand-success: #3cb33d;\n$brand-warning: #eca51c;\n$brand-danger: #e33f4e;\n\n$font-size-default: 14px;\n$font-color-default: #0a1325;\n\n$border-color-default: #ced0d3;\n$border-radius-default: 4px;\n\n$m-header-title-size: 16px;\n\n$bg-color-secondary: #fff;\n\n$font-size-large: 18px;\n$font-size-small: 12px;\n\n$font-weight-semibold: 600;\n$font-weight-bold: bold;\n\n$btn-primary-bg: $brand-primary;\n$btn-primary-bg-hover: mix($btn-primary-bg, black, 80%);\n$btn-primary-color: #fff;\n\n$label-primary-color: #fff;\n\n$spacing-smallest: 2px;\n$spacing-smaller: 4px;\n$spacing-small: 8px;\n$spacing-medium: 16px;\n$spacing-large: 24px;\n$spacing-larger: 32px;\n$spacing-largest: 48px;\n\n$gutter-size: 8px;\n\n$screen-xs: 480px;\n$screen-sm: 576px;\n$screen-md: 768px;\n$screen-lg: 992px;\n$screen-xl: 1200px;\n","/// Creates the canvas for annotation. \n/// The background color is required to cover the page behind the annotation canvas.\n\n.mxfeedback-annotation-canvas {\n z-index: $mxfeedback-z-index-annotation-canvas;\n display: flex;\n align-items: center;\n justify-content: center;\n position: fixed;\n margin: 0;\n width: 100%;\n height: 100%;\n background-color: $mxfeedback-annotation-canvas-background-color;\n\n &__canvas {\n position: fixed;\n margin-top: $spacing-largest;\n }\n}\n","/// Centers the annotation tool and annotation canvas.\n\n.mxfeedback-annotation-frame {\n position: fixed;\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n z-index: $mxfeedback-z-index-frame;\n}\n",".mxfeedback-failed {\n // TODO: Feels like it can be replaced in the future\n &__message {\n align-self: center;\n margin: $spacing-small;\n }\n\n &__error-image {\n margin-top: 30px;\n }\n}\n","/// Style the image on the successfully submitted page\n\n.mxfeedback-result {\n &__result-image {\n align-self: center;\n width: auto;\n max-width: 50%;\n }\n\n .mxfeedback-dialog__body-text {\n margin: auto;\n }\n\n &__result-image {\n margin-top: 30px;\n }\n}",".mxfeedback-feedback-form {\n &__cancel-button {\n border: 0;\n }\n}\n","/// Styles the dialogs.\n/// The styling is shared between the different windows.\n\n.mxfeedback-dialog {\n display: flex;\n flex-direction: column;\n position: fixed;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n padding: $spacing-large;\n width: $mxfeedback-dialog-width;\n max-width: calc(100% - #{$mxfeedback-dialog-spacing});\n max-height: calc(100% - #{$mxfeedback-dialog-spacing});\n background-color: $bg-color-secondary;\n border: 1px solid $border-color-default;\n border-radius: $border-radius-default;\n box-shadow: $mxfeedback-shadow-small $mxfeedback-shadow-color;\n overflow: hidden auto;\n z-index: $mxfeedback-z-index-underlay;\n\n &__title {\n font-size: $font-size-large;\n font-weight: $font-weight-semibold;\n line-height: 120%;\n margin: 0 0 $spacing-medium;\n color: $font-color-default;\n align-self: center;\n }\n}\n","/// Styles the underlay behind the dialog.\n\n.mxfeedback-underlay {\n inset: 0;\n z-index: $mxfeedback-z-index-underlay;\n}\n","/// Styles the close button to follow the same styling as ATLAS UI close button.\n/// | `btn-primary-color` | To show the close button in white color.|\n\n.mxfeedback-close-button {\n right: $spacing-medium;\n top: 12px; // not using variables here as its position should be precise\n padding: 0;\n background-color: transparent;\n border: none;\n position: absolute;\n \n &__icon {\n width: 12px;\n height: 12px;\n color: $font-color-default;\n stroke: $font-color-default;\n }\n\n &--white > &__icon {\n fill: $btn-primary-color;\n }\n}\n","/// Styles the annotation toolbar.\n\n.mxfeedback-toolbar {\n position: fixed;\n display: flex;\n align-items: center;\n gap: $gutter-size;\n top: $spacing-larger;\n left: 50%;\n transform: translateX(-50%);\n padding: $spacing-medium $spacing-larger;\n background-color: $bg-color-secondary;\n border: 1px solid $border-color-default;\n border-radius: $border-radius-default;\n font-size: $font-size-small;\n box-shadow: $mxfeedback-shadow-small $mxfeedback-shadow-color;\n z-index: $mxfeedback-z-index-frame;\n\n &--gap-md {\n gap: $gutter-size * 2;\n }\n\n &--gap-lg {\n gap: $gutter-size * 4;\n }\n}\n","/// Styles the color and thickness options in the annotation toolbar.\n\n.mxfeedback-tool-button {\n position: relative;\n display: flex;\n flex-direction: row;\n align-items: center;\n background: transparent;\n border: 0;\n padding: 0;\n\n &--active {\n color: $brand-primary;\n }\n\n &:focus-visible {\n color: $btn-primary-bg-hover;\n }\n\n &__inner {\n display: flex;\n flex-direction: column;\n align-items: center;\n }\n\n &__icon {\n width: $mxfeedback-icon-size-lg;\n height: $mxfeedback-icon-size-lg;\n fill: currentColor;\n }\n\n &__label {\n margin-top: $spacing-smaller;\n color: inherit\n }\n\n &__caret {\n fill: $gray-darker;\n width: 8px;\n height: 8px;\n }\n\n &__dropdown {\n position: relative;\n display: flex;\n align-items: center;\n height: 100%;\n }\n\n &__menu {\n display: flex;\n flex-direction: column;\n gap: $gutter-size;\n position: absolute;\n left: 50%;\n top: 100%;\n transform: translateX(-50%);\n padding: $spacing-small;\n background: $bg-color-secondary;\n border: 1px solid $border-color-default;\n border-radius: $border-radius-default;\n width: $tool-list-width;\n z-index: 1;\n }\n\n &__list {\n display: grid;\n grid-template-columns: repeat(4, 1fr); // 4 columns is our default, override with modifier\n gap: calc(#{$gutter-size} / 2);\n\n &--col-3 {\n grid-template-columns: repeat(3, 1fr);\n }\n }\n\n &__color {\n position: relative;\n padding: 0;\n border: none;\n border-radius: 100%;\n aspect-ratio: 1 / 1;\n\n &:focus {\n outline: 2px solid $brand-primary;\n outline-offset: 2px;\n }\n\n @each $color, $class in $annotation-colors {\n &--#{$color} {\n background-color: $class;\n }\n }\n\n svg {\n width: 10px;\n height: 10px;\n stroke: $btn-primary-color;\n }\n }\n\n &__thickness {\n background-color: transparent;\n border: none;\n border-radius: $border-radius-default;\n aspect-ratio: 4 / 3;\n\n &:hover {\n background-color: $gray-light;\n }\n\n &:focus {\n outline: 2px solid $brand-primary;\n outline-offset: 2px;\n }\n\n &--selected {\n background-color: $gray;\n }\n\n &::before {\n content: \"\";\n display: block;\n background-color: map-get($annotation-colors, \"midnight\");\n width: 100%;\n transform: rotate(-45deg);\n }\n\n @each $thickness, $height in $annotation-thickness {\n &--#{$thickness} {\n &::before {\n height: $height;\n }\n }\n }\n }\n}\n","/// Styles the label plus tooltip icon.\n\n.mxfeedback-label-group {\n display: flex;\n align-items: center;\n gap: calc(#{$gutter-size} / 2);\n margin-bottom: $spacing-smaller;\n\n &__label.control-label {\n margin-bottom: 0;\n }\n}\n","/// Styles buttons in group to have proper distance between each other.\n/// Shows the buttons in column on a smaller screen.\n\n.mxfeedback-button-group {\n display: flex;\n justify-content: flex-end;\n gap: $gutter-size;\n\n &--screenshot-container {\n flex-direction: row-reverse;\n }\n\n &--gap-md {\n gap: $gutter-size * 2;\n }\n\n &--gap-lg {\n gap: $gutter-size * 4;\n }\n\n &--justify-start {\n justify-content: flex-start;\n }\n\n &--justify-center {\n justify-content: center;\n }\n\n &--row-xs {\n flex-direction: column;\n\n @include mq($screen-md) {\n flex-direction: row;\n }\n }\n}\n","/// Styles a button that contains an icon.\n/// In Atlas the icons are added differently.\n\n.mxfeedback-button {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: $gutter-size;\n\n svg {\n width: $mxfeedback-icon-size-sm;\n height: $mxfeedback-icon-size-sm;\n fill: currentColor;\n }\n}\n","/// Styles the screenshot preview container in the form.\n\n.mxfeedback-screenshot-preview {\n position: relative;\n margin: 20px auto;\n height: $mxfeedback-screenshot-preview-height;\n cursor: pointer;\n\n &__image {\n display: block;\n object-fit: contain;\n height: 100%;\n aspect-ratio: 16 / 9;\n border: 1px solid $gray;\n border-radius: $border-radius-default;\n }\n\n &__overlay {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n width: 100%;\n opacity: 0;\n transition: 0.3s ease;\n background-color: $gray-darker;\n border: 1px solid $gray-dark;\n border-radius: $border-radius-default;\n\n &:hover {\n opacity: 0.5;\n }\n\n &:focus-visible {\n opacity: 0.5;\n }\n }\n\n &__preview-icon {\n width: $mxfeedback-icon-size-md;\n height: $mxfeedback-icon-size-md;\n fill: $gray-lighter;\n }\n\n &__delete-icon {\n position: absolute;\n top: 0;\n right: 0;\n transform: translate(50%, -50%);\n width: $mxfeedback-icon-size-md;\n height: $mxfeedback-icon-size-md;\n stroke: $gray-dark;\n fill: $gray-lighter;\n z-index: 1;\n cursor: pointer;\n }\n}\n","/// Create a Tooltip on hover effect.\n\n$_block: \".mxfeedback-tooltip\";\n#{$_block} {\n $_offset: 32px;\n display: flex;\n position: relative;\n\n &__icon {\n width: $mxfeedback-icon-size-sm;\n height: $mxfeedback-icon-size-sm;\n\n &:hover ~ #{$_block}__tip {\n visibility: visible;\n }\n }\n\n &__tip {\n visibility: hidden;\n position: absolute;\n top: calc(100% + #{$spacing-small});\n left: calc(50% - #{$_offset});\n width: $mxfeedback-tooltip-width;\n max-width: calc(100vw - #{$spacing-larger});\n padding: 6px 8px; // not using variables here as its padding should be precise\n margin-bottom: 0;\n border-radius: 2px; // not using variables here as its border radius should be precise\n background-color: $gray-darker;\n color: $label-primary-color;\n font-size: $font-size-small;\n line-height: 1.5;\n z-index: 1;\n transition: visibility 100ms ease-in-out;\n\n &::after {\n content: \"\";\n position: absolute;\n top: 0;\n left: $_offset;\n transform: translate(-50%, -50%) rotate(45deg);\n width: 12px;\n height: 12px;\n background-color: inherit;\n text-align: center;\n pointer-events: none;\n }\n }\n}\n","/* ==========================================================================\n Take picture styles\n========================================================================== */\n\n.take-picture-wrapper {\n height: 100%;\n width: 100%;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n display: flex;\n flex-direction: column-reverse;\n justify-content: space-between;\n /* Should be higher than the the video. */\n z-index: 111;\n}\n.take-picture-video-element {\n position: absolute;\n /* Should be higher than the z-index of '.layout-atlas .region-sidebar' so it sits on top of the page. */\n z-index: 110;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n object-fit: cover;\n width: 100%;\n height: 100%;\n background-color: black;\n}\n.take-picture-action-control-wrapper {\n display: flex;\n justify-content: center;\n flex-direction: row;\n align-items: center;\n /* should be higher than the video. */\n z-index: 111;\n margin-bottom: 74px;\n}\n.take-picture-action-switch-control-wrapper {\n display: flex;\n justify-content: space-between;\n flex-direction: row;\n align-items: center;\n /* should be higher than the video. */\n z-index: 111;\n margin-bottom: 74px;\n}\n.take-picture-close-control-wrapper {\n display: flex;\n justify-content: flex-start;\n flex-direction: column;\n align-items: flex-start;\n /* should be higher than the video. */\n z-index: 111;\n}\n.take-picture-action-control {\n background-color: transparent;\n border-style: none;\n padding: 0;\n}\n.take-picture-action-spacing {\n flex: 1;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.take-picture-switch-spacing {\n display: flex;\n flex: 1;\n justify-content: flex-end;\n align-items: center;\n}\n.take-picture-spacing-div {\n flex: 1;\n}\n.take-picture-action-control-inner {\n border-radius: 50%;\n background-color: white;\n border: 1px solid black;\n width: 58px;\n height: 58px;\n}\n.take-picture-button-wrapper {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n z-index: 111;\n}\n.take-picture-save-button {\n color: white;\n background-color: #264ae5;\n width: 100%;\n border-radius: 4px;\n height: 40px;\n font-size: 14px;\n line-height: 20px;\n text-align: center;\n border-style: none;\n}\n.take-picture-switch-control {\n background-color: transparent;\n border-style: none;\n padding: 0;\n margin-right: 22.33px;\n}\n.take-picture-close-control {\n margin: 30px 0 0 30px;\n border-style: none;\n padding: 0;\n background-color: transparent;\n}\n.take-picture-save-control {\n margin: 30px 30px 0 0;\n border-style: none;\n padding: 0;\n background-color: transparent;\n}\n.take-picture-confirm-wrapper {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: white;\n /* should be higher than the wrapper. */\n z-index: 112;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n}\n.take-picture-image {\n position: absolute;\n /* Should be higher than the z-index of '.layout-atlas .region-sidebar' so it sits on top of the page. */\n z-index: 110;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n object-fit: cover;\n width: 100%;\n height: 100%;\n background-color: black;\n}\n/* Overwrite 'atlas_core/web/core/_legacy/_mxui.scss' for this particular widget because otherwise\n iOS Safari will in certain cases put the top and/or bottom bar on top of the overlay of this widget. */\n\n.mx-scrollcontainer-wrapper:not(.mx-scrollcontainer-nested) {\n -webkit-overflow-scrolling: auto;\n}\n",":root {\n /*\n DISCLAIMER:\n This is a mapping file which will be used to help moving towards CSS variables over time.\n Do not change this file because it is core styling.\n Customizing core files will make updating Atlas much more difficult in the future.\n To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n \n \n ██████╗ █████╗ ███████╗██╗ ██████╗\n ██╔══██╗██╔══██╗██╔════╝██║██╔════╝\n ██████╔╝███████║███████╗██║██║\n ██╔══██╗██╔══██║╚════██║██║██║\n ██████╔╝██║ ██║███████║██║╚██████╗\n ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝\n */\n\n /*== Gray Shades*/\n /*## Different gray shades to be used for our variables and components */\n --gray-darker: #{$gray-darker};\n --gray-dark: #{$gray-dark};\n --gray: #{$gray};\n --gray-light: #{$gray-light};\n --gray-primary: #{$gray-primary};\n --gray-lighter: #{$gray-lighter};\n\n /*== Step 1: Brand Colors */\n --brand-default: #{$brand-default};\n --brand-primary: #{$brand-primary};\n --brand-success: #{$brand-success};\n --brand-warning: #{$brand-warning};\n --brand-danger: #{$brand-danger};\n\n --brand-logo: #{$brand-logo};\n --brand-logo-height: #{$brand-logo-height};\n --brand-logo-width: #{$brand-logo-width}; /* Only used for CSS brand logo */\n\n /*== Step 2: UI Customization */\n\n /* Default Font Size & Color */\n --font-size-default: #{$font-size-default};\n --font-color-default: #{$font-color-default};\n\n /* Global Border Color */\n --border-color-default: #{$border-color-default};\n --border-radius-default: #{$border-radius-default};\n\n /* Topbar */\n --topbar-bg: #{$topbar-bg};\n --topbar-minimalheight: #{$topbar-minimalheight};\n --topbar-border-color: #{$topbar-border-color};\n\n /* Topbar mobile */\n --m-header-height: #{$m-header-height};\n --m-header-bg: #{$m-header-bg};\n --m-header-color: #{$m-header-color};\n --m-header-title-size: #{$m-header-title-size};\n\n /* Navbar Brand Name / For your company, product, or project name (used in layouts/base/) */\n --navbar-brand-name: #{$navbar-brand-name};\n\n /* Background Colors */\n /* Backgrounds */\n --bg-color: #{$bg-color};\n --bg-color: #f8f8f8;\n --bg-color-secondary: #{$bg-color-secondary};\n\n /* Default Link Color */\n --link-color: #{$link-color};\n --link-hover-color: #{$link-hover-color};\n\n /*\n █████╗ ██████╗ ██╗ ██╗ █████╗ ███╗ ██╗ ██████╗███████╗██████╗\n ██╔══██╗██╔══██╗██║ ██║██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗\n ███████║██║ ██║██║ ██║███████║██╔██╗ ██║██║ █████╗ ██║ ██║\n ██╔══██║██║ ██║╚██╗ ██╔╝██╔══██║██║╚██╗██║██║ ██╔══╝ ██║ ██║\n ██║ ██║██████╔╝ ╚████╔╝ ██║ ██║██║ ╚████║╚██████╗███████╗██████╔╝\n ╚═╝ ╚═╝╚═════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚══════╝╚═════╝\n */\n\n /*== Typography */\n /*## Change your font family, weight, line-height, headings and more (used in components/typography) */\n\n /* Font Family Import (Used for google font plugin in theme creater) */\n --font-family-import: #{$font-family-import};\n\n /* Font Family / False = fallback from Bootstrap (Helvetica Neue) */\n --font-family-base: #{$font-family-base};\n\n /* Font Sizes */\n --font-size-large: #{$font-size-large};\n --font-size-small: #{$font-size-small};\n\n /* Font Weights */\n --font-weight-light: #{$font-weight-light};\n --font-weight-normal: #{$font-weight-normal};\n --font-weight-semibold: #{$font-weight-semibold};\n --font-weight-bold: #{$font-weight-bold};\n\n /* Font Size Headers */\n --font-size-h1: #{$font-size-h1};\n --font-size-h2: #{$font-size-h2};\n --font-size-h3: #{$font-size-h3};\n --font-size-h4: #{$font-size-h4};\n --font-size-h5: #{$font-size-h5};\n --font-size-h6: #{$font-size-h6};\n\n /* Font Weight Headers */\n --font-weight-header: #{$font-weight-header};\n\n /* Line Height */\n --line-height-base: #{$line-height-base};\n\n /* Spacing */\n --font-header-margin: #{$font-header-margin};\n\n /* Text Colors */\n --font-color-detail: #{$font-color-detail};\n --font-color-header: #{$font-color-header};\n\n /*== Navigation */\n /*## Used in components/navigation\n \n /* Default Navigation styling */\n --navigation-item-height: #{$navigation-item-height};\n --navigation-item-padding: #{$navigation-item-padding};\n\n --navigation-font-size: #{$navigation-font-size};\n --navigation-sub-font-size: #{$navigation-sub-font-size};\n --navigation-glyph-size: #{$navigation-glyph-size}; /* For glyphicons that you can select in the Mendix Modeler */\n\n --navigation-color: #{$navigation-color};\n --navigation-color-hover: #{$navigation-color-hover};\n --navigation-color-active: #{$navigation-color-active};\n\n --navigation-sub-color: #{$navigation-sub-color};\n --navigation-sub-color-hover: #{$navigation-sub-color-hover};\n --navigation-sub-color-active: #{$navigation-sub-color-active};\n\n /* Navigation Sidebar */\n --navsidebar-font-size: #{$navsidebar-font-size};\n --navsidebar-sub-font-size: #{$navsidebar-sub-font-size};\n --navsidebar-glyph-size: #{$navsidebar-glyph-size}; /* For glyphicons that you can select in the Mendix Modeler */\n\n --navsidebar-color: #{$navsidebar-color};\n --navsidebar-color-hover: #{$navsidebar-color-hover};\n --navsidebar-color-active: #{$navsidebar-color-active};\n\n --navsidebar-sub-color: #{$navsidebar-sub-color};\n --navsidebar-sub-color-hover: #{$navsidebar-sub-color-hover};\n --navsidebar-sub-color-active: #{$navsidebar-sub-color-active};\n\n --navsidebar-width-closed: #{$navsidebar-width-closed};\n --navsidebar-width-open: #{$navsidebar-width-open};\n\n /* Navigation topbar */\n --navtopbar-font-size: #{$navtopbar-font-size};\n --navtopbar-sub-font-size: #{$navtopbar-sub-font-size};\n --navtopbar-glyph-size: #{$navtopbar-glyph-size};\n\n --navtopbar-bg: #{$navtopbar-bg};\n --navtopbar-bg-hover: #{$navtopbar-bg-hover};\n --navtopbar-bg-active: #{$navtopbar-bg-active};\n --navtopbar-color: #{$navtopbar-color};\n --navtopbar-color-hover: #{$navtopbar-color-hover};\n --navtopbar-color-active: #{$navtopbar-color-active};\n\n --navtopbar-sub-bg: #{$navtopbar-sub-bg};\n --navtopbar-sub-bg-hover: #{$navtopbar-sub-bg-hover};\n --navtopbar-sub-bg-active: #{$navtopbar-sub-bg-active};\n --navtopbar-sub-color: #{$navtopbar-sub-color};\n --navtopbar-sub-color-hover: #{$navtopbar-sub-color-hover};\n --navtopbar-sub-color-active: #{$navtopbar-sub-color-active};\n\n /*== Cards */\n /* Shadow color */\n --shadow-color-border: #{$shadow-color-border};\n --shadow-color: #{$shadow-color};\n\n /*Shadow size */\n --shadow-small: #{$shadow-small};\n --shadow-medium: #{$shadow-medium};\n --shadow-large: #{$shadow-large};\n\n /*## Used in layouts/base */\n --navtopbar-border-color: #{$navtopbar-border-color};\n\n /*== Form */\n /*## Used in components/inputs */\n\n /* Values that can be used default | lined */\n --form-input-style: #{$form-input-style};\n\n /* Form Label */\n --form-label-size: #{$form-label-size};\n --form-label-weight: #{$form-label-weight};\n --form-label-gutter: #{$form-label-gutter};\n\n /* Form Input dimensions */\n --form-input-height: #{$form-input-height};\n --form-input-padding-y: #{$form-input-padding-y};\n --form-input-padding-x: #{$form-input-padding-x};\n --form-input-static-padding-y: #{$form-input-static-padding-y};\n --form-input-static-padding-x: #{$form-input-static-padding-x};\n --form-input-font-size: #{$form-input-font-size};\n --form-input-line-height: #{$form-input-line-height};\n --form-input-border-radius: #{$form-input-border-radius};\n\n /* Form Input styling */\n --form-input-bg: #{$form-input-bg};\n --form-input-bg-focus: #{$form-input-bg-focus};\n --form-input-bg-hover: #{$form-input-bg-hover};\n --form-input-bg-disabled: #{$form-input-bg-disabled};\n --form-input-color: #{$form-input-color};\n --form-input-focus-color: #{$form-input-focus-color};\n --form-input-disabled-color: #{$form-input-disabled-color};\n --form-input-placeholder-color: #{$form-input-placeholder-color};\n --form-input-border-color: #{$form-input-border-color};\n --form-input-border-focus-color: #{$form-input-border-focus-color};\n\n /* Form Input Static styling */\n --form-input-static-border-color: #{$form-input-static-border-color};\n\n /* Form Group */\n --form-group-margin-bottom: #{$form-group-margin-bottom};\n --form-group-gutter: #{$form-group-gutter};\n\n /*== Buttons */\n /*## Define background-color, border-color and text. Used in components/buttons */\n\n /* Default button style */\n --btn-font-size: #{$btn-font-size};\n --btn-bordered: #{$btn-bordered}; /* Default value false, set to true if you want this effect */\n --btn-border-radius: #{$btn-border-radius};\n\n /* Button Background Color */\n --btn-default-bg: #{$btn-default-bg};\n --btn-primary-bg: #{$btn-primary-bg};\n --btn-success-bg: #{$btn-success-bg};\n --btn-warning-bg: #{$btn-warning-bg};\n --btn-danger-bg: #{$btn-danger-bg};\n\n /* Button Border Color */\n --btn-default-border-color: #{$btn-default-border-color};\n --btn-primary-border-color: #{$btn-primary-border-color};\n --btn-success-border-color: #{$btn-success-border-color};\n --btn-warning-border-color: #{$btn-warning-border-color};\n --btn-danger-border-color: #{$btn-danger-border-color};\n\n /* Button Text Color */\n --btn-default-color: #{$btn-default-color};\n --btn-primary-color: #{$btn-primary-color};\n --btn-success-color: #{$btn-success-color};\n --btn-warning-color: #{$btn-warning-color};\n --btn-danger-color: #{$btn-danger-color};\n\n /* Button Icon Color */\n --btn-default-icon-color: #{$btn-default-icon-color};\n\n /* Button Background Color */\n --btn-default-bg-hover: #{$btn-default-bg-hover};\n --btn-primary-bg-hover: #{$btn-primary-bg-hover};\n --btn-success-bg-hover: #{$btn-success-bg-hover};\n --btn-warning-bg-hover: #{$btn-warning-bg-hover};\n --btn-danger-bg-hover: #{$btn-danger-bg-hover};\n --btn-link-bg-hover: #{$btn-link-bg-hover};\n\n /*== Header blocks */\n /*## Define look and feel over multible building blocks that serve as header */\n\n --header-min-height: #{$header-min-height};\n --header-bg-color: #{$header-bg-color};\n --header-bgimage-filter: #{$header-bgimage-filter};\n --header-text-color: #{$header-text-color};\n --header-text-color-detail: #{$header-text-color-detail};\n\n /*\n ███████╗██╗ ██╗██████╗ ███████╗██████╗ ████████╗\n ██╔════╝╚██╗██╔╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝\n █████╗ ╚███╔╝ ██████╔╝█████╗ ██████╔╝ ██║\n ██╔══╝ ██╔██╗ ██╔═══╝ ██╔══╝ ██╔══██╗ ██║\n ███████╗██╔╝ ██╗██║ ███████╗██║ ██║ ██║\n ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝\n */\n\n /*== Color variations */\n /*## These variations are used to support several other variables and components */\n\n /* Color variations */\n --color-default-darker: #{$color-default-darker};\n --color-default-dark: #{$color-default-dark};\n --color-default-light: #{$color-default-light};\n --color-default-lighter: #{$color-default-lighter};\n\n --color-primary-darker: #{$color-primary-darker};\n --color-primary-dark: #{$color-primary-dark};\n --color-primary-light: #{$color-primary-light};\n --color-primary-lighter: #{$color-primary-lighter};\n\n --color-success-darker: #{$color-success-darker};\n --color-success-dark: #{$color-success-dark};\n --color-success-light: #{$color-success-light};\n --color-success-lighter: #{$color-success-lighter};\n\n --color-warning-darker: #{$color-warning-darker};\n --color-warning-dark: #{$color-warning-dark};\n --color-warning-light: #{$color-warning-light};\n --color-warning-lighter: #{$color-warning-lighter};\n\n --color-danger-darker: #{$color-danger-darker};\n --color-danger-dark: #{$color-danger-dark};\n --color-danger-light: #{$color-danger-light};\n --color-danger-lighter: #{$color-danger-lighter};\n\n --brand-gradient: #{$brand-gradient};\n\n /*== Grids */\n /*## Used for Datagrid, Templategrid, Listview & Tables (see components folder) */\n\n /* Default Border Colors */\n --grid-border-color: #{$grid-border-color};\n\n /* Spacing */\n /* Default */\n --grid-padding-top: #{$grid-padding-top};\n --grid-padding-right: #{$grid-padding-right};\n --grid-padding-bottom: #{$grid-padding-bottom};\n --grid-padding-left: #{$grid-padding-left};\n\n /* Listview */\n --listview-padding-top: #{$listview-padding-top};\n --listview-padding-right: #{$listview-padding-right};\n --listview-padding-bottom: #{$listview-padding-bottom};\n --listview-padding-left: #{$listview-padding-left};\n\n /* Background Colors */\n --grid-bg: #{$grid-bg};\n --grid-bg-header: #{$grid-bg-header}; //Grid Headers\n --grid-bg-hover: #{$grid-bg-hover};\n --grid-bg-selected: #{$grid-bg-selected};\n --grid-bg-selected-hover: #{$grid-bg-selected-hover};\n\n /* Striped Background Color */\n --grid-bg-striped: #{$grid-bg-striped};\n\n /* Background Footer Color */\n --grid-footer-bg: #{$grid-footer-bg};\n\n /* Text Color */\n --grid-selected-color: #{$grid-selected-color};\n\n /* Paging Colors */\n --grid-paging-bg: #{$grid-paging-bg};\n --grid-paging-bg-hover: #{$grid-paging-bg-hover};\n --grid-paging-border-color: #{$grid-paging-border-color};\n --grid-paging-border-color-hover: #{$grid-paging-border-color-hover};\n --grid-paging-color: #{$grid-paging-color};\n --grid-paging-color-hover: #{$grid-paging-color-hover};\n\n /*== Tabs */\n /*## Default variables for Tab Container Widget (used in components/tabcontainer) */\n\n /* Text Color */\n --tabs-color: #{$tabs-color};\n --tabs-color-active: #{$tabs-color-active};\n --tabs-lined-color-active: #{$tabs-lined-color-active};\n\n --tabs-lined-border-width: #{$tabs-lined-border-width};\n\n /* Border Color */\n --tabs-border-color: #{$tabs-border-color};\n --tabs-lined-border-color: #{$tabs-lined-border-color};\n\n /* Background Color */\n --tabs-bg: #{$tabs-bg};\n --tabs-bg-pills: #{$tabs-bg-pills};\n --tabs-bg-hover: #{$tabs-bg-hover};\n --tabs-bg-active: #{$tabs-bg-active};\n\n /*== Modals */\n /*## Default Mendix Modal, Blocking Modal and Login Modal (used in components/modals) */\n\n /* Background Color */\n --modal-header-bg: #{$modal-header-bg};\n\n /* Border Color */\n --modal-header-border-color: #{$modal-header-border-color};\n\n /* Text Color */\n --modal-header-color: #{$modal-header-color};\n\n /*== Dataview */\n /*## Default variables for Dataview Widget (used in components/dataview) */\n\n /* Controls */\n --dataview-controls-bg: #{$dataview-controls-bg};\n --dataview-controls-border-color: #{$dataview-controls-border-color};\n\n /* Empty Message */\n --dataview-emptymessage-bg: #{$dataview-emptymessage-bg};\n --dataview-emptymessage-color: #{$dataview-emptymessage-color};\n\n /*== Alerts */\n /*## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts) */\n\n /* Background Color */\n --alert-primary-bg: #{$alert-primary-bg};\n --alert-secondary-bg: #{$alert-secondary-bg};\n --alert-success-bg: #{$alert-success-bg};\n --alert-warning-bg: #{$alert-warning-bg};\n --alert-danger-bg: #{$alert-danger-bg};\n\n /* Text Color */\n --alert-primary-color: #{$alert-primary-color};\n --alert-secondary-color: #{$alert-secondary-color};\n --alert-success-color: #{$alert-success-color};\n --alert-warning-color: #{$alert-warning-color};\n --alert-danger-color: #{$alert-danger-color};\n\n /* Border Color */\n --alert-primary-border-color: #{$alert-primary-border-color};\n --alert-secondary-border-color: #{$alert-secondary-border-color};\n --alert-success-border-color: #{$alert-success-border-color};\n --alert-warning-border-color: #{$alert-warning-border-color};\n --alert-danger-border-color: #{$alert-danger-border-color};\n\n /*== Wizard */\n\n --wizard-step-height: #{$wizard-step-height};\n --wizard-step-number-size: #{$wizard-step-number-size};\n --wizard-step-number-font-size: #{$wizard-step-number-font-size};\n\n /*Wizard states */\n --wizard-default: #{$wizard-default};\n --wizard-active: #{$wizard-active};\n --wizard-visited: #{$wizard-visited};\n\n /*Wizard step states */\n --wizard-default-bg: #{$wizard-default-bg};\n --wizard-default-color: #{$wizard-default-color};\n --wizard-default-step-color: #{$wizard-default-step-color};\n --wizard-default-border-color: #{$wizard-default-border-color};\n\n --wizard-active-bg: #{$wizard-active-bg};\n --wizard-active-color: #{$wizard-active-color};\n --wizard-active-step-color: #{$wizard-active-step-color};\n --wizard-active-border-color: #{$wizard-active-border-color};\n\n --wizard-visited-bg: #{$wizard-visited-bg};\n --wizard-visited-color: #{$wizard-visited-color};\n --wizard-visited-step-color: #{$wizard-visited-step-color};\n --wizard-visited-border-color: #{$wizard-visited-border-color};\n\n /*== Labels */\n /*## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels) */\n\n /* Background Color */\n --label-default-bg: #{$label-default-bg};\n --label-primary-bg: #{$label-primary-bg};\n --label-success-bg: #{$label-success-bg};\n --label-warning-bg: #{$label-warning-bg};\n --label-danger-bg: #{$label-danger-bg};\n\n /* Border Color */\n --label-default-border-color: #{$label-default-border-color};\n --label-primary-border-color: #{$label-primary-border-color};\n --label-success-border-color: #{$label-success-border-color};\n --label-warning-border-color: #{$label-warning-border-color};\n --label-danger-border-color: #{$label-danger-border-color};\n\n /* Text Color */\n --label-default-color: #{$label-default-color};\n --label-primary-color: #{$label-primary-color};\n --label-success-color: #{$label-success-color};\n --label-warning-color: #{$label-warning-color};\n --label-danger-color: #{$label-danger-color};\n\n /*== Groupbox */\n /*## Default variables for Groupbox Widget (used in components/groupbox) */\n\n /* Background Color */\n --groupbox-default-bg: #{$groupbox-default-bg};\n --groupbox-primary-bg: #{$groupbox-primary-bg};\n --groupbox-success-bg: #{$groupbox-success-bg};\n --groupbox-warning-bg: #{$groupbox-warning-bg};\n --groupbox-danger-bg: #{$groupbox-danger-bg};\n --groupbox-white-bg: #{$groupbox-white-bg};\n\n /* Text Color */\n --groupbox-default-color: #{$groupbox-default-color};\n --groupbox-primary-color: #{$groupbox-primary-color};\n --groupbox-success-color: #{$groupbox-success-color};\n --groupbox-warning-color: #{$groupbox-warning-color};\n --groupbox-danger-color: #{$groupbox-danger-color};\n --groupbox-white-color: #{$groupbox-white-color};\n\n /*== Callout (groupbox) Colors */\n /*## Extended variables for Groupbox Widget (used in components/groupbox) */\n\n /* Text and Border Color */\n --callout-default-color: #{$callout-default-color};\n --callout-primary-color: #{$callout-primary-color};\n --callout-success-color: #{$callout-success-color};\n --callout-warning-color: #{$callout-warning-color};\n --callout-danger-color: #{$callout-danger-color};\n\n /* Background Color */\n --callout-default-bg: #{$callout-default-bg};\n --callout-primary-bg: #{$callout-primary-bg};\n --callout-success-bg: #{$callout-success-bg};\n --callout-warning-bg: #{$callout-warning-bg};\n --callout-danger-bg: #{$callout-danger-bg};\n\n /*== Timeline */\n /*## Extended variables for Timeline Widget */\n /* Colors */\n --timeline-icon-color: #{$timeline-icon-color};\n --timeline-border-color: #{$timeline-border-color};\n --timeline-event-time-color: #{$timeline-event-time-color};\n\n /* Sizes */\n --timeline-icon-size: #{$timeline-icon-size};\n --timeline-image-size: #{$timeline-image-size};\n\n /*Timeline grouping */\n --timeline-grouping-size: #{$timeline-grouping-size};\n --timeline-grouping-border-radius: #{$timeline-grouping-border-radius};\n --timeline-grouping-border-color: #{$timeline-grouping-border-color};\n\n /*== Accordions */\n /*## Extended variables for Accordion Widget */\n\n /* Default */\n --accordion-header-default-bg: #{$accordion-header-default-bg};\n --accordion-header-default-bg-hover: #{$accordion-header-default-bg-hover};\n --accordion-header-default-color: #{$accordion-header-default-color};\n --accordion-default-border-color: #{$accordion-default-border-color};\n\n --accordion-bg-striped: #{$accordion-bg-striped};\n --accordion-bg-striped-hover: #{$accordion-bg-striped-hover};\n\n /* Semantic background colors */\n --accordion-header-primary-bg: #{$accordion-header-primary-bg};\n --accordion-header-secondary-bg: #{$accordion-header-secondary-bg};\n --accordion-header-success-bg: #{$accordion-header-success-bg};\n --accordion-header-warning-bg: #{$accordion-header-warning-bg};\n --accordion-header-danger-bg: #{$accordion-header-danger-bg};\n\n --accordion-header-primary-bg-hover: #{$accordion-header-primary-bg-hover};\n --accordion-header-secondary-bg-hover: #{$accordion-header-secondary-bg-hover};\n --accordion-header-success-bg-hover: #{$accordion-header-success-bg-hover};\n --accordion-header-warning-bg-hover: #{$accordion-header-warning-bg-hover};\n --accordion-header-danger-bg-hover: #{$accordion-header-danger-bg-hover};\n\n /* Semantic text colors */\n --accordion-header-primary-color: #{$accordion-header-primary-color};\n --accordion-header-secondary-color: #{$accordion-header-secondary-color};\n --accordion-header-success-color: #{$accordion-header-success-color};\n --accordion-header-warning-color: #{$accordion-header-warning-color};\n --accordion-header-danger-color: #{$accordion-header-danger-color};\n\n /* Semantic border colors */\n --accordion-primary-border-color: #{$accordion-primary-border-color};\n --accordion-secondary-border-color: #{$accordion-secondary-border-color};\n --accordion-success-border-color: #{$accordion-success-border-color};\n --accordion-warning-border-color: #{$accordion-warning-border-color};\n --accordion-danger-border-color: #{$accordion-danger-border-color};\n\n /*== Spacing */\n /*## Advanced layout options (used in base/mixins/default-spacing) */\n\n /* Smallest spacing */\n --spacing-smallest: #{$spacing-smallest};\n\n /* Smaller spacing */\n --spacing-smaller: #{$spacing-smaller};\n\n /* Small spacing */\n --spacing-small: #{$spacing-small};\n\n /* Medium spacing */\n --spacing-medium: #{$spacing-medium};\n --t-spacing-medium: #{$t-spacing-medium};\n --m-spacing-medium: #{$m-spacing-medium};\n\n /* Large spacing */\n --spacing-large: #{$spacing-large};\n --t-spacing-large: #{$t-spacing-large};\n --m-spacing-large: #{$m-spacing-large};\n\n /* Larger spacing */\n --spacing-larger: #{$spacing-larger};\n\n /* Largest spacing */\n --spacing-largest: #{$spacing-largest};\n\n /* Layout spacing */\n --layout-spacing-top: #{$layout-spacing-top};\n --layout-spacing-right: #{$layout-spacing-right};\n --layout-spacing-bottom: #{$layout-spacing-bottom};\n --layout-spacing-left: #{$layout-spacing-left};\n\n --t-layout-spacing-top: #{$t-layout-spacing-top};\n --t-layout-spacing-right: #{$t-layout-spacing-right};\n --t-layout-spacing-bottom: #{$t-layout-spacing-bottom};\n --t-layout-spacing-left: #{$t-layout-spacing-left};\n\n --m-layout-spacing-top: #{$m-layout-spacing-top};\n --m-layout-spacing-right: #{$m-layout-spacing-right};\n --m-layout-spacing-bottom: #{$m-layout-spacing-bottom};\n --m-layout-spacing-left: #{$m-layout-spacing-left};\n\n /* Combined layout spacing */\n --layout-spacing: #{$layout-spacing};\n --m-layout-spacing: #{$m-layout-spacing};\n --t-layout-spacing: #{$t-layout-spacing};\n\n /* Gutter size */\n --gutter-size: #{$gutter-size};\n\n /*== Tables */\n /*## Table spacing options (used in components/tables) */\n\n --padding-table-cell-top: #{$padding-table-cell-top};\n --padding-table-cell-bottom: #{$padding-table-cell-bottom};\n --padding-table-cell-left: #{$padding-table-cell-left};\n --padding-table-cell-right: #{$padding-table-cell-right};\n\n /*== Media queries breakpoints */\n /*## Define the breakpoints at which your layout will change, adapting to different screen sizes. */\n\n --screen-xs: #{$screen-xs};\n --screen-sm: #{$screen-sm};\n --screen-md: #{$screen-md};\n --screen-lg: #{$screen-lg};\n --screen-xl: #{$screen-xl};\n\n /* So media queries don't overlap when required, provide a maximum (used for max-width) */\n --screen-xs-max: #{$screen-xs-max};\n --screen-sm-max: #{$screen-sm-max};\n --screen-md-max: #{$screen-md-max};\n --screen-lg-max: #{$screen-lg-max};\n\n /*== Settings */\n /*## Enable or disable your desired framework features */\n /* Use of !important */\n --important-flex: #{$important-flex}; // ./base/flex.scss\n --important-spacing: #{$important-spacing}; // ./base/spacing.scss\n --important-helpers: #{$important-helpers}; // ./helpers/helperclasses.scss\n\n /*===== Legacy variables ===== */\n\n /*== Step 1: Brand Colors */\n --brand-inverse: #{$brand-inverse};\n --brand-info: #{$brand-info};\n\n /*== Step 2: UI Customization */\n /* Sidebar */\n --sidebar-bg: #{$sidebar-bg};\n\n /*== Navigation */\n /*## Used in components/navigation */\n\n /* Default Navigation styling */\n --navigation-bg: #{$navigation-bg};\n --navigation-bg-hover: #{$navigation-bg-hover};\n --navigation-bg-active: #{$navigation-bg-active};\n\n --navigation-sub-bg: #{$navigation-sub-bg};\n --navigation-sub-bg-hover: #{$navigation-sub-bg-hover};\n --navigation-sub-bg-active: #{$navigation-sub-bg-active};\n\n --navigation-border-color: #{$navigation-border-color};\n\n /* Navigation Sidebar */\n --navsidebar-bg: #{$navsidebar-bg};\n --navsidebar-bg-hover: #{$navsidebar-bg-hover};\n --navsidebar-bg-active: #{$navsidebar-bg-active};\n\n --navsidebar-sub-bg: #{$navsidebar-sub-bg};\n --navsidebar-sub-bg-hover: #{$navsidebar-sub-bg-hover};\n --navsidebar-sub-bg-active: #{$navsidebar-sub-bg-active};\n\n --navsidebar-border-color: #{$navsidebar-border-color};\n\n /*== Form */\n /*## Used in components/inputs */\n\n /* Form Label */\n --form-label-color: #{$form-label-color};\n\n /*== Buttons */\n /*## Define background-color, border-color and text. Used in components/buttons */\n\n /* Button Background Color */\n --btn-inverse-bg: #{$btn-inverse-bg};\n --btn-info-bg: #{$btn-info-bg};\n\n /* Button Border Color */\n --btn-inverse-border-color: #{$btn-inverse-border-color};\n --btn-info-border-color: #{$btn-info-border-color};\n\n /* Button Text Color */\n --btn-inverse-color: #{$btn-inverse-color};\n --btn-info-color: #{$btn-info-color};\n\n /* Button Background Color */\n --btn-inverse-bg-hover: #{$btn-inverse-bg-hover};\n --btn-info-bg-hover: #{$btn-info-bg-hover};\n\n /*== Color variations */\n /*## These variations are used to support several other variables and components */\n\n /* Color variations */\n --color-inverse-darker: #{$color-inverse-darker};\n --color-inverse-dark: #{$color-inverse-dark};\n --color-inverse-light: #{$color-inverse-light};\n --color-inverse-lighter: #{$color-inverse-lighter};\n\n --color-info-darker: #{$color-info-darker};\n --color-info-dark: #{$color-info-dark};\n --color-info-light: #{$color-info-light};\n --color-info-lighter: #{$color-info-lighter};\n\n /*== Alerts */\n /*## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts) */\n\n /* Background Color */\n --alert-info-bg: #{$alert-info-bg};\n\n /* Text Color */\n --alert-info-color: #{$alert-info-color};\n\n /* Border Color */\n --alert-info-border-color: #{$alert-info-border-color};\n /*== Labels */\n /*## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels) */\n\n /* Background Color */\n --label-info-bg: #{$label-info-bg};\n --label-inverse-bg: #{$label-inverse-bg};\n\n /* Border Color */\n --label-info-border-color: #{$label-info-border-color};\n --label-inverse-border-color: #{$label-inverse-border-color};\n\n /* Text Color */\n --label-info-color: #{$label-info-color};\n --label-inverse-color: #{$label-inverse-color};\n\n /*== Groupbox */\n /*## Default variables for Groupbox Widget (used in components/groupbox) */\n\n /* Background Color */\n --groupbox-inverse-bg: #{$groupbox-inverse-bg};\n --groupbox-info-bg: #{$groupbox-info-bg};\n\n /* Text Color */\n --groupbox-inverse-color: #{$groupbox-inverse-color};\n --groupbox-info-color: #{$groupbox-info-color};\n /*== Callout (groupbox) Colors */\n /*## Extended variables for Groupbox Widget (used in components/groupbox) */\n\n /* Text and Border Color */\n --callout-info-color: #{$callout-info-color};\n\n /* Background Color */\n --callout-info-bg: #{$callout-info-bg};\n}\n","/*!\n * Bootstrap v3.3.4 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@mixin bootstrap() {\n /*! normalize.css v3.0.2 | MIT License | git.io/normalize */\n html {\n font-family: sans-serif;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n }\n body {\n margin: 0;\n }\n article,\n aside,\n details,\n figcaption,\n figure,\n footer,\n header,\n hgroup,\n main,\n menu,\n nav,\n section,\n summary {\n display: block;\n }\n audio,\n canvas,\n progress,\n video {\n display: inline-block;\n vertical-align: baseline;\n }\n audio:not([controls]) {\n display: none;\n height: 0;\n }\n [hidden],\n template {\n display: none;\n }\n a {\n background-color: transparent;\n }\n a:active,\n a:hover {\n outline: 0;\n }\n abbr[title] {\n border-bottom: 1px dotted;\n }\n b,\n strong {\n font-weight: bold;\n }\n dfn {\n font-style: italic;\n }\n h1 {\n margin: 0.67em 0;\n font-size: 2em;\n }\n mark {\n color: #000;\n background: #ff0;\n }\n small {\n font-size: 80%;\n }\n sub,\n sup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n }\n sup {\n top: -0.5em;\n }\n sub {\n bottom: -0.25em;\n }\n img {\n border: 0;\n }\n svg:not(:root) {\n overflow: hidden;\n }\n figure {\n margin: 1em 40px;\n }\n hr {\n height: 0;\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n }\n pre {\n overflow: auto;\n }\n code,\n kbd,\n pre,\n samp {\n font-family: monospace, monospace;\n font-size: 1em;\n }\n button,\n input,\n optgroup,\n select,\n textarea {\n margin: 0;\n font: inherit;\n color: inherit;\n }\n button {\n overflow: visible;\n }\n button,\n select {\n text-transform: none;\n }\n button,\n html input[type=\"button\"],\n input[type=\"reset\"],\n input[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n }\n //button[disabled],\n //html input[disabled] {\n // cursor: default;\n //}\n button::-moz-focus-inner,\n input::-moz-focus-inner {\n padding: 0;\n border: 0;\n }\n input {\n line-height: normal;\n }\n input[type=\"checkbox\"],\n input[type=\"radio\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0;\n }\n input[type=\"number\"]::-webkit-inner-spin-button,\n input[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n }\n input[type=\"search\"] {\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n -webkit-appearance: textfield;\n }\n input[type=\"search\"]::-webkit-search-cancel-button,\n input[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n fieldset {\n padding: 0.35em 0.625em 0.75em;\n margin: 0 2px;\n border: 1px solid #c0c0c0;\n }\n legend {\n padding: 0;\n border: 0;\n }\n textarea {\n overflow: auto;\n }\n optgroup {\n font-weight: bold;\n }\n table {\n border-spacing: 0;\n border-collapse: collapse;\n }\n td,\n th {\n padding: 0;\n }\n /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n @media print {\n *,\n *:before,\n *:after {\n color: #000 !important;\n text-shadow: none !important;\n background: transparent !important;\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n select {\n background: #fff !important;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n }\n @font-face {\n font-family: \"Glyphicons Halflings\";\n src: url(\"./resources/glyphicons-halflings-regular.woff2\") format(\"woff2\");\n }\n .glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: \"Glyphicons Halflings\";\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n .glyphicon-asterisk:before {\n content: \"\\2a\";\n }\n .glyphicon-plus:before {\n content: \"\\2b\";\n }\n .glyphicon-euro:before,\n .glyphicon-eur:before {\n content: \"\\20ac\";\n }\n .glyphicon-minus:before {\n content: \"\\2212\";\n }\n .glyphicon-cloud:before {\n content: \"\\2601\";\n }\n .glyphicon-envelope:before {\n content: \"\\2709\";\n }\n .glyphicon-pencil:before {\n content: \"\\270f\";\n }\n .glyphicon-glass:before {\n content: \"\\e001\";\n }\n .glyphicon-music:before {\n content: \"\\e002\";\n }\n .glyphicon-search:before {\n content: \"\\e003\";\n }\n .glyphicon-heart:before {\n content: \"\\e005\";\n }\n .glyphicon-star:before {\n content: \"\\e006\";\n }\n .glyphicon-star-empty:before {\n content: \"\\e007\";\n }\n .glyphicon-user:before {\n content: \"\\e008\";\n }\n .glyphicon-film:before {\n content: \"\\e009\";\n }\n .glyphicon-th-large:before {\n content: \"\\e010\";\n }\n .glyphicon-th:before {\n content: \"\\e011\";\n }\n .glyphicon-th-list:before {\n content: \"\\e012\";\n }\n .glyphicon-ok:before {\n content: \"\\e013\";\n }\n .glyphicon-remove:before {\n content: \"\\e014\";\n }\n .glyphicon-zoom-in:before {\n content: \"\\e015\";\n }\n .glyphicon-zoom-out:before {\n content: \"\\e016\";\n }\n .glyphicon-off:before {\n content: \"\\e017\";\n }\n .glyphicon-signal:before {\n content: \"\\e018\";\n }\n .glyphicon-cog:before {\n content: \"\\e019\";\n }\n .glyphicon-trash:before {\n content: \"\\e020\";\n }\n .glyphicon-home:before {\n content: \"\\e021\";\n }\n .glyphicon-file:before {\n content: \"\\e022\";\n }\n .glyphicon-time:before {\n content: \"\\e023\";\n }\n .glyphicon-road:before {\n content: \"\\e024\";\n }\n .glyphicon-download-alt:before {\n content: \"\\e025\";\n }\n .glyphicon-download:before {\n content: \"\\e026\";\n }\n .glyphicon-upload:before {\n content: \"\\e027\";\n }\n .glyphicon-inbox:before {\n content: \"\\e028\";\n }\n .glyphicon-play-circle:before {\n content: \"\\e029\";\n }\n .glyphicon-repeat:before {\n content: \"\\e030\";\n }\n .glyphicon-refresh:before {\n content: \"\\e031\";\n }\n .glyphicon-list-alt:before {\n content: \"\\e032\";\n }\n .glyphicon-lock:before {\n content: \"\\e033\";\n }\n .glyphicon-flag:before {\n content: \"\\e034\";\n }\n .glyphicon-headphones:before {\n content: \"\\e035\";\n }\n .glyphicon-volume-off:before {\n content: \"\\e036\";\n }\n .glyphicon-volume-down:before {\n content: \"\\e037\";\n }\n .glyphicon-volume-up:before {\n content: \"\\e038\";\n }\n .glyphicon-qrcode:before {\n content: \"\\e039\";\n }\n .glyphicon-barcode:before {\n content: \"\\e040\";\n }\n .glyphicon-tag:before {\n content: \"\\e041\";\n }\n .glyphicon-tags:before {\n content: \"\\e042\";\n }\n .glyphicon-book:before {\n content: \"\\e043\";\n }\n .glyphicon-bookmark:before {\n content: \"\\e044\";\n }\n .glyphicon-print:before {\n content: \"\\e045\";\n }\n .glyphicon-camera:before {\n content: \"\\e046\";\n }\n .glyphicon-font:before {\n content: \"\\e047\";\n }\n .glyphicon-bold:before {\n content: \"\\e048\";\n }\n .glyphicon-italic:before {\n content: \"\\e049\";\n }\n .glyphicon-text-height:before {\n content: \"\\e050\";\n }\n .glyphicon-text-width:before {\n content: \"\\e051\";\n }\n .glyphicon-align-left:before {\n content: \"\\e052\";\n }\n .glyphicon-align-center:before {\n content: \"\\e053\";\n }\n .glyphicon-align-right:before {\n content: \"\\e054\";\n }\n .glyphicon-align-justify:before {\n content: \"\\e055\";\n }\n .glyphicon-list:before {\n content: \"\\e056\";\n }\n .glyphicon-indent-left:before {\n content: \"\\e057\";\n }\n .glyphicon-indent-right:before {\n content: \"\\e058\";\n }\n .glyphicon-facetime-video:before {\n content: \"\\e059\";\n }\n .glyphicon-picture:before {\n content: \"\\e060\";\n }\n .glyphicon-map-marker:before {\n content: \"\\e062\";\n }\n .glyphicon-adjust:before {\n content: \"\\e063\";\n }\n .glyphicon-tint:before {\n content: \"\\e064\";\n }\n .glyphicon-edit:before {\n content: \"\\e065\";\n }\n .glyphicon-share:before {\n content: \"\\e066\";\n }\n .glyphicon-check:before {\n content: \"\\e067\";\n }\n .glyphicon-move:before {\n content: \"\\e068\";\n }\n .glyphicon-step-backward:before {\n content: \"\\e069\";\n }\n .glyphicon-fast-backward:before {\n content: \"\\e070\";\n }\n .glyphicon-backward:before {\n content: \"\\e071\";\n }\n .glyphicon-play:before {\n content: \"\\e072\";\n }\n .glyphicon-pause:before {\n content: \"\\e073\";\n }\n .glyphicon-stop:before {\n content: \"\\e074\";\n }\n .glyphicon-forward:before {\n content: \"\\e075\";\n }\n .glyphicon-fast-forward:before {\n content: \"\\e076\";\n }\n .glyphicon-step-forward:before {\n content: \"\\e077\";\n }\n .glyphicon-eject:before {\n content: \"\\e078\";\n }\n .glyphicon-chevron-left:before {\n content: \"\\e079\";\n }\n .glyphicon-chevron-right:before {\n content: \"\\e080\";\n }\n .glyphicon-plus-sign:before {\n content: \"\\e081\";\n }\n .glyphicon-minus-sign:before {\n content: \"\\e082\";\n }\n .glyphicon-remove-sign:before {\n content: \"\\e083\";\n }\n .glyphicon-ok-sign:before {\n content: \"\\e084\";\n }\n .glyphicon-question-sign:before {\n content: \"\\e085\";\n }\n .glyphicon-info-sign:before {\n content: \"\\e086\";\n }\n .glyphicon-screenshot:before {\n content: \"\\e087\";\n }\n .glyphicon-remove-circle:before {\n content: \"\\e088\";\n }\n .glyphicon-ok-circle:before {\n content: \"\\e089\";\n }\n .glyphicon-ban-circle:before {\n content: \"\\e090\";\n }\n .glyphicon-arrow-left:before {\n content: \"\\e091\";\n }\n .glyphicon-arrow-right:before {\n content: \"\\e092\";\n }\n .glyphicon-arrow-up:before {\n content: \"\\e093\";\n }\n .glyphicon-arrow-down:before {\n content: \"\\e094\";\n }\n .glyphicon-share-alt:before {\n content: \"\\e095\";\n }\n .glyphicon-resize-full:before {\n content: \"\\e096\";\n }\n .glyphicon-resize-small:before {\n content: \"\\e097\";\n }\n .glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n }\n .glyphicon-gift:before {\n content: \"\\e102\";\n }\n .glyphicon-leaf:before {\n content: \"\\e103\";\n }\n .glyphicon-fire:before {\n content: \"\\e104\";\n }\n .glyphicon-eye-open:before {\n content: \"\\e105\";\n }\n .glyphicon-eye-close:before {\n content: \"\\e106\";\n }\n .glyphicon-warning-sign:before {\n content: \"\\e107\";\n }\n .glyphicon-plane:before {\n content: \"\\e108\";\n }\n .glyphicon-calendar:before {\n content: \"\\e109\";\n }\n .glyphicon-random:before {\n content: \"\\e110\";\n }\n .glyphicon-comment:before {\n content: \"\\e111\";\n }\n .glyphicon-magnet:before {\n content: \"\\e112\";\n }\n .glyphicon-chevron-up:before {\n content: \"\\e113\";\n }\n .glyphicon-chevron-down:before {\n content: \"\\e114\";\n }\n .glyphicon-retweet:before {\n content: \"\\e115\";\n }\n .glyphicon-shopping-cart:before {\n content: \"\\e116\";\n }\n .glyphicon-folder-close:before {\n content: \"\\e117\";\n }\n .glyphicon-folder-open:before {\n content: \"\\e118\";\n }\n .glyphicon-resize-vertical:before {\n content: \"\\e119\";\n }\n .glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n }\n .glyphicon-hdd:before {\n content: \"\\e121\";\n }\n .glyphicon-bullhorn:before {\n content: \"\\e122\";\n }\n .glyphicon-bell:before {\n content: \"\\e123\";\n }\n .glyphicon-certificate:before {\n content: \"\\e124\";\n }\n .glyphicon-thumbs-up:before {\n content: \"\\e125\";\n }\n .glyphicon-thumbs-down:before {\n content: \"\\e126\";\n }\n .glyphicon-hand-right:before {\n content: \"\\e127\";\n }\n .glyphicon-hand-left:before {\n content: \"\\e128\";\n }\n .glyphicon-hand-up:before {\n content: \"\\e129\";\n }\n .glyphicon-hand-down:before {\n content: \"\\e130\";\n }\n .glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n }\n .glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n }\n .glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n }\n .glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n }\n .glyphicon-globe:before {\n content: \"\\e135\";\n }\n .glyphicon-wrench:before {\n content: \"\\e136\";\n }\n .glyphicon-tasks:before {\n content: \"\\e137\";\n }\n .glyphicon-filter:before {\n content: \"\\e138\";\n }\n .glyphicon-briefcase:before {\n content: \"\\e139\";\n }\n .glyphicon-fullscreen:before {\n content: \"\\e140\";\n }\n .glyphicon-dashboard:before {\n content: \"\\e141\";\n }\n .glyphicon-paperclip:before {\n content: \"\\e142\";\n }\n .glyphicon-heart-empty:before {\n content: \"\\e143\";\n }\n .glyphicon-link:before {\n content: \"\\e144\";\n }\n .glyphicon-phone:before {\n content: \"\\e145\";\n }\n .glyphicon-pushpin:before {\n content: \"\\e146\";\n }\n .glyphicon-usd:before {\n content: \"\\e148\";\n }\n .glyphicon-gbp:before {\n content: \"\\e149\";\n }\n .glyphicon-sort:before {\n content: \"\\e150\";\n }\n .glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n }\n .glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n }\n .glyphicon-sort-by-order:before {\n content: \"\\e153\";\n }\n .glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n }\n .glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n }\n .glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n }\n .glyphicon-unchecked:before {\n content: \"\\e157\";\n }\n .glyphicon-expand:before {\n content: \"\\e158\";\n }\n .glyphicon-collapse-down:before {\n content: \"\\e159\";\n }\n .glyphicon-collapse-up:before {\n content: \"\\e160\";\n }\n .glyphicon-log-in:before {\n content: \"\\e161\";\n }\n .glyphicon-flash:before {\n content: \"\\e162\";\n }\n .glyphicon-log-out:before {\n content: \"\\e163\";\n }\n .glyphicon-new-window:before {\n content: \"\\e164\";\n }\n .glyphicon-record:before {\n content: \"\\e165\";\n }\n .glyphicon-save:before {\n content: \"\\e166\";\n }\n .glyphicon-open:before {\n content: \"\\e167\";\n }\n .glyphicon-saved:before {\n content: \"\\e168\";\n }\n .glyphicon-import:before {\n content: \"\\e169\";\n }\n .glyphicon-export:before {\n content: \"\\e170\";\n }\n .glyphicon-send:before {\n content: \"\\e171\";\n }\n .glyphicon-floppy-disk:before {\n content: \"\\e172\";\n }\n .glyphicon-floppy-saved:before {\n content: \"\\e173\";\n }\n .glyphicon-floppy-remove:before {\n content: \"\\e174\";\n }\n .glyphicon-floppy-save:before {\n content: \"\\e175\";\n }\n .glyphicon-floppy-open:before {\n content: \"\\e176\";\n }\n .glyphicon-credit-card:before {\n content: \"\\e177\";\n }\n .glyphicon-transfer:before {\n content: \"\\e178\";\n }\n .glyphicon-cutlery:before {\n content: \"\\e179\";\n }\n .glyphicon-header:before {\n content: \"\\e180\";\n }\n .glyphicon-compressed:before {\n content: \"\\e181\";\n }\n .glyphicon-earphone:before {\n content: \"\\e182\";\n }\n .glyphicon-phone-alt:before {\n content: \"\\e183\";\n }\n .glyphicon-tower:before {\n content: \"\\e184\";\n }\n .glyphicon-stats:before {\n content: \"\\e185\";\n }\n .glyphicon-sd-video:before {\n content: \"\\e186\";\n }\n .glyphicon-hd-video:before {\n content: \"\\e187\";\n }\n .glyphicon-subtitles:before {\n content: \"\\e188\";\n }\n .glyphicon-sound-stereo:before {\n content: \"\\e189\";\n }\n .glyphicon-sound-dolby:before {\n content: \"\\e190\";\n }\n .glyphicon-sound-5-1:before {\n content: \"\\e191\";\n }\n .glyphicon-sound-6-1:before {\n content: \"\\e192\";\n }\n .glyphicon-sound-7-1:before {\n content: \"\\e193\";\n }\n .glyphicon-copyright-mark:before {\n content: \"\\e194\";\n }\n .glyphicon-registration-mark:before {\n content: \"\\e195\";\n }\n .glyphicon-cloud-download:before {\n content: \"\\e197\";\n }\n .glyphicon-cloud-upload:before {\n content: \"\\e198\";\n }\n .glyphicon-tree-conifer:before {\n content: \"\\e199\";\n }\n .glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n }\n .glyphicon-cd:before {\n content: \"\\e201\";\n }\n .glyphicon-save-file:before {\n content: \"\\e202\";\n }\n .glyphicon-open-file:before {\n content: \"\\e203\";\n }\n .glyphicon-level-up:before {\n content: \"\\e204\";\n }\n .glyphicon-copy:before {\n content: \"\\e205\";\n }\n .glyphicon-paste:before {\n content: \"\\e206\";\n }\n .glyphicon-alert:before {\n content: \"\\e209\";\n }\n .glyphicon-equalizer:before {\n content: \"\\e210\";\n }\n .glyphicon-king:before {\n content: \"\\e211\";\n }\n .glyphicon-queen:before {\n content: \"\\e212\";\n }\n .glyphicon-pawn:before {\n content: \"\\e213\";\n }\n .glyphicon-bishop:before {\n content: \"\\e214\";\n }\n .glyphicon-knight:before {\n content: \"\\e215\";\n }\n .glyphicon-baby-formula:before {\n content: \"\\e216\";\n }\n .glyphicon-tent:before {\n content: \"\\26fa\";\n }\n .glyphicon-blackboard:before {\n content: \"\\e218\";\n }\n .glyphicon-bed:before {\n content: \"\\e219\";\n }\n .glyphicon-apple:before {\n content: \"\\f8ff\";\n }\n .glyphicon-erase:before {\n content: \"\\e221\";\n }\n .glyphicon-hourglass:before {\n content: \"\\231b\";\n }\n .glyphicon-lamp:before {\n content: \"\\e223\";\n }\n .glyphicon-duplicate:before {\n content: \"\\e224\";\n }\n .glyphicon-piggy-bank:before {\n content: \"\\e225\";\n }\n .glyphicon-scissors:before {\n content: \"\\e226\";\n }\n .glyphicon-bitcoin:before {\n content: \"\\e227\";\n }\n .glyphicon-btc:before {\n content: \"\\e227\";\n }\n .glyphicon-xbt:before {\n content: \"\\e227\";\n }\n .glyphicon-yen:before {\n content: \"\\00a5\";\n }\n .glyphicon-jpy:before {\n content: \"\\00a5\";\n }\n .glyphicon-ruble:before {\n content: \"\\20bd\";\n }\n .glyphicon-rub:before {\n content: \"\\20bd\";\n }\n .glyphicon-scale:before {\n content: \"\\e230\";\n }\n .glyphicon-ice-lolly:before {\n content: \"\\e231\";\n }\n .glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n }\n .glyphicon-education:before {\n content: \"\\e233\";\n }\n .glyphicon-option-horizontal:before {\n content: \"\\e234\";\n }\n .glyphicon-option-vertical:before {\n content: \"\\e235\";\n }\n .glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n }\n .glyphicon-modal-window:before {\n content: \"\\e237\";\n }\n .glyphicon-oil:before {\n content: \"\\e238\";\n }\n .glyphicon-grain:before {\n content: \"\\e239\";\n }\n .glyphicon-sunglasses:before {\n content: \"\\e240\";\n }\n .glyphicon-text-size:before {\n content: \"\\e241\";\n }\n .glyphicon-text-color:before {\n content: \"\\e242\";\n }\n .glyphicon-text-background:before {\n content: \"\\e243\";\n }\n .glyphicon-object-align-top:before {\n content: \"\\e244\";\n }\n .glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n }\n .glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n }\n .glyphicon-object-align-left:before {\n content: \"\\e247\";\n }\n .glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n }\n .glyphicon-object-align-right:before {\n content: \"\\e249\";\n }\n .glyphicon-triangle-right:before {\n content: \"\\e250\";\n }\n .glyphicon-triangle-left:before {\n content: \"\\e251\";\n }\n .glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n }\n .glyphicon-triangle-top:before {\n content: \"\\e253\";\n }\n .glyphicon-console:before {\n content: \"\\e254\";\n }\n .glyphicon-superscript:before {\n content: \"\\e255\";\n }\n .glyphicon-subscript:before {\n content: \"\\e256\";\n }\n .glyphicon-menu-left:before {\n content: \"\\e257\";\n }\n .glyphicon-menu-right:before {\n content: \"\\e258\";\n }\n .glyphicon-menu-down:before {\n content: \"\\e259\";\n }\n .glyphicon-menu-up:before {\n content: \"\\e260\";\n }\n * {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n }\n *:before,\n *:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n }\n html {\n font-size: 10px;\n\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n }\n body {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333;\n background-color: #fff;\n }\n input,\n button,\n select,\n textarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n }\n a {\n color: #337ab7;\n text-decoration: none;\n }\n a:hover,\n a:focus {\n color: #23527c;\n text-decoration: underline;\n }\n a:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n }\n figure {\n margin: 0;\n }\n img {\n vertical-align: middle;\n }\n .img-responsive,\n .thumbnail > img,\n .thumbnail a > img,\n .carousel-inner > .item > img,\n .carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n }\n .img-rounded {\n border-radius: 6px;\n }\n .img-thumbnail {\n display: inline-block;\n max-width: 100%;\n height: auto;\n padding: 4px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n }\n .img-circle {\n border-radius: 50%;\n }\n hr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eee;\n }\n .sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n }\n .sr-only-focusable:active,\n .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n [role=\"button\"] {\n cursor: pointer;\n }\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .h1,\n .h2,\n .h3,\n .h4,\n .h5,\n .h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n }\n h1 small,\n h2 small,\n h3 small,\n h4 small,\n h5 small,\n h6 small,\n .h1 small,\n .h2 small,\n .h3 small,\n .h4 small,\n .h5 small,\n .h6 small,\n h1 .small,\n h2 .small,\n h3 .small,\n h4 .small,\n h5 .small,\n h6 .small,\n .h1 .small,\n .h2 .small,\n .h3 .small,\n .h4 .small,\n .h5 .small,\n .h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777;\n }\n h1,\n .h1,\n h2,\n .h2,\n h3,\n .h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n }\n h1 small,\n .h1 small,\n h2 small,\n .h2 small,\n h3 small,\n .h3 small,\n h1 .small,\n .h1 .small,\n h2 .small,\n .h2 .small,\n h3 .small,\n .h3 .small {\n font-size: 65%;\n }\n h4,\n .h4,\n h5,\n .h5,\n h6,\n .h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n }\n h4 small,\n .h4 small,\n h5 small,\n .h5 small,\n h6 small,\n .h6 small,\n h4 .small,\n .h4 .small,\n h5 .small,\n .h5 .small,\n h6 .small,\n .h6 .small {\n font-size: 75%;\n }\n h1,\n .h1 {\n font-size: 36px;\n }\n h2,\n .h2 {\n font-size: 30px;\n }\n h3,\n .h3 {\n font-size: 24px;\n }\n h4,\n .h4 {\n font-size: 18px;\n }\n h5,\n .h5 {\n font-size: 14px;\n }\n h6,\n .h6 {\n font-size: 12px;\n }\n p {\n margin: 0 0 10px;\n }\n .lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n }\n @media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n }\n small,\n .small {\n font-size: 85%;\n }\n mark,\n .mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n }\n .text-left {\n text-align: left;\n }\n .text-right {\n text-align: right;\n }\n .text-center {\n text-align: center;\n }\n .text-justify {\n text-align: justify;\n }\n .text-nowrap {\n white-space: nowrap;\n }\n .text-lowercase {\n text-transform: lowercase;\n }\n .text-uppercase {\n text-transform: uppercase;\n }\n .text-capitalize {\n text-transform: capitalize;\n }\n .text-muted {\n color: #777;\n }\n .text-primary {\n color: #337ab7;\n }\n a.text-primary:hover {\n color: #286090;\n }\n .text-success {\n color: #3c763d;\n }\n a.text-success:hover {\n color: #2b542c;\n }\n .text-info {\n color: #31708f;\n }\n a.text-info:hover {\n color: #245269;\n }\n .text-warning {\n color: #8a6d3b;\n }\n a.text-warning:hover {\n color: #66512c;\n }\n .text-danger {\n color: #a94442;\n }\n a.text-danger:hover {\n color: #843534;\n }\n .bg-primary {\n color: #fff;\n background-color: #337ab7;\n }\n a.bg-primary:hover {\n background-color: #286090;\n }\n .bg-success {\n background-color: #dff0d8;\n }\n a.bg-success:hover {\n background-color: #c1e2b3;\n }\n .bg-info {\n background-color: #d9edf7;\n }\n a.bg-info:hover {\n background-color: #afd9ee;\n }\n .bg-warning {\n background-color: #fcf8e3;\n }\n a.bg-warning:hover {\n background-color: #f7ecb5;\n }\n .bg-danger {\n background-color: #f2dede;\n }\n a.bg-danger:hover {\n background-color: #e4b9b9;\n }\n .page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eee;\n }\n ul,\n ol {\n margin-top: 0;\n margin-bottom: 10px;\n }\n ul ul,\n ol ul,\n ul ol,\n ol ol {\n margin-bottom: 0;\n }\n .list-unstyled {\n padding-left: 0;\n list-style: none;\n }\n .list-inline {\n padding-left: 0;\n margin-left: -5px;\n list-style: none;\n }\n .list-inline > li {\n display: inline-block;\n padding-right: 5px;\n padding-left: 5px;\n }\n dl {\n margin-top: 0;\n margin-bottom: 20px;\n }\n dt,\n dd {\n line-height: 1.42857143;\n }\n dt {\n font-weight: bold;\n }\n dd {\n margin-left: 0;\n }\n @media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n overflow: hidden;\n clear: left;\n text-align: right;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n }\n abbr[title],\n abbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777;\n }\n .initialism {\n font-size: 90%;\n text-transform: uppercase;\n }\n blockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eee;\n }\n blockquote p:last-child,\n blockquote ul:last-child,\n blockquote ol:last-child {\n margin-bottom: 0;\n }\n blockquote footer,\n blockquote small,\n blockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777;\n }\n blockquote footer:before,\n blockquote small:before,\n blockquote .small:before {\n content: \"\\2014 \\00A0\";\n }\n .blockquote-reverse,\n blockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n text-align: right;\n border-right: 5px solid #eee;\n border-left: 0;\n }\n .blockquote-reverse footer:before,\n blockquote.pull-right footer:before,\n .blockquote-reverse small:before,\n blockquote.pull-right small:before,\n .blockquote-reverse .small:before,\n blockquote.pull-right .small:before {\n content: \"\";\n }\n .blockquote-reverse footer:after,\n blockquote.pull-right footer:after,\n .blockquote-reverse small:after,\n blockquote.pull-right small:after,\n .blockquote-reverse .small:after,\n blockquote.pull-right .small:after {\n content: \"\\00A0 \\2014\";\n }\n address {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n }\n code,\n kbd,\n pre,\n samp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n }\n code {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n }\n kbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #fff;\n background-color: #333;\n border-radius: 3px;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n }\n kbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n pre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n color: #333;\n word-break: break-all;\n word-wrap: break-word;\n background-color: #f5f5f5;\n border: 1px solid #ccc;\n border-radius: 4px;\n }\n pre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n .pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n }\n .container {\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n }\n @media (min-width: 768px) {\n .container {\n width: 750px;\n }\n }\n @media (min-width: 992px) {\n .container {\n width: 970px;\n }\n }\n @media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n }\n .container-fluid {\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n }\n .row {\n margin-right: -15px;\n margin-left: -15px;\n }\n //.col-xs-1,\n //.col-sm-1,\n //.col-md-1,\n //.col-lg-1,\n //.col-xs-2,\n //.col-sm-2,\n //.col-md-2,\n //.col-lg-2,\n //.col-xs-3,\n //.col-sm-3,\n //.col-md-3,\n //.col-lg-3,\n //.col-xs-4,\n //.col-sm-4,\n //.col-md-4,\n //.col-lg-4,\n //.col-xs-5,\n //.col-sm-5,\n //.col-md-5,\n //.col-lg-5,\n //.col-xs-6,\n //.col-sm-6,\n //.col-md-6,\n //.col-lg-6,\n //.col-xs-7,\n //.col-sm-7,\n //.col-md-7,\n //.col-lg-7,\n //.col-xs-8,\n //.col-sm-8,\n //.col-md-8,\n //.col-lg-8,\n //.col-xs-9,\n //.col-sm-9,\n //.col-md-9,\n //.col-lg-9,\n //.col-xs-10,\n //.col-sm-10,\n //.col-md-10,\n //.col-lg-10,\n //.col-xs-11,\n //.col-sm-11,\n //.col-md-11,\n //.col-lg-11,\n //.col-xs-12,\n //.col-sm-12,\n //.col-md-12,\n //.col-lg-12 {\n // position: relative;\n // min-height: 1px;\n // padding-right: 15px;\n // padding-left: 15px;\n //}\n //.col-xs-1,\n //.col-xs-2,\n //.col-xs-3,\n //.col-xs-4,\n //.col-xs-5,\n //.col-xs-6,\n //.col-xs-7,\n //.col-xs-8,\n //.col-xs-9,\n //.col-xs-10,\n //.col-xs-11,\n //.col-xs-12 {\n // float: left;\n //}\n //.col-xs-12 {\n // width: 100%;\n //}\n //.col-xs-11 {\n // width: 91.66666667%;\n //}\n //.col-xs-10 {\n // width: 83.33333333%;\n //}\n //.col-xs-9 {\n // width: 75%;\n //}\n //.col-xs-8 {\n // width: 66.66666667%;\n //}\n //.col-xs-7 {\n // width: 58.33333333%;\n //}\n //.col-xs-6 {\n // width: 50%;\n //}\n //.col-xs-5 {\n // width: 41.66666667%;\n //}\n //.col-xs-4 {\n // width: 33.33333333%;\n //}\n //.col-xs-3 {\n // width: 25%;\n //}\n //.col-xs-2 {\n // width: 16.66666667%;\n //}\n //.col-xs-1 {\n // width: 8.33333333%;\n //}\n //.col-xs-pull-12 {\n // right: 100%;\n //}\n //.col-xs-pull-11 {\n // right: 91.66666667%;\n //}\n //.col-xs-pull-10 {\n // right: 83.33333333%;\n //}\n //.col-xs-pull-9 {\n // right: 75%;\n //}\n //.col-xs-pull-8 {\n // right: 66.66666667%;\n //}\n //.col-xs-pull-7 {\n // right: 58.33333333%;\n //}\n //.col-xs-pull-6 {\n // right: 50%;\n //}\n //.col-xs-pull-5 {\n // right: 41.66666667%;\n //}\n //.col-xs-pull-4 {\n // right: 33.33333333%;\n //}\n //.col-xs-pull-3 {\n // right: 25%;\n //}\n //.col-xs-pull-2 {\n // right: 16.66666667%;\n //}\n //.col-xs-pull-1 {\n // right: 8.33333333%;\n //}\n //.col-xs-pull-0 {\n // right: auto;\n //}\n //.col-xs-push-12 {\n // left: 100%;\n //}\n //.col-xs-push-11 {\n // left: 91.66666667%;\n //}\n //.col-xs-push-10 {\n // left: 83.33333333%;\n //}\n //.col-xs-push-9 {\n // left: 75%;\n //}\n //.col-xs-push-8 {\n // left: 66.66666667%;\n //}\n //.col-xs-push-7 {\n // left: 58.33333333%;\n //}\n //.col-xs-push-6 {\n // left: 50%;\n //}\n //.col-xs-push-5 {\n // left: 41.66666667%;\n //}\n //.col-xs-push-4 {\n // left: 33.33333333%;\n //}\n //.col-xs-push-3 {\n // left: 25%;\n //}\n //.col-xs-push-2 {\n // left: 16.66666667%;\n //}\n //.col-xs-push-1 {\n // left: 8.33333333%;\n //}\n //.col-xs-push-0 {\n // left: auto;\n //}\n //.col-xs-offset-12 {\n // margin-left: 100%;\n //}\n //.col-xs-offset-11 {\n // margin-left: 91.66666667%;\n //}\n //.col-xs-offset-10 {\n // margin-left: 83.33333333%;\n //}\n //.col-xs-offset-9 {\n // margin-left: 75%;\n //}\n //.col-xs-offset-8 {\n // margin-left: 66.66666667%;\n //}\n //.col-xs-offset-7 {\n // margin-left: 58.33333333%;\n //}\n //.col-xs-offset-6 {\n // margin-left: 50%;\n //}\n //.col-xs-offset-5 {\n // margin-left: 41.66666667%;\n //}\n //.col-xs-offset-4 {\n // margin-left: 33.33333333%;\n //}\n //.col-xs-offset-3 {\n // margin-left: 25%;\n //}\n //.col-xs-offset-2 {\n // margin-left: 16.66666667%;\n //}\n //.col-xs-offset-1 {\n // margin-left: 8.33333333%;\n //}\n //.col-xs-offset-0 {\n // margin-left: 0;\n //}\n //@media (min-width: 768px) {\n // .col-sm-1,\n // .col-sm-2,\n // .col-sm-3,\n // .col-sm-4,\n // .col-sm-5,\n // .col-sm-6,\n // .col-sm-7,\n // .col-sm-8,\n // .col-sm-9,\n // .col-sm-10,\n // .col-sm-11,\n // .col-sm-12 {\n // float: left;\n // }\n // .col-sm-12 {\n // width: 100%;\n // }\n // .col-sm-11 {\n // width: 91.66666667%;\n // }\n // .col-sm-10 {\n // width: 83.33333333%;\n // }\n // .col-sm-9 {\n // width: 75%;\n // }\n // .col-sm-8 {\n // width: 66.66666667%;\n // }\n // .col-sm-7 {\n // width: 58.33333333%;\n // }\n // .col-sm-6 {\n // width: 50%;\n // }\n // .col-sm-5 {\n // width: 41.66666667%;\n // }\n // .col-sm-4 {\n // width: 33.33333333%;\n // }\n // .col-sm-3 {\n // width: 25%;\n // }\n // .col-sm-2 {\n // width: 16.66666667%;\n // }\n // .col-sm-1 {\n // width: 8.33333333%;\n // }\n // .col-sm-pull-12 {\n // right: 100%;\n // }\n // .col-sm-pull-11 {\n // right: 91.66666667%;\n // }\n // .col-sm-pull-10 {\n // right: 83.33333333%;\n // }\n // .col-sm-pull-9 {\n // right: 75%;\n // }\n // .col-sm-pull-8 {\n // right: 66.66666667%;\n // }\n // .col-sm-pull-7 {\n // right: 58.33333333%;\n // }\n // .col-sm-pull-6 {\n // right: 50%;\n // }\n // .col-sm-pull-5 {\n // right: 41.66666667%;\n // }\n // .col-sm-pull-4 {\n // right: 33.33333333%;\n // }\n // .col-sm-pull-3 {\n // right: 25%;\n // }\n // .col-sm-pull-2 {\n // right: 16.66666667%;\n // }\n // .col-sm-pull-1 {\n // right: 8.33333333%;\n // }\n // .col-sm-pull-0 {\n // right: auto;\n // }\n // .col-sm-push-12 {\n // left: 100%;\n // }\n // .col-sm-push-11 {\n // left: 91.66666667%;\n // }\n // .col-sm-push-10 {\n // left: 83.33333333%;\n // }\n // .col-sm-push-9 {\n // left: 75%;\n // }\n // .col-sm-push-8 {\n // left: 66.66666667%;\n // }\n // .col-sm-push-7 {\n // left: 58.33333333%;\n // }\n // .col-sm-push-6 {\n // left: 50%;\n // }\n // .col-sm-push-5 {\n // left: 41.66666667%;\n // }\n // .col-sm-push-4 {\n // left: 33.33333333%;\n // }\n // .col-sm-push-3 {\n // left: 25%;\n // }\n // .col-sm-push-2 {\n // left: 16.66666667%;\n // }\n // .col-sm-push-1 {\n // left: 8.33333333%;\n // }\n // .col-sm-push-0 {\n // left: auto;\n // }\n // .col-sm-offset-12 {\n // margin-left: 100%;\n // }\n // .col-sm-offset-11 {\n // margin-left: 91.66666667%;\n // }\n // .col-sm-offset-10 {\n // margin-left: 83.33333333%;\n // }\n // .col-sm-offset-9 {\n // margin-left: 75%;\n // }\n // .col-sm-offset-8 {\n // margin-left: 66.66666667%;\n // }\n // .col-sm-offset-7 {\n // margin-left: 58.33333333%;\n // }\n // .col-sm-offset-6 {\n // margin-left: 50%;\n // }\n // .col-sm-offset-5 {\n // margin-left: 41.66666667%;\n // }\n // .col-sm-offset-4 {\n // margin-left: 33.33333333%;\n // }\n // .col-sm-offset-3 {\n // margin-left: 25%;\n // }\n // .col-sm-offset-2 {\n // margin-left: 16.66666667%;\n // }\n // .col-sm-offset-1 {\n // margin-left: 8.33333333%;\n // }\n // .col-sm-offset-0 {\n // margin-left: 0;\n // }\n //}\n //@media (min-width: 992px) {\n // .col-md-1,\n // .col-md-2,\n // .col-md-3,\n // .col-md-4,\n // .col-md-5,\n // .col-md-6,\n // .col-md-7,\n // .col-md-8,\n // .col-md-9,\n // .col-md-10,\n // .col-md-11,\n // .col-md-12 {\n // float: left;\n // }\n // .col-md-12 {\n // width: 100%;\n // }\n // .col-md-11 {\n // width: 91.66666667%;\n // }\n // .col-md-10 {\n // width: 83.33333333%;\n // }\n // .col-md-9 {\n // width: 75%;\n // }\n // .col-md-8 {\n // width: 66.66666667%;\n // }\n // .col-md-7 {\n // width: 58.33333333%;\n // }\n // .col-md-6 {\n // width: 50%;\n // }\n // .col-md-5 {\n // width: 41.66666667%;\n // }\n // .col-md-4 {\n // width: 33.33333333%;\n // }\n // .col-md-3 {\n // width: 25%;\n // }\n // .col-md-2 {\n // width: 16.66666667%;\n // }\n // .col-md-1 {\n // width: 8.33333333%;\n // }\n // .col-md-pull-12 {\n // right: 100%;\n // }\n // .col-md-pull-11 {\n // right: 91.66666667%;\n // }\n // .col-md-pull-10 {\n // right: 83.33333333%;\n // }\n // .col-md-pull-9 {\n // right: 75%;\n // }\n // .col-md-pull-8 {\n // right: 66.66666667%;\n // }\n // .col-md-pull-7 {\n // right: 58.33333333%;\n // }\n // .col-md-pull-6 {\n // right: 50%;\n // }\n // .col-md-pull-5 {\n // right: 41.66666667%;\n // }\n // .col-md-pull-4 {\n // right: 33.33333333%;\n // }\n // .col-md-pull-3 {\n // right: 25%;\n // }\n // .col-md-pull-2 {\n // right: 16.66666667%;\n // }\n // .col-md-pull-1 {\n // right: 8.33333333%;\n // }\n // .col-md-pull-0 {\n // right: auto;\n // }\n // .col-md-push-12 {\n // left: 100%;\n // }\n // .col-md-push-11 {\n // left: 91.66666667%;\n // }\n // .col-md-push-10 {\n // left: 83.33333333%;\n // }\n // .col-md-push-9 {\n // left: 75%;\n // }\n // .col-md-push-8 {\n // left: 66.66666667%;\n // }\n // .col-md-push-7 {\n // left: 58.33333333%;\n // }\n // .col-md-push-6 {\n // left: 50%;\n // }\n // .col-md-push-5 {\n // left: 41.66666667%;\n // }\n // .col-md-push-4 {\n // left: 33.33333333%;\n // }\n // .col-md-push-3 {\n // left: 25%;\n // }\n // .col-md-push-2 {\n // left: 16.66666667%;\n // }\n // .col-md-push-1 {\n // left: 8.33333333%;\n // }\n // .col-md-push-0 {\n // left: auto;\n // }\n // .col-md-offset-12 {\n // margin-left: 100%;\n // }\n // .col-md-offset-11 {\n // margin-left: 91.66666667%;\n // }\n // .col-md-offset-10 {\n // margin-left: 83.33333333%;\n // }\n // .col-md-offset-9 {\n // margin-left: 75%;\n // }\n // .col-md-offset-8 {\n // margin-left: 66.66666667%;\n // }\n // .col-md-offset-7 {\n // margin-left: 58.33333333%;\n // }\n // .col-md-offset-6 {\n // margin-left: 50%;\n // }\n // .col-md-offset-5 {\n // margin-left: 41.66666667%;\n // }\n // .col-md-offset-4 {\n // margin-left: 33.33333333%;\n // }\n // .col-md-offset-3 {\n // margin-left: 25%;\n // }\n // .col-md-offset-2 {\n // margin-left: 16.66666667%;\n // }\n // .col-md-offset-1 {\n // margin-left: 8.33333333%;\n // }\n // .col-md-offset-0 {\n // margin-left: 0;\n // }\n //}\n //@media (min-width: 1200px) {\n // .col-lg-1,\n // .col-lg-2,\n // .col-lg-3,\n // .col-lg-4,\n // .col-lg-5,\n // .col-lg-6,\n // .col-lg-7,\n // .col-lg-8,\n // .col-lg-9,\n // .col-lg-10,\n // .col-lg-11,\n // .col-lg-12 {\n // float: left;\n // }\n // .col-lg-12 {\n // width: 100%;\n // }\n // .col-lg-11 {\n // width: 91.66666667%;\n // }\n // .col-lg-10 {\n // width: 83.33333333%;\n // }\n // .col-lg-9 {\n // width: 75%;\n // }\n // .col-lg-8 {\n // width: 66.66666667%;\n // }\n // .col-lg-7 {\n // width: 58.33333333%;\n // }\n // .col-lg-6 {\n // width: 50%;\n // }\n // .col-lg-5 {\n // width: 41.66666667%;\n // }\n // .col-lg-4 {\n // width: 33.33333333%;\n // }\n // .col-lg-3 {\n // width: 25%;\n // }\n // .col-lg-2 {\n // width: 16.66666667%;\n // }\n // .col-lg-1 {\n // width: 8.33333333%;\n // }\n // .col-lg-pull-12 {\n // right: 100%;\n // }\n // .col-lg-pull-11 {\n // right: 91.66666667%;\n // }\n // .col-lg-pull-10 {\n // right: 83.33333333%;\n // }\n // .col-lg-pull-9 {\n // right: 75%;\n // }\n // .col-lg-pull-8 {\n // right: 66.66666667%;\n // }\n // .col-lg-pull-7 {\n // right: 58.33333333%;\n // }\n // .col-lg-pull-6 {\n // right: 50%;\n // }\n // .col-lg-pull-5 {\n // right: 41.66666667%;\n // }\n // .col-lg-pull-4 {\n // right: 33.33333333%;\n // }\n // .col-lg-pull-3 {\n // right: 25%;\n // }\n // .col-lg-pull-2 {\n // right: 16.66666667%;\n // }\n // .col-lg-pull-1 {\n // right: 8.33333333%;\n // }\n // .col-lg-pull-0 {\n // right: auto;\n // }\n // .col-lg-push-12 {\n // left: 100%;\n // }\n // .col-lg-push-11 {\n // left: 91.66666667%;\n // }\n // .col-lg-push-10 {\n // left: 83.33333333%;\n // }\n // .col-lg-push-9 {\n // left: 75%;\n // }\n // .col-lg-push-8 {\n // left: 66.66666667%;\n // }\n // .col-lg-push-7 {\n // left: 58.33333333%;\n // }\n // .col-lg-push-6 {\n // left: 50%;\n // }\n // .col-lg-push-5 {\n // left: 41.66666667%;\n // }\n // .col-lg-push-4 {\n // left: 33.33333333%;\n // }\n // .col-lg-push-3 {\n // left: 25%;\n // }\n // .col-lg-push-2 {\n // left: 16.66666667%;\n // }\n // .col-lg-push-1 {\n // left: 8.33333333%;\n // }\n // .col-lg-push-0 {\n // left: auto;\n // }\n // .col-lg-offset-12 {\n // margin-left: 100%;\n // }\n // .col-lg-offset-11 {\n // margin-left: 91.66666667%;\n // }\n // .col-lg-offset-10 {\n // margin-left: 83.33333333%;\n // }\n // .col-lg-offset-9 {\n // margin-left: 75%;\n // }\n // .col-lg-offset-8 {\n // margin-left: 66.66666667%;\n // }\n // .col-lg-offset-7 {\n // margin-left: 58.33333333%;\n // }\n // .col-lg-offset-6 {\n // margin-left: 50%;\n // }\n // .col-lg-offset-5 {\n // margin-left: 41.66666667%;\n // }\n // .col-lg-offset-4 {\n // margin-left: 33.33333333%;\n // }\n // .col-lg-offset-3 {\n // margin-left: 25%;\n // }\n // .col-lg-offset-2 {\n // margin-left: 16.66666667%;\n // }\n // .col-lg-offset-1 {\n // margin-left: 8.33333333%;\n // }\n // .col-lg-offset-0 {\n // margin-left: 0;\n // }\n //}\n table {\n background-color: transparent;\n }\n caption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777;\n text-align: left;\n }\n th {\n text-align: left;\n }\n .table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n }\n .table > thead > tr > th,\n .table > tbody > tr > th,\n .table > tfoot > tr > th,\n .table > thead > tr > td,\n .table > tbody > tr > td,\n .table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n }\n .table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n }\n .table > caption + thead > tr:first-child > th,\n .table > colgroup + thead > tr:first-child > th,\n .table > thead:first-child > tr:first-child > th,\n .table > caption + thead > tr:first-child > td,\n .table > colgroup + thead > tr:first-child > td,\n .table > thead:first-child > tr:first-child > td {\n border-top: 0;\n }\n .table > tbody + tbody {\n border-top: 2px solid #ddd;\n }\n .table .table {\n background-color: #fff;\n }\n .table-condensed > thead > tr > th,\n .table-condensed > tbody > tr > th,\n .table-condensed > tfoot > tr > th,\n .table-condensed > thead > tr > td,\n .table-condensed > tbody > tr > td,\n .table-condensed > tfoot > tr > td {\n padding: 5px;\n }\n .table-bordered {\n border: 1px solid #ddd;\n }\n .table-bordered > thead > tr > th,\n .table-bordered > tbody > tr > th,\n .table-bordered > tfoot > tr > th,\n .table-bordered > thead > tr > td,\n .table-bordered > tbody > tr > td,\n .table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n }\n .table-bordered > thead > tr > th,\n .table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n }\n .table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n }\n .table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n }\n table col[class*=\"col-\"] {\n position: static;\n display: table-column;\n float: none;\n }\n table td[class*=\"col-\"],\n table th[class*=\"col-\"] {\n position: static;\n display: table-cell;\n float: none;\n }\n .table > thead > tr > td.active,\n .table > tbody > tr > td.active,\n .table > tfoot > tr > td.active,\n .table > thead > tr > th.active,\n .table > tbody > tr > th.active,\n .table > tfoot > tr > th.active,\n .table > thead > tr.active > td,\n .table > tbody > tr.active > td,\n .table > tfoot > tr.active > td,\n .table > thead > tr.active > th,\n .table > tbody > tr.active > th,\n .table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n }\n .table-hover > tbody > tr > td.active:hover,\n .table-hover > tbody > tr > th.active:hover,\n .table-hover > tbody > tr.active:hover > td,\n .table-hover > tbody > tr:hover > .active,\n .table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n }\n .table > thead > tr > td.success,\n .table > tbody > tr > td.success,\n .table > tfoot > tr > td.success,\n .table > thead > tr > th.success,\n .table > tbody > tr > th.success,\n .table > tfoot > tr > th.success,\n .table > thead > tr.success > td,\n .table > tbody > tr.success > td,\n .table > tfoot > tr.success > td,\n .table > thead > tr.success > th,\n .table > tbody > tr.success > th,\n .table > tfoot > tr.success > th {\n background-color: #dff0d8;\n }\n .table-hover > tbody > tr > td.success:hover,\n .table-hover > tbody > tr > th.success:hover,\n .table-hover > tbody > tr.success:hover > td,\n .table-hover > tbody > tr:hover > .success,\n .table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n }\n .table > thead > tr > td.info,\n .table > tbody > tr > td.info,\n .table > tfoot > tr > td.info,\n .table > thead > tr > th.info,\n .table > tbody > tr > th.info,\n .table > tfoot > tr > th.info,\n .table > thead > tr.info > td,\n .table > tbody > tr.info > td,\n .table > tfoot > tr.info > td,\n .table > thead > tr.info > th,\n .table > tbody > tr.info > th,\n .table > tfoot > tr.info > th {\n background-color: #d9edf7;\n }\n .table-hover > tbody > tr > td.info:hover,\n .table-hover > tbody > tr > th.info:hover,\n .table-hover > tbody > tr.info:hover > td,\n .table-hover > tbody > tr:hover > .info,\n .table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n }\n .table > thead > tr > td.warning,\n .table > tbody > tr > td.warning,\n .table > tfoot > tr > td.warning,\n .table > thead > tr > th.warning,\n .table > tbody > tr > th.warning,\n .table > tfoot > tr > th.warning,\n .table > thead > tr.warning > td,\n .table > tbody > tr.warning > td,\n .table > tfoot > tr.warning > td,\n .table > thead > tr.warning > th,\n .table > tbody > tr.warning > th,\n .table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n }\n .table-hover > tbody > tr > td.warning:hover,\n .table-hover > tbody > tr > th.warning:hover,\n .table-hover > tbody > tr.warning:hover > td,\n .table-hover > tbody > tr:hover > .warning,\n .table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n }\n .table > thead > tr > td.danger,\n .table > tbody > tr > td.danger,\n .table > tfoot > tr > td.danger,\n .table > thead > tr > th.danger,\n .table > tbody > tr > th.danger,\n .table > tfoot > tr > th.danger,\n .table > thead > tr.danger > td,\n .table > tbody > tr.danger > td,\n .table > tfoot > tr.danger > td,\n .table > thead > tr.danger > th,\n .table > tbody > tr.danger > th,\n .table > tfoot > tr.danger > th {\n background-color: #f2dede;\n }\n .table-hover > tbody > tr > td.danger:hover,\n .table-hover > tbody > tr > th.danger:hover,\n .table-hover > tbody > tr.danger:hover > td,\n .table-hover > tbody > tr:hover > .danger,\n .table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n }\n .table-responsive {\n min-height: 0.01%;\n overflow-x: auto;\n }\n @media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n }\n fieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n }\n legend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n }\n label {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n }\n input[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n }\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n }\n input[type=\"file\"] {\n display: block;\n }\n input[type=\"range\"] {\n display: block;\n width: 100%;\n }\n select[multiple],\n select[size] {\n height: auto;\n }\n input[type=\"file\"]:focus,\n input[type=\"radio\"]:focus,\n input[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n }\n output {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555;\n }\n //.form-control {\n // display: block;\n // width: 100%;\n // height: 34px;\n // padding: 6px 12px;\n // font-size: 14px;\n // line-height: 1.42857143;\n // color: #555;\n // background-color: #fff;\n // background-image: none;\n // border: 1px solid #ccc;\n // border-radius: 4px;\n // -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n // box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n // -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;\n // -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\n // transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\n //}\n //.form-control:focus {\n // border-color: #66afe9;\n // outline: 0;\n // -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n // box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n //}\n //.form-control::-moz-placeholder {\n // color: #999;\n // opacity: 1;\n //}\n //.form-control:-ms-input-placeholder {\n // color: #999;\n //}\n //.form-control::-webkit-input-placeholder {\n // color: #999;\n //}\n //.form-control[disabled],\n //.form-control[readonly],\n //fieldset[disabled] .form-control {\n // background-color: #eee;\n // opacity: 1;\n //}\n //.form-control[disabled],\n //fieldset[disabled] .form-control {\n // cursor: not-allowed;\n //}\n //textarea.form-control {\n // height: auto;\n //}\n //input[type='search'] {\n // -webkit-appearance: none;\n //}\n // @media screen and (-webkit-min-device-pixel-ratio: 0) {\n // input[type='date'],\n // input[type='time'],\n // input[type='datetime-local'],\n // input[type='month'] {\n // line-height: 34px;\n // }\n // input[type='date'].input-sm,\n // input[type='time'].input-sm,\n // input[type='datetime-local'].input-sm,\n // input[type='month'].input-sm,\n // .input-group-sm input[type='date'],\n // .input-group-sm input[type='time'],\n // .input-group-sm input[type='datetime-local'],\n // .input-group-sm input[type='month'] {\n // line-height: 30px;\n // }\n // input[type='date'].input-lg,\n // input[type='time'].input-lg,\n // input[type='datetime-local'].input-lg,\n // input[type='month'].input-lg,\n // .input-group-lg input[type='date'],\n // .input-group-lg input[type='time'],\n // .input-group-lg input[type='datetime-local'],\n // .input-group-lg input[type='month'] {\n // line-height: 46px;\n // }\n // }\n //.form-group {\n // margin-bottom: 15px;\n //}\n .radio,\n .checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n }\n .radio label,\n .checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n .radio input[type=\"radio\"],\n .radio-inline input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"],\n .checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-top: 4px \\9;\n margin-left: -20px;\n }\n .radio + .radio,\n .checkbox + .checkbox {\n margin-top: -5px;\n }\n .radio-inline,\n .checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n vertical-align: middle;\n cursor: pointer;\n }\n .radio-inline + .radio-inline,\n .checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n }\n input[type=\"radio\"][disabled],\n input[type=\"checkbox\"][disabled],\n input[type=\"radio\"].disabled,\n input[type=\"checkbox\"].disabled,\n fieldset[disabled] input[type=\"radio\"],\n fieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n }\n .radio-inline.disabled,\n .checkbox-inline.disabled,\n fieldset[disabled] .radio-inline,\n fieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n }\n .radio.disabled label,\n .checkbox.disabled label,\n fieldset[disabled] .radio label,\n fieldset[disabled] .checkbox label {\n cursor: not-allowed;\n }\n .form-control-static {\n min-height: 34px;\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n }\n .form-control-static.input-lg,\n .form-control-static.input-sm {\n padding-right: 0;\n padding-left: 0;\n }\n .input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n }\n select.input-sm {\n height: 30px;\n line-height: 30px;\n }\n textarea.input-sm,\n select[multiple].input-sm {\n height: auto;\n }\n .form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n }\n select.form-group-sm .form-control {\n height: 30px;\n line-height: 30px;\n }\n textarea.form-group-sm .form-control,\n select[multiple].form-group-sm .form-control {\n height: auto;\n }\n .form-group-sm .form-control-static {\n height: 30px;\n min-height: 32px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n }\n .input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n }\n select.input-lg {\n height: 46px;\n line-height: 46px;\n }\n textarea.input-lg,\n select[multiple].input-lg {\n height: auto;\n }\n .form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n }\n select.form-group-lg .form-control {\n height: 46px;\n line-height: 46px;\n }\n textarea.form-group-lg .form-control,\n select[multiple].form-group-lg .form-control {\n height: auto;\n }\n .form-group-lg .form-control-static {\n height: 46px;\n min-height: 38px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n }\n .has-feedback {\n position: relative;\n }\n .has-feedback .form-control {\n padding-right: 42.5px;\n }\n .form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n }\n .input-lg + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n }\n .input-sm + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n }\n .has-success .help-block,\n .has-success .control-label,\n .has-success .radio,\n .has-success .checkbox,\n .has-success .radio-inline,\n .has-success .checkbox-inline,\n .has-success.radio label,\n .has-success.checkbox label,\n .has-success.radio-inline label,\n .has-success.checkbox-inline label {\n color: #3c763d;\n }\n .has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n }\n .has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n }\n .has-success .input-group-addon {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #3c763d;\n }\n .has-success .form-control-feedback {\n color: #3c763d;\n }\n .has-warning .help-block,\n .has-warning .control-label,\n .has-warning .radio,\n .has-warning .checkbox,\n .has-warning .radio-inline,\n .has-warning .checkbox-inline,\n .has-warning.radio label,\n .has-warning.checkbox label,\n .has-warning.radio-inline label,\n .has-warning.checkbox-inline label {\n color: #8a6d3b;\n }\n .has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n }\n .has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n }\n .has-warning .input-group-addon {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #8a6d3b;\n }\n .has-warning .form-control-feedback {\n color: #8a6d3b;\n }\n .has-error .help-block,\n .has-error .control-label,\n .has-error .radio,\n .has-error .checkbox,\n .has-error .radio-inline,\n .has-error .checkbox-inline,\n .has-error.radio label,\n .has-error.checkbox label,\n .has-error.radio-inline label,\n .has-error.checkbox-inline label {\n color: #a94442;\n }\n .has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n }\n .has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n }\n .has-error .input-group-addon {\n color: #a94442;\n background-color: #f2dede;\n border-color: #a94442;\n }\n .has-error .form-control-feedback {\n color: #a94442;\n }\n .has-feedback label ~ .form-control-feedback {\n top: 25px;\n }\n .has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n }\n .help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n }\n @media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n .form-horizontal .radio,\n .form-horizontal .checkbox,\n .form-horizontal .radio-inline,\n .form-horizontal .checkbox-inline {\n padding-top: 7px;\n margin-top: 0;\n margin-bottom: 0;\n }\n .form-horizontal .radio,\n .form-horizontal .checkbox {\n min-height: 27px;\n }\n .form-horizontal .form-group {\n margin-right: -15px;\n margin-left: -15px;\n }\n @media (min-width: 768px) {\n .form-horizontal .control-label {\n padding-top: 7px;\n margin-bottom: 0;\n text-align: right;\n }\n }\n .form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n }\n @media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 14.333333px;\n }\n }\n @media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n }\n }\n .btn {\n display: inline-block;\n padding: 6px 12px;\n margin-bottom: 0;\n font-size: 14px;\n font-weight: normal;\n line-height: 1.42857143;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n }\n .btn:focus,\n .btn:active:focus,\n .btn.active:focus,\n .btn.focus,\n .btn:active.focus,\n .btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n }\n .btn:hover,\n .btn:focus,\n .btn.focus {\n color: #333;\n text-decoration: none;\n }\n .btn:active,\n .btn.active {\n background-image: none;\n outline: 0;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n }\n .btn.disabled,\n .btn[disabled],\n fieldset[disabled] .btn {\n pointer-events: none;\n cursor: not-allowed;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n opacity: 0.65;\n }\n .btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n }\n .btn-default:hover,\n .btn-default:focus,\n .btn-default.focus,\n .btn-default:active,\n .btn-default.active,\n .open > .dropdown-toggle.btn-default {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n }\n .btn-default:active,\n .btn-default.active,\n .open > .dropdown-toggle.btn-default {\n background-image: none;\n }\n .btn-default.disabled,\n .btn-default[disabled],\n fieldset[disabled] .btn-default,\n .btn-default.disabled:hover,\n .btn-default[disabled]:hover,\n fieldset[disabled] .btn-default:hover,\n .btn-default.disabled:focus,\n .btn-default[disabled]:focus,\n fieldset[disabled] .btn-default:focus,\n .btn-default.disabled.focus,\n .btn-default[disabled].focus,\n fieldset[disabled] .btn-default.focus,\n .btn-default.disabled:active,\n .btn-default[disabled]:active,\n fieldset[disabled] .btn-default:active,\n .btn-default.disabled.active,\n .btn-default[disabled].active,\n fieldset[disabled] .btn-default.active {\n background-color: #fff;\n border-color: #ccc;\n }\n .btn-default .badge {\n color: #fff;\n background-color: #333;\n }\n .btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n }\n .btn-primary:hover,\n .btn-primary:focus,\n .btn-primary.focus,\n .btn-primary:active,\n .btn-primary.active,\n .open > .dropdown-toggle.btn-primary {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n }\n .btn-primary:active,\n .btn-primary.active,\n .open > .dropdown-toggle.btn-primary {\n background-image: none;\n }\n .btn-primary.disabled,\n .btn-primary[disabled],\n fieldset[disabled] .btn-primary,\n .btn-primary.disabled:hover,\n .btn-primary[disabled]:hover,\n fieldset[disabled] .btn-primary:hover,\n .btn-primary.disabled:focus,\n .btn-primary[disabled]:focus,\n fieldset[disabled] .btn-primary:focus,\n .btn-primary.disabled.focus,\n .btn-primary[disabled].focus,\n fieldset[disabled] .btn-primary.focus,\n .btn-primary.disabled:active,\n .btn-primary[disabled]:active,\n fieldset[disabled] .btn-primary:active,\n .btn-primary.disabled.active,\n .btn-primary[disabled].active,\n fieldset[disabled] .btn-primary.active {\n background-color: #337ab7;\n border-color: #2e6da4;\n }\n .btn-primary .badge {\n color: #337ab7;\n background-color: #fff;\n }\n .btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n }\n .btn-success:hover,\n .btn-success:focus,\n .btn-success.focus,\n .btn-success:active,\n .btn-success.active,\n .open > .dropdown-toggle.btn-success {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n }\n .btn-success:active,\n .btn-success.active,\n .open > .dropdown-toggle.btn-success {\n background-image: none;\n }\n .btn-success.disabled,\n .btn-success[disabled],\n fieldset[disabled] .btn-success,\n .btn-success.disabled:hover,\n .btn-success[disabled]:hover,\n fieldset[disabled] .btn-success:hover,\n .btn-success.disabled:focus,\n .btn-success[disabled]:focus,\n fieldset[disabled] .btn-success:focus,\n .btn-success.disabled.focus,\n .btn-success[disabled].focus,\n fieldset[disabled] .btn-success.focus,\n .btn-success.disabled:active,\n .btn-success[disabled]:active,\n fieldset[disabled] .btn-success:active,\n .btn-success.disabled.active,\n .btn-success[disabled].active,\n fieldset[disabled] .btn-success.active {\n background-color: #5cb85c;\n border-color: #4cae4c;\n }\n .btn-success .badge {\n color: #5cb85c;\n background-color: #fff;\n }\n .btn-info {\n color: #fff;\n background-color: #5bc0de;\n border-color: #46b8da;\n }\n .btn-info:hover,\n .btn-info:focus,\n .btn-info.focus,\n .btn-info:active,\n .btn-info.active,\n .open > .dropdown-toggle.btn-info {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n }\n .btn-info:active,\n .btn-info.active,\n .open > .dropdown-toggle.btn-info {\n background-image: none;\n }\n .btn-info.disabled,\n .btn-info[disabled],\n fieldset[disabled] .btn-info,\n .btn-info.disabled:hover,\n .btn-info[disabled]:hover,\n fieldset[disabled] .btn-info:hover,\n .btn-info.disabled:focus,\n .btn-info[disabled]:focus,\n fieldset[disabled] .btn-info:focus,\n .btn-info.disabled.focus,\n .btn-info[disabled].focus,\n fieldset[disabled] .btn-info.focus,\n .btn-info.disabled:active,\n .btn-info[disabled]:active,\n fieldset[disabled] .btn-info:active,\n .btn-info.disabled.active,\n .btn-info[disabled].active,\n fieldset[disabled] .btn-info.active {\n background-color: #5bc0de;\n border-color: #46b8da;\n }\n .btn-info .badge {\n color: #5bc0de;\n background-color: #fff;\n }\n .btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n }\n .btn-warning:hover,\n .btn-warning:focus,\n .btn-warning.focus,\n .btn-warning:active,\n .btn-warning.active,\n .open > .dropdown-toggle.btn-warning {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n }\n .btn-warning:active,\n .btn-warning.active,\n .open > .dropdown-toggle.btn-warning {\n background-image: none;\n }\n .btn-warning.disabled,\n .btn-warning[disabled],\n fieldset[disabled] .btn-warning,\n .btn-warning.disabled:hover,\n .btn-warning[disabled]:hover,\n fieldset[disabled] .btn-warning:hover,\n .btn-warning.disabled:focus,\n .btn-warning[disabled]:focus,\n fieldset[disabled] .btn-warning:focus,\n .btn-warning.disabled.focus,\n .btn-warning[disabled].focus,\n fieldset[disabled] .btn-warning.focus,\n .btn-warning.disabled:active,\n .btn-warning[disabled]:active,\n fieldset[disabled] .btn-warning:active,\n .btn-warning.disabled.active,\n .btn-warning[disabled].active,\n fieldset[disabled] .btn-warning.active {\n background-color: #f0ad4e;\n border-color: #eea236;\n }\n .btn-warning .badge {\n color: #f0ad4e;\n background-color: #fff;\n }\n .btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n }\n .btn-danger:hover,\n .btn-danger:focus,\n .btn-danger.focus,\n .btn-danger:active,\n .btn-danger.active,\n .open > .dropdown-toggle.btn-danger {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n }\n .btn-danger:active,\n .btn-danger.active,\n .open > .dropdown-toggle.btn-danger {\n background-image: none;\n }\n .btn-danger.disabled,\n .btn-danger[disabled],\n fieldset[disabled] .btn-danger,\n .btn-danger.disabled:hover,\n .btn-danger[disabled]:hover,\n fieldset[disabled] .btn-danger:hover,\n .btn-danger.disabled:focus,\n .btn-danger[disabled]:focus,\n fieldset[disabled] .btn-danger:focus,\n .btn-danger.disabled.focus,\n .btn-danger[disabled].focus,\n fieldset[disabled] .btn-danger.focus,\n .btn-danger.disabled:active,\n .btn-danger[disabled]:active,\n fieldset[disabled] .btn-danger:active,\n .btn-danger.disabled.active,\n .btn-danger[disabled].active,\n fieldset[disabled] .btn-danger.active {\n background-color: #d9534f;\n border-color: #d43f3a;\n }\n .btn-danger .badge {\n color: #d9534f;\n background-color: #fff;\n }\n .btn-link {\n font-weight: normal;\n color: #337ab7;\n border-radius: 0;\n }\n .btn-link,\n .btn-link:active,\n .btn-link.active,\n .btn-link[disabled],\n fieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n .btn-link,\n .btn-link:hover,\n .btn-link:focus,\n .btn-link:active {\n border-color: transparent;\n }\n .btn-link:hover,\n .btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n }\n .btn-link[disabled]:hover,\n fieldset[disabled] .btn-link:hover,\n .btn-link[disabled]:focus,\n fieldset[disabled] .btn-link:focus {\n color: #777;\n text-decoration: none;\n }\n .btn-lg,\n .btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n }\n .btn-sm,\n .btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n }\n .btn-xs,\n .btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n }\n //.btn-block {\n // display: block;\n // width: 100%;\n //}\n //.btn-block + .btn-block {\n // margin-top: 5px;\n //}\n //input[type='submit'].btn-block,\n //input[type='reset'].btn-block,\n //input[type='button'].btn-block {\n // width: 100%;\n //}\n .fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n }\n .fade.in {\n opacity: 1;\n }\n .collapse {\n display: none;\n }\n .collapse.in {\n display: block;\n }\n tr.collapse.in {\n display: table-row;\n }\n tbody.collapse.in {\n display: table-row-group;\n }\n .collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-timing-function: ease;\n -o-transition-timing-function: ease;\n transition-timing-function: ease;\n -webkit-transition-duration: 0.35s;\n -o-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-property: height, visibility;\n -o-transition-property: height, visibility;\n transition-property: height, visibility;\n }\n .caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n }\n .dropup,\n .dropdown {\n position: relative;\n }\n .dropdown-toggle:focus {\n outline: 0;\n }\n .dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n font-size: 14px;\n text-align: left;\n list-style: none;\n background-color: #fff;\n -webkit-background-clip: padding-box;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n }\n .dropdown-menu.pull-right {\n right: 0;\n left: auto;\n }\n .dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n }\n .dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333;\n white-space: nowrap;\n }\n .dropdown-menu > li > a:hover,\n .dropdown-menu > li > a:focus {\n color: #262626;\n text-decoration: none;\n background-color: #f5f5f5;\n }\n .dropdown-menu > .active > a,\n .dropdown-menu > .active > a:hover,\n .dropdown-menu > .active > a:focus {\n color: #fff;\n text-decoration: none;\n background-color: #337ab7;\n outline: 0;\n }\n .dropdown-menu > .disabled > a,\n .dropdown-menu > .disabled > a:hover,\n .dropdown-menu > .disabled > a:focus {\n color: #777;\n }\n .dropdown-menu > .disabled > a:hover,\n .dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n }\n .open > .dropdown-menu {\n display: block;\n }\n .open > a {\n outline: 0;\n }\n .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .dropdown-menu-left {\n right: auto;\n left: 0;\n }\n .dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777;\n white-space: nowrap;\n }\n .dropdown-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 990;\n }\n .pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n }\n .dropup .caret,\n .navbar-fixed-bottom .dropdown .caret {\n content: \"\";\n border-top: 0;\n border-bottom: 4px solid;\n }\n .dropup .dropdown-menu,\n .navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n @media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n right: 0;\n left: auto;\n }\n .navbar-right .dropdown-menu-left {\n right: auto;\n left: 0;\n }\n }\n .btn-group,\n .btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n }\n .btn-group > .btn,\n .btn-group-vertical > .btn {\n position: relative;\n float: left;\n }\n .btn-group > .btn:hover,\n .btn-group-vertical > .btn:hover,\n .btn-group > .btn:focus,\n .btn-group-vertical > .btn:focus,\n .btn-group > .btn:active,\n .btn-group-vertical > .btn:active,\n .btn-group > .btn.active,\n .btn-group-vertical > .btn.active {\n z-index: 2;\n }\n .btn-group .btn + .btn,\n .btn-group .btn + .btn-group,\n .btn-group .btn-group + .btn,\n .btn-group .btn-group + .btn-group {\n margin-left: -1px;\n }\n .btn-toolbar {\n margin-left: -5px;\n }\n .btn-toolbar .btn-group,\n .btn-toolbar .input-group {\n float: left;\n }\n .btn-toolbar > .btn,\n .btn-toolbar > .btn-group,\n .btn-toolbar > .input-group {\n margin-left: 5px;\n }\n .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n }\n .btn-group > .btn:first-child {\n margin-left: 0;\n }\n .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .btn-group > .btn:last-child:not(:first-child),\n .btn-group > .dropdown-toggle:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .btn-group > .btn-group {\n float: left;\n }\n .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n }\n .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .btn-group .dropdown-toggle:active,\n .btn-group.open .dropdown-toggle {\n outline: 0;\n }\n .btn-group > .btn + .dropdown-toggle {\n padding-right: 8px;\n padding-left: 8px;\n }\n .btn-group > .btn-lg + .dropdown-toggle {\n padding-right: 12px;\n padding-left: 12px;\n }\n .btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n }\n .btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n .btn .caret {\n margin-left: 0;\n }\n .btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n }\n .dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n }\n .btn-group-vertical > .btn,\n .btn-group-vertical > .btn-group,\n .btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n .btn-group-vertical > .btn-group > .btn {\n float: none;\n }\n .btn-group-vertical > .btn + .btn,\n .btn-group-vertical > .btn + .btn-group,\n .btn-group-vertical > .btn-group + .btn,\n .btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n .btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n .btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n }\n .btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom-left-radius: 4px;\n }\n .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n }\n .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n }\n .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n .btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n }\n .btn-group-justified > .btn,\n .btn-group-justified > .btn-group {\n display: table-cell;\n float: none;\n width: 1%;\n }\n .btn-group-justified > .btn-group .btn {\n width: 100%;\n }\n .btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n }\n [data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n [data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n [data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n [data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n }\n .input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n }\n .input-group[class*=\"col-\"] {\n float: none;\n padding-right: 0;\n padding-left: 0;\n }\n .input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n }\n .input-group-lg > .form-control,\n .input-group-lg > .input-group-addon,\n .input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n }\n select.input-group-lg > .form-control,\n select.input-group-lg > .input-group-addon,\n select.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n }\n textarea.input-group-lg > .form-control,\n textarea.input-group-lg > .input-group-addon,\n textarea.input-group-lg > .input-group-btn > .btn,\n select[multiple].input-group-lg > .form-control,\n select[multiple].input-group-lg > .input-group-addon,\n select[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n }\n .input-group-sm > .form-control,\n .input-group-sm > .input-group-addon,\n .input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n }\n select.input-group-sm > .form-control,\n select.input-group-sm > .input-group-addon,\n select.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n }\n textarea.input-group-sm > .form-control,\n textarea.input-group-sm > .input-group-addon,\n textarea.input-group-sm > .input-group-btn > .btn,\n select[multiple].input-group-sm > .form-control,\n select[multiple].input-group-sm > .input-group-addon,\n select[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n }\n .input-group-addon,\n .input-group-btn,\n .input-group .form-control {\n display: table-cell;\n }\n .input-group-addon:not(:first-child):not(:last-child),\n .input-group-btn:not(:first-child):not(:last-child),\n .input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n .input-group-addon,\n .input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n }\n .input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555;\n text-align: center;\n background-color: #eee;\n border: 1px solid #ccc;\n border-radius: 4px;\n }\n .input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n }\n .input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n }\n .input-group-addon input[type=\"radio\"],\n .input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n }\n .input-group .form-control:first-child,\n .input-group-addon:first-child,\n .input-group-btn:first-child > .btn,\n .input-group-btn:first-child > .btn-group > .btn,\n .input-group-btn:first-child > .dropdown-toggle,\n .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .input-group-addon:first-child {\n border-right: 0;\n }\n .input-group .form-control:last-child,\n .input-group-addon:last-child,\n .input-group-btn:last-child > .btn,\n .input-group-btn:last-child > .btn-group > .btn,\n .input-group-btn:last-child > .dropdown-toggle,\n .input-group-btn:first-child > .btn:not(:first-child),\n .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .input-group-addon:last-child {\n border-left: 0;\n }\n .input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n }\n .input-group-btn > .btn {\n position: relative;\n }\n .input-group-btn > .btn + .btn {\n margin-left: -1px;\n }\n .input-group-btn > .btn:hover,\n .input-group-btn > .btn:focus,\n .input-group-btn > .btn:active {\n z-index: 2;\n }\n .input-group-btn:first-child > .btn,\n .input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n }\n .input-group-btn:last-child > .btn,\n .input-group-btn:last-child > .btn-group {\n margin-left: -1px;\n }\n .nav {\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n }\n .nav > li {\n position: relative;\n display: block;\n }\n .nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n }\n .nav > li > a:hover,\n .nav > li > a:focus {\n text-decoration: none;\n background-color: #eee;\n }\n .nav > li.disabled > a {\n color: #777;\n }\n .nav > li.disabled > a:hover,\n .nav > li.disabled > a:focus {\n color: #777;\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n }\n .nav .open > a,\n .nav .open > a:hover,\n .nav .open > a:focus {\n background-color: #eee;\n border-color: #337ab7;\n }\n .nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n }\n .nav > li > a > img {\n max-width: none;\n }\n .nav-tabs {\n border-bottom: 1px solid #ddd;\n }\n .nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n }\n .nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs > li > a:hover {\n border-color: #eee #eee #ddd;\n }\n .nav-tabs > li.active > a,\n .nav-tabs > li.active > a:hover,\n .nav-tabs > li.active > a:focus {\n color: #555;\n cursor: default;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n }\n .nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n }\n .nav-tabs.nav-justified > li {\n float: none;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 5px;\n text-align: center;\n }\n .nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n @media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n }\n .nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #ddd;\n }\n @media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n }\n .nav-pills > li {\n float: left;\n }\n .nav-pills > li > a {\n border-radius: 4px;\n }\n .nav-pills > li + li {\n margin-left: 2px;\n }\n .nav-pills > li.active > a,\n .nav-pills > li.active > a:hover,\n .nav-pills > li.active > a:focus {\n color: #fff;\n background-color: #337ab7;\n }\n .nav-stacked > li {\n float: none;\n }\n .nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n }\n .nav-justified {\n width: 100%;\n }\n .nav-justified > li {\n float: none;\n }\n .nav-justified > li > a {\n margin-bottom: 5px;\n text-align: center;\n }\n .nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n @media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n }\n .nav-tabs-justified {\n border-bottom: 0;\n }\n .nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border: 1px solid #ddd;\n }\n @media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n }\n .tab-content > .tab-pane {\n display: none;\n }\n .tab-content > .active {\n display: block;\n }\n .nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n .navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n }\n @media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n }\n @media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n }\n .navbar-collapse {\n padding-right: 15px;\n padding-left: 15px;\n overflow-x: visible;\n -webkit-overflow-scrolling: touch;\n border-top: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n }\n .navbar-collapse.in {\n overflow-y: auto;\n }\n @media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-right: 0;\n padding-left: 0;\n }\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n }\n @media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n }\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n }\n @media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n }\n .navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n }\n @media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n }\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n }\n @media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n }\n .navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n }\n .navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n }\n .navbar-brand {\n float: left;\n height: 50px;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n }\n .navbar-brand:hover,\n .navbar-brand:focus {\n text-decoration: none;\n }\n .navbar-brand > img {\n display: block;\n }\n @media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n }\n .navbar-toggle {\n position: relative;\n float: right;\n padding: 9px 10px;\n margin-top: 8px;\n margin-right: 15px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n }\n .navbar-toggle:focus {\n outline: 0;\n }\n .navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n @media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n }\n .navbar-nav {\n margin: 7.5px -15px;\n }\n .navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n }\n @media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n }\n @media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n }\n .navbar-form {\n padding: 10px 15px;\n margin-top: 8px;\n margin-right: -15px;\n margin-bottom: 8px;\n margin-left: -15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n }\n @media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n @media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n }\n @media (min-width: 768px) {\n .navbar-form {\n width: auto;\n padding-top: 0;\n padding-bottom: 0;\n margin-right: 0;\n margin-left: 0;\n border: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n }\n .navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n }\n .navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n }\n .navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n }\n .navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n }\n .navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n }\n @media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-right: 15px;\n margin-left: 15px;\n }\n }\n @media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n }\n .navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n }\n .navbar-default .navbar-brand {\n color: #777;\n }\n .navbar-default .navbar-brand:hover,\n .navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n }\n .navbar-default .navbar-text {\n color: #777;\n }\n .navbar-default .navbar-nav > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav > li > a:hover,\n .navbar-default .navbar-nav > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav > .active > a,\n .navbar-default .navbar-nav > .active > a:hover,\n .navbar-default .navbar-nav > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav > .disabled > a,\n .navbar-default .navbar-nav > .disabled > a:hover,\n .navbar-default .navbar-nav > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n .navbar-default .navbar-toggle {\n border-color: #ddd;\n }\n .navbar-default .navbar-toggle:hover,\n .navbar-default .navbar-toggle:focus {\n background-color: #ddd;\n }\n .navbar-default .navbar-toggle .icon-bar {\n background-color: #888;\n }\n .navbar-default .navbar-collapse,\n .navbar-default .navbar-form {\n border-color: #e7e7e7;\n }\n .navbar-default .navbar-nav > .open > a,\n .navbar-default .navbar-nav > .open > a:hover,\n .navbar-default .navbar-nav > .open > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n @media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n }\n .navbar-default .navbar-link {\n color: #777;\n }\n .navbar-default .navbar-link:hover {\n color: #333;\n }\n .navbar-default .btn-link {\n color: #777;\n }\n .navbar-default .btn-link:hover,\n .navbar-default .btn-link:focus {\n color: #333;\n }\n .navbar-default .btn-link[disabled]:hover,\n fieldset[disabled] .navbar-default .btn-link:hover,\n .navbar-default .btn-link[disabled]:focus,\n fieldset[disabled] .navbar-default .btn-link:focus {\n color: #ccc;\n }\n .navbar-inverse {\n background-color: #222;\n border-color: #080808;\n }\n .navbar-inverse .navbar-brand {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-brand:hover,\n .navbar-inverse .navbar-brand:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-text {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav > li > a:hover,\n .navbar-inverse .navbar-nav > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav > .active > a,\n .navbar-inverse .navbar-nav > .active > a:hover,\n .navbar-inverse .navbar-nav > .active > a:focus {\n color: #fff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav > .disabled > a,\n .navbar-inverse .navbar-nav > .disabled > a:hover,\n .navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n }\n .navbar-inverse .navbar-toggle {\n border-color: #333;\n }\n .navbar-inverse .navbar-toggle:hover,\n .navbar-inverse .navbar-toggle:focus {\n background-color: #333;\n }\n .navbar-inverse .navbar-toggle .icon-bar {\n background-color: #fff;\n }\n .navbar-inverse .navbar-collapse,\n .navbar-inverse .navbar-form {\n border-color: #101010;\n }\n .navbar-inverse .navbar-nav > .open > a,\n .navbar-inverse .navbar-nav > .open > a:hover,\n .navbar-inverse .navbar-nav > .open > a:focus {\n color: #fff;\n background-color: #080808;\n }\n @media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n }\n }\n .navbar-inverse .navbar-link {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-link:hover {\n color: #fff;\n }\n .navbar-inverse .btn-link {\n color: #9d9d9d;\n }\n .navbar-inverse .btn-link:hover,\n .navbar-inverse .btn-link:focus {\n color: #fff;\n }\n .navbar-inverse .btn-link[disabled]:hover,\n fieldset[disabled] .navbar-inverse .btn-link:hover,\n .navbar-inverse .btn-link[disabled]:focus,\n fieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444;\n }\n .breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n }\n .breadcrumb > li {\n display: inline-block;\n }\n .breadcrumb > li + li:before {\n padding: 0 5px;\n color: #ccc;\n content: \"/\\00a0\";\n }\n .breadcrumb > .active {\n color: #777;\n }\n .pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n }\n .pagination > li {\n display: inline;\n }\n .pagination > li > a,\n .pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n margin-left: -1px;\n line-height: 1.42857143;\n color: #337ab7;\n text-decoration: none;\n background-color: #fff;\n border: 1px solid #ddd;\n }\n .pagination > li:first-child > a,\n .pagination > li:first-child > span {\n margin-left: 0;\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n }\n .pagination > li:last-child > a,\n .pagination > li:last-child > span {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n }\n .pagination > li > a:hover,\n .pagination > li > span:hover,\n .pagination > li > a:focus,\n .pagination > li > span:focus {\n color: #23527c;\n background-color: #eee;\n border-color: #ddd;\n }\n .pagination > .active > a,\n .pagination > .active > span,\n .pagination > .active > a:hover,\n .pagination > .active > span:hover,\n .pagination > .active > a:focus,\n .pagination > .active > span:focus {\n z-index: 2;\n color: #fff;\n cursor: default;\n background-color: #337ab7;\n border-color: #337ab7;\n }\n .pagination > .disabled > span,\n .pagination > .disabled > span:hover,\n .pagination > .disabled > span:focus,\n .pagination > .disabled > a,\n .pagination > .disabled > a:hover,\n .pagination > .disabled > a:focus {\n color: #777;\n cursor: not-allowed;\n background-color: #fff;\n border-color: #ddd;\n }\n .pagination-lg > li > a,\n .pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n }\n .pagination-lg > li:first-child > a,\n .pagination-lg > li:first-child > span {\n border-top-left-radius: 6px;\n border-bottom-left-radius: 6px;\n }\n .pagination-lg > li:last-child > a,\n .pagination-lg > li:last-child > span {\n border-top-right-radius: 6px;\n border-bottom-right-radius: 6px;\n }\n .pagination-sm > li > a,\n .pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n }\n .pagination-sm > li:first-child > a,\n .pagination-sm > li:first-child > span {\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n }\n .pagination-sm > li:last-child > a,\n .pagination-sm > li:last-child > span {\n border-top-right-radius: 3px;\n border-bottom-right-radius: 3px;\n }\n .pager {\n padding-left: 0;\n margin: 20px 0;\n text-align: center;\n list-style: none;\n }\n .pager li {\n display: inline;\n }\n .pager li > a,\n .pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 15px;\n }\n .pager li > a:hover,\n .pager li > a:focus {\n text-decoration: none;\n background-color: #eee;\n }\n .pager .next > a,\n .pager .next > span {\n float: right;\n }\n .pager .previous > a,\n .pager .previous > span {\n float: left;\n }\n .pager .disabled > a,\n .pager .disabled > a:hover,\n .pager .disabled > a:focus,\n .pager .disabled > span {\n color: #777;\n cursor: not-allowed;\n background-color: #fff;\n }\n .label {\n display: inline;\n padding: 0.2em 0.6em 0.3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25em;\n }\n a.label:hover,\n a.label:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n }\n .label:empty {\n display: none;\n }\n .btn .label {\n position: relative;\n top: -1px;\n }\n .label-default {\n background-color: #777;\n }\n .label-default[href]:hover,\n .label-default[href]:focus {\n background-color: #5e5e5e;\n }\n .label-primary {\n background-color: #337ab7;\n }\n .label-primary[href]:hover,\n .label-primary[href]:focus {\n background-color: #286090;\n }\n .label-success {\n background-color: #5cb85c;\n }\n .label-success[href]:hover,\n .label-success[href]:focus {\n background-color: #449d44;\n }\n .label-info {\n background-color: #5bc0de;\n }\n .label-info[href]:hover,\n .label-info[href]:focus {\n background-color: #31b0d5;\n }\n .label-warning {\n background-color: #f0ad4e;\n }\n .label-warning[href]:hover,\n .label-warning[href]:focus {\n background-color: #ec971f;\n }\n .label-danger {\n background-color: #d9534f;\n }\n .label-danger[href]:hover,\n .label-danger[href]:focus {\n background-color: #c9302c;\n }\n .badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n background-color: #777;\n border-radius: 10px;\n }\n .badge:empty {\n display: none;\n }\n .btn .badge {\n position: relative;\n top: -1px;\n }\n .btn-xs .badge,\n .btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n }\n a.badge:hover,\n a.badge:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n }\n .list-group-item.active > .badge,\n .nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #fff;\n }\n .list-group-item > .badge {\n float: right;\n }\n .list-group-item > .badge + .badge {\n margin-right: 5px;\n }\n .nav-pills > li > a > .badge {\n margin-left: 3px;\n }\n .jumbotron {\n padding: 30px 15px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eee;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n color: inherit;\n }\n .jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n }\n .jumbotron > hr {\n border-top-color: #d5d5d5;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n border-radius: 6px;\n }\n .jumbotron .container {\n max-width: 100%;\n }\n @media screen and (min-width: 768px) {\n .jumbotron {\n padding: 48px 0;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-right: 60px;\n padding-left: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n }\n .thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n }\n .thumbnail > img,\n .thumbnail a > img {\n margin-right: auto;\n margin-left: auto;\n }\n a.thumbnail:hover,\n a.thumbnail:focus,\n a.thumbnail.active {\n border-color: #337ab7;\n }\n .thumbnail .caption {\n padding: 9px;\n color: #333;\n }\n .alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n }\n .alert h4 {\n margin-top: 0;\n color: inherit;\n }\n .alert .alert-link {\n font-weight: bold;\n }\n .alert > p,\n .alert > ul {\n margin-bottom: 0;\n }\n .alert > p + p {\n margin-top: 5px;\n }\n .alert-dismissable,\n .alert-dismissible {\n padding-right: 35px;\n }\n .alert-dismissable .close,\n .alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n .alert-success {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n }\n .alert-success hr {\n border-top-color: #c9e2b3;\n }\n .alert-success .alert-link {\n color: #2b542c;\n }\n .alert-info {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n }\n .alert-info hr {\n border-top-color: #a6e1ec;\n }\n .alert-info .alert-link {\n color: #245269;\n }\n .alert-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n }\n .alert-warning hr {\n border-top-color: #f7e1b5;\n }\n .alert-warning .alert-link {\n color: #66512c;\n }\n .alert-danger {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n }\n .alert-danger hr {\n border-top-color: #e4b9c0;\n }\n .alert-danger .alert-link {\n color: #843534;\n }\n //@-webkit-keyframes progress-bar-stripes {\n // from {\n // background-position: 40px 0;\n // }\n // to {\n // background-position: 0 0;\n // }\n //}\n //@-o-keyframes progress-bar-stripes {\n // from {\n // background-position: 40px 0;\n // }\n // to {\n // background-position: 0 0;\n // }\n //}\n //@keyframes progress-bar-stripes {\n // from {\n // background-position: 40px 0;\n // }\n // to {\n // background-position: 0 0;\n // }\n //}\n //.progress {\n // height: 20px;\n // margin-bottom: 20px;\n // overflow: hidden;\n // background-color: #f5f5f5;\n // border-radius: 4px;\n // -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n // box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n //}\n //.progress-bar {\n // float: left;\n // width: 0;\n // height: 100%;\n // font-size: 12px;\n // line-height: 20px;\n // color: #fff;\n // text-align: center;\n // background-color: #337ab7;\n // -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n // box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n // -webkit-transition: width 0.6s ease;\n // -o-transition: width 0.6s ease;\n // transition: width 0.6s ease;\n //}\n //.progress-striped .progress-bar,\n //.progress-bar-striped {\n // background-image: -webkit-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: -o-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // -webkit-background-size: 40px 40px;\n // background-size: 40px 40px;\n //}\n //.progress.active .progress-bar,\n //.progress-bar.active {\n // -webkit-animation: progress-bar-stripes 2s linear infinite;\n // -o-animation: progress-bar-stripes 2s linear infinite;\n // animation: progress-bar-stripes 2s linear infinite;\n //}\n //.progress-bar-success {\n // background-color: #5cb85c;\n //}\n //.progress-striped .progress-bar-success {\n // background-image: -webkit-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: -o-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n //}\n //.progress-bar-info {\n // background-color: #5bc0de;\n //}\n //.progress-striped .progress-bar-info {\n // background-image: -webkit-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: -o-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n //}\n //.progress-bar-warning {\n // background-color: #f0ad4e;\n //}\n //.progress-striped .progress-bar-warning {\n // background-image: -webkit-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: -o-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n //}\n //.progress-bar-danger {\n // background-color: #d9534f;\n //}\n //.progress-striped .progress-bar-danger {\n // background-image: -webkit-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: -o-linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n // background-image: linear-gradient(\n // 45deg,\n // rgba(255, 255, 255, 0.15) 25%,\n // transparent 25%,\n // transparent 50%,\n // rgba(255, 255, 255, 0.15) 50%,\n // rgba(255, 255, 255, 0.15) 75%,\n // transparent 75%,\n // transparent\n // );\n //}\n .media {\n margin-top: 15px;\n }\n .media:first-child {\n margin-top: 0;\n }\n .media,\n .media-body {\n overflow: hidden;\n zoom: 1;\n }\n .media-body {\n width: 10000px;\n }\n .media-object {\n display: block;\n }\n .media-right,\n .media > .pull-right {\n padding-left: 10px;\n }\n .media-left,\n .media > .pull-left {\n padding-right: 10px;\n }\n .media-left,\n .media-right,\n .media-body {\n display: table-cell;\n vertical-align: top;\n }\n .media-middle {\n vertical-align: middle;\n }\n .media-bottom {\n vertical-align: bottom;\n }\n .media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n }\n .media-list {\n padding-left: 0;\n list-style: none;\n }\n .list-group {\n padding-left: 0;\n margin-bottom: 20px;\n }\n .list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid #ddd;\n }\n .list-group-item:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n }\n .list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n }\n a.list-group-item {\n color: #555;\n }\n a.list-group-item .list-group-item-heading {\n color: #333;\n }\n a.list-group-item:hover,\n a.list-group-item:focus {\n color: #555;\n text-decoration: none;\n background-color: #f5f5f5;\n }\n .list-group-item.disabled,\n .list-group-item.disabled:hover,\n .list-group-item.disabled:focus {\n color: #777;\n cursor: not-allowed;\n background-color: #eee;\n }\n .list-group-item.disabled .list-group-item-heading,\n .list-group-item.disabled:hover .list-group-item-heading,\n .list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n }\n .list-group-item.disabled .list-group-item-text,\n .list-group-item.disabled:hover .list-group-item-text,\n .list-group-item.disabled:focus .list-group-item-text {\n color: #777;\n }\n .list-group-item.active,\n .list-group-item.active:hover,\n .list-group-item.active:focus {\n z-index: 2;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n }\n .list-group-item.active .list-group-item-heading,\n .list-group-item.active:hover .list-group-item-heading,\n .list-group-item.active:focus .list-group-item-heading,\n .list-group-item.active .list-group-item-heading > small,\n .list-group-item.active:hover .list-group-item-heading > small,\n .list-group-item.active:focus .list-group-item-heading > small,\n .list-group-item.active .list-group-item-heading > .small,\n .list-group-item.active:hover .list-group-item-heading > .small,\n .list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item.active .list-group-item-text,\n .list-group-item.active:hover .list-group-item-text,\n .list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n }\n .list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n }\n a.list-group-item-success {\n color: #3c763d;\n }\n a.list-group-item-success .list-group-item-heading {\n color: inherit;\n }\n a.list-group-item-success:hover,\n a.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n }\n a.list-group-item-success.active,\n a.list-group-item-success.active:hover,\n a.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n }\n .list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n }\n a.list-group-item-info {\n color: #31708f;\n }\n a.list-group-item-info .list-group-item-heading {\n color: inherit;\n }\n a.list-group-item-info:hover,\n a.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n }\n a.list-group-item-info.active,\n a.list-group-item-info.active:hover,\n a.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n }\n .list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n }\n a.list-group-item-warning {\n color: #8a6d3b;\n }\n a.list-group-item-warning .list-group-item-heading {\n color: inherit;\n }\n a.list-group-item-warning:hover,\n a.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n }\n a.list-group-item-warning.active,\n a.list-group-item-warning.active:hover,\n a.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n }\n .list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n }\n a.list-group-item-danger {\n color: #a94442;\n }\n a.list-group-item-danger .list-group-item-heading {\n color: inherit;\n }\n a.list-group-item-danger:hover,\n a.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n }\n a.list-group-item-danger.active,\n a.list-group-item-danger.active:hover,\n a.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n }\n .list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n }\n .list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n }\n .panel {\n margin-bottom: 20px;\n background-color: #fff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n }\n .panel-body {\n padding: 15px;\n }\n .panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n }\n .panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n }\n .panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n }\n .panel-title > a,\n .panel-title > small,\n .panel-title > .small,\n .panel-title > small > a,\n .panel-title > .small > a {\n color: inherit;\n }\n .panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #ddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n }\n .panel > .list-group,\n .panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n }\n .panel > .list-group .list-group-item,\n .panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n .panel > .list-group:first-child .list-group-item:first-child,\n .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n }\n .panel > .list-group:last-child .list-group-item:last-child,\n .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n }\n .panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n }\n .list-group + .panel-footer {\n border-top-width: 0;\n }\n .panel > .table,\n .panel > .table-responsive > .table,\n .panel > .panel-collapse > .table {\n margin-bottom: 0;\n }\n .panel > .table caption,\n .panel > .table-responsive > .table caption,\n .panel > .panel-collapse > .table caption {\n padding-right: 15px;\n padding-left: 15px;\n }\n .panel > .table:first-child,\n .panel > .table-responsive:first-child > .table:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n }\n .panel > .table:first-child > thead:first-child > tr:first-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n }\n .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n }\n .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n }\n .panel > .table:last-child,\n .panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n }\n .panel > .table:last-child > tbody:last-child > tr:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n }\n .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n }\n .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n }\n .panel > .panel-body + .table,\n .panel > .panel-body + .table-responsive,\n .panel > .table + .panel-body,\n .panel > .table-responsive + .panel-body {\n border-top: 1px solid #ddd;\n }\n .panel > .table > tbody:first-child > tr:first-child th,\n .panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n .panel > .table-bordered,\n .panel > .table-responsive > .table-bordered {\n border: 0;\n }\n .panel > .table-bordered > thead > tr > th:first-child,\n .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n .panel > .table-bordered > tbody > tr > th:first-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .panel > .table-bordered > tfoot > tr > th:first-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .panel > .table-bordered > thead > tr > td:first-child,\n .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n .panel > .table-bordered > tbody > tr > td:first-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .panel > .table-bordered > tfoot > tr > td:first-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .panel > .table-bordered > thead > tr > th:last-child,\n .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n .panel > .table-bordered > tbody > tr > th:last-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .panel > .table-bordered > tfoot > tr > th:last-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .panel > .table-bordered > thead > tr > td:last-child,\n .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n .panel > .table-bordered > tbody > tr > td:last-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .panel > .table-bordered > tfoot > tr > td:last-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .panel > .table-bordered > thead > tr:first-child > td,\n .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n .panel > .table-bordered > tbody > tr:first-child > td,\n .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n .panel > .table-bordered > thead > tr:first-child > th,\n .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n .panel > .table-bordered > tbody > tr:first-child > th,\n .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n }\n .panel > .table-bordered > tbody > tr:last-child > td,\n .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .panel > .table-bordered > tfoot > tr:last-child > td,\n .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n .panel > .table-bordered > tbody > tr:last-child > th,\n .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .panel > .table-bordered > tfoot > tr:last-child > th,\n .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n }\n .panel > .table-responsive {\n margin-bottom: 0;\n border: 0;\n }\n .panel-group {\n margin-bottom: 20px;\n }\n .panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n }\n .panel-group .panel + .panel {\n margin-top: 5px;\n }\n .panel-group .panel-heading {\n border-bottom: 0;\n }\n .panel-group .panel-heading + .panel-collapse > .panel-body,\n .panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #ddd;\n }\n .panel-group .panel-footer {\n border-top: 0;\n }\n .panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #ddd;\n }\n .panel-default {\n border-color: #ddd;\n }\n .panel-default > .panel-heading {\n color: #333;\n background-color: #f5f5f5;\n border-color: #ddd;\n }\n .panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ddd;\n }\n .panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333;\n }\n .panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ddd;\n }\n .panel-primary {\n border-color: #337ab7;\n }\n .panel-primary > .panel-heading {\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n }\n .panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n }\n .panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #fff;\n }\n .panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n }\n .panel-success {\n border-color: #d6e9c6;\n }\n .panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n }\n .panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n }\n .panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n }\n .panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n }\n .panel-info {\n border-color: #bce8f1;\n }\n .panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n }\n .panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n }\n .panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n }\n .panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n }\n .panel-warning {\n border-color: #faebcc;\n }\n .panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n }\n .panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n }\n .panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n }\n .panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n }\n .panel-danger {\n border-color: #ebccd1;\n }\n .panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n }\n .panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n }\n .panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n }\n .panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n }\n .embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n }\n .embed-responsive .embed-responsive-item,\n .embed-responsive iframe,\n .embed-responsive embed,\n .embed-responsive object,\n .embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n }\n .embed-responsive-16by9 {\n padding-bottom: 56.25%;\n }\n .embed-responsive-4by3 {\n padding-bottom: 75%;\n }\n .well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n }\n .well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n }\n .well-lg {\n padding: 24px;\n border-radius: 6px;\n }\n .well-sm {\n padding: 9px;\n border-radius: 3px;\n }\n .close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n filter: alpha(opacity=20);\n opacity: 0.2;\n }\n .close:hover,\n .close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n filter: alpha(opacity=50);\n opacity: 0.5;\n }\n button.close {\n -webkit-appearance: none;\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n }\n .modal-open {\n overflow: hidden;\n }\n .modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n }\n .modal.fade .modal-dialog {\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n }\n .modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n }\n .modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n }\n .modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n }\n .modal-content {\n position: relative;\n background-color: #fff;\n -webkit-background-clip: padding-box;\n background-clip: padding-box;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n outline: 0;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n }\n .modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n }\n .modal-backdrop.fade {\n filter: alpha(opacity=0);\n opacity: 0;\n }\n .modal-backdrop.in {\n filter: alpha(opacity=50);\n opacity: 0.5;\n }\n .modal-header {\n min-height: 16.42857143px;\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n }\n .modal-header .close {\n margin-top: -2px;\n }\n .modal-title {\n margin: 0;\n line-height: 1.42857143;\n }\n //.modal-body {\n // position: relative;\n // padding: 15px;\n //}\n .modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n }\n .modal-footer .btn + .btn {\n margin-bottom: 0;\n margin-left: 5px;\n }\n .modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n }\n .modal-footer .btn-block + .btn-block {\n margin-left: 0;\n }\n .modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n }\n @media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n }\n @media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n }\n .tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 12px;\n font-weight: normal;\n line-height: 1.4;\n filter: alpha(opacity=0);\n opacity: 0;\n }\n .tooltip.in {\n filter: alpha(opacity=90);\n opacity: 0.9;\n }\n .tooltip.top {\n padding: 5px 0;\n margin-top: -3px;\n }\n .tooltip.right {\n padding: 0 5px;\n margin-left: 3px;\n }\n .tooltip.bottom {\n padding: 5px 0;\n margin-top: 3px;\n }\n .tooltip.left {\n padding: 0 5px;\n margin-left: -3px;\n }\n .tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #fff;\n text-align: center;\n text-decoration: none;\n background-color: #000;\n border-radius: 4px;\n }\n .tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n .tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n }\n .tooltip.top-left .tooltip-arrow {\n right: 5px;\n bottom: 0;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n }\n .tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n }\n .tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000;\n }\n .tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000;\n }\n .tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n }\n .tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n }\n .tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n }\n .popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n font-weight: normal;\n line-height: 1.42857143;\n text-align: left;\n white-space: normal;\n background-color: #fff;\n -webkit-background-clip: padding-box;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n }\n .popover.top {\n margin-top: -10px;\n }\n .popover.right {\n margin-left: 10px;\n }\n .popover.bottom {\n margin-top: 10px;\n }\n .popover.left {\n margin-left: -10px;\n }\n .popover-title {\n padding: 8px 14px;\n margin: 0;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n }\n .popover-content {\n padding: 9px 14px;\n }\n .popover > .arrow,\n .popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n .popover > .arrow {\n border-width: 11px;\n }\n .popover > .arrow:after {\n content: \"\";\n border-width: 10px;\n }\n .popover.top > .arrow {\n bottom: -11px;\n left: 50%;\n margin-left: -11px;\n border-top-color: #999;\n border-top-color: rgba(0, 0, 0, 0.25);\n border-bottom-width: 0;\n }\n .popover.top > .arrow:after {\n bottom: 1px;\n margin-left: -10px;\n content: \" \";\n border-top-color: #fff;\n border-bottom-width: 0;\n }\n .popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-right-color: #999;\n border-right-color: rgba(0, 0, 0, 0.25);\n border-left-width: 0;\n }\n .popover.right > .arrow:after {\n bottom: -10px;\n left: 1px;\n content: \" \";\n border-right-color: #fff;\n border-left-width: 0;\n }\n .popover.bottom > .arrow {\n top: -11px;\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n }\n .popover.bottom > .arrow:after {\n top: 1px;\n margin-left: -10px;\n content: \" \";\n border-top-width: 0;\n border-bottom-color: #fff;\n }\n .popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999;\n border-left-color: rgba(0, 0, 0, 0.25);\n }\n .popover.left > .arrow:after {\n right: 1px;\n bottom: -10px;\n content: \" \";\n border-right-width: 0;\n border-left-color: #fff;\n }\n .carousel {\n position: relative;\n }\n .carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n }\n .carousel-inner > .item {\n position: relative;\n display: none;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n }\n .carousel-inner > .item > img,\n .carousel-inner > .item > a > img {\n line-height: 1;\n }\n @media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000;\n perspective: 1000;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n left: 0;\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n left: 0;\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n left: 0;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n }\n .carousel-inner > .active,\n .carousel-inner > .next,\n .carousel-inner > .prev {\n display: block;\n }\n .carousel-inner > .active {\n left: 0;\n }\n .carousel-inner > .next,\n .carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n .carousel-inner > .next {\n left: 100%;\n }\n .carousel-inner > .prev {\n left: -100%;\n }\n .carousel-inner > .next.left,\n .carousel-inner > .prev.right {\n left: 0;\n }\n .carousel-inner > .active.left {\n left: -100%;\n }\n .carousel-inner > .active.right {\n left: 100%;\n }\n .carousel-control {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 15%;\n font-size: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n filter: alpha(opacity=50);\n opacity: 0.5;\n }\n .carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -webkit-gradient(\n linear,\n left top,\n right top,\n from(rgba(0, 0, 0, 0.5)),\n to(rgba(0, 0, 0, 0.0001))\n );\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n background-repeat: repeat-x;\n }\n .carousel-control.right {\n right: 0;\n left: auto;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -webkit-gradient(\n linear,\n left top,\n right top,\n from(rgba(0, 0, 0, 0.0001)),\n to(rgba(0, 0, 0, 0.5))\n );\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n background-repeat: repeat-x;\n }\n .carousel-control:hover,\n .carousel-control:focus {\n color: #fff;\n text-decoration: none;\n filter: alpha(opacity=90);\n outline: 0;\n opacity: 0.9;\n }\n .carousel-control .icon-prev,\n .carousel-control .icon-next,\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .carousel-control .icon-prev,\n .carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .carousel-control .icon-next,\n .carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n font-family: serif;\n line-height: 1;\n }\n .carousel-control .icon-prev:before {\n content: \"\\2039\";\n }\n .carousel-control .icon-next:before {\n content: \"\\203a\";\n }\n .carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n padding-left: 0;\n margin-left: -30%;\n text-align: center;\n list-style: none;\n }\n .carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n border: 1px solid #fff;\n border-radius: 10px;\n }\n .carousel-indicators .active {\n width: 12px;\n height: 12px;\n margin: 0;\n background-color: #fff;\n }\n .carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n }\n .carousel-caption .btn {\n text-shadow: none;\n }\n @media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -15px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -15px;\n }\n .carousel-caption {\n right: 20%;\n left: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n }\n .clearfix:before,\n .clearfix:after,\n .dl-horizontal dd:before,\n .dl-horizontal dd:after,\n .container:before,\n .container:after,\n .container-fluid:before,\n .container-fluid:after,\n .row:before,\n .row:after,\n .form-horizontal .form-group:before,\n .form-horizontal .form-group:after,\n .btn-toolbar:before,\n .btn-toolbar:after,\n .btn-group-vertical > .btn-group:before,\n .btn-group-vertical > .btn-group:after,\n .nav:before,\n .nav:after,\n .navbar:before,\n .navbar:after,\n .navbar-header:before,\n .navbar-header:after,\n .navbar-collapse:before,\n .navbar-collapse:after,\n .pager:before,\n .pager:after,\n .panel-body:before,\n .panel-body:after,\n .modal-footer:before,\n .modal-footer:after {\n display: table;\n content: \" \";\n }\n .clearfix:after,\n .dl-horizontal dd:after,\n .container:after,\n .container-fluid:after,\n .row:after,\n .form-horizontal .form-group:after,\n .btn-toolbar:after,\n .btn-group-vertical > .btn-group:after,\n .nav:after,\n .navbar:after,\n .navbar-header:after,\n .navbar-collapse:after,\n .pager:after,\n .panel-body:after,\n .modal-footer:after {\n clear: both;\n }\n .center-block {\n display: block;\n margin-right: auto;\n margin-left: auto;\n }\n .pull-right {\n float: right !important;\n }\n .pull-left {\n float: left !important;\n }\n .hide {\n display: none !important;\n }\n .show {\n display: block !important;\n }\n .invisible {\n visibility: hidden;\n }\n .text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n }\n .hidden {\n display: none !important;\n }\n .affix {\n position: fixed;\n }\n @-ms-viewport {\n width: device-width;\n }\n .visible-xs,\n .visible-sm,\n .visible-md,\n .visible-lg {\n display: none !important;\n }\n .visible-xs-block,\n .visible-xs-inline,\n .visible-xs-inline-block,\n .visible-sm-block,\n .visible-sm-inline,\n .visible-sm-inline-block,\n .visible-md-block,\n .visible-md-inline,\n .visible-md-inline-block,\n .visible-lg-block,\n .visible-lg-inline,\n .visible-lg-inline-block {\n display: none !important;\n }\n @media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n }\n @media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n }\n @media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n }\n @media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n }\n @media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n }\n @media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n }\n @media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n }\n @media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n }\n @media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n }\n @media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n }\n @media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n }\n @media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n }\n @media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n }\n @media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n }\n @media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n }\n @media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n }\n @media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n }\n @media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n }\n @media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n }\n @media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n }\n .visible-print {\n display: none !important;\n }\n @media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n }\n .visible-print-block {\n display: none !important;\n }\n @media print {\n .visible-print-block {\n display: block !important;\n }\n }\n .visible-print-inline {\n display: none !important;\n }\n @media print {\n .visible-print-inline {\n display: inline !important;\n }\n }\n .visible-print-inline-block {\n display: none !important;\n }\n @media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n }\n @media print {\n .hidden-print {\n display: none !important;\n }\n }\n}\n","/*******************************************************************************\n * bootstrap-rtl (version 3.3.4)\n * Author: Morteza Ansarinia (http://github.com/morteza)\n * Created on: August 13,2015\n * Project: bootstrap-rtl\n * Copyright: Unlicensed Public Domain\n *******************************************************************************/\n@mixin bootstrap-rtl() {\n [dir=\"rtl\"] {\n .flip.text-left {\n text-align: right;\n }\n\n .flip.text-right {\n text-align: left;\n }\n\n .list-unstyled {\n padding-right: 0;\n padding-left: initial;\n }\n\n .list-inline {\n padding-right: 0;\n padding-left: initial;\n margin-right: -5px;\n margin-left: 0;\n }\n\n dd {\n margin-right: 0;\n margin-left: initial;\n }\n\n @media (min-width: 768px) {\n .dl-horizontal dt {\n float: right;\n clear: right;\n text-align: left;\n }\n .dl-horizontal dd {\n margin-right: 180px;\n margin-left: 0;\n }\n }\n\n blockquote {\n border-right: 5px solid #eeeeee;\n border-left: 0;\n }\n\n .blockquote-reverse,\n blockquote.pull-left {\n padding-left: 15px;\n padding-right: 0;\n border-left: 5px solid #eeeeee;\n border-right: 0;\n text-align: left;\n }\n\n .col-xs-1,\n .col-sm-1,\n .col-md-1,\n .col-lg-1,\n .col-xs-2,\n .col-sm-2,\n .col-md-2,\n .col-lg-2,\n .col-xs-3,\n .col-sm-3,\n .col-md-3,\n .col-lg-3,\n .col-xs-4,\n .col-sm-4,\n .col-md-4,\n .col-lg-4,\n .col-xs-5,\n .col-sm-5,\n .col-md-5,\n .col-lg-5,\n .col-xs-6,\n .col-sm-6,\n .col-md-6,\n .col-lg-6,\n .col-xs-7,\n .col-sm-7,\n .col-md-7,\n .col-lg-7,\n .col-xs-8,\n .col-sm-8,\n .col-md-8,\n .col-lg-8,\n .col-xs-9,\n .col-sm-9,\n .col-md-9,\n .col-lg-9,\n .col-xs-10,\n .col-sm-10,\n .col-md-10,\n .col-lg-10,\n .col-xs-11,\n .col-sm-11,\n .col-md-11,\n .col-lg-11,\n .col-xs-12,\n .col-sm-12,\n .col-md-12,\n .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n }\n\n .col-xs-1,\n .col-xs-2,\n .col-xs-3,\n .col-xs-4,\n .col-xs-5,\n .col-xs-6,\n .col-xs-7,\n .col-xs-8,\n .col-xs-9,\n .col-xs-10,\n .col-xs-11,\n .col-xs-12 {\n float: right;\n }\n\n .col-xs-12 {\n width: 100%;\n }\n\n .col-xs-11 {\n width: 91.66666667%;\n }\n\n .col-xs-10 {\n width: 83.33333333%;\n }\n\n .col-xs-9 {\n width: 75%;\n }\n\n .col-xs-8 {\n width: 66.66666667%;\n }\n\n .col-xs-7 {\n width: 58.33333333%;\n }\n\n .col-xs-6 {\n width: 50%;\n }\n\n .col-xs-5 {\n width: 41.66666667%;\n }\n\n .col-xs-4 {\n width: 33.33333333%;\n }\n\n .col-xs-3 {\n width: 25%;\n }\n\n .col-xs-2 {\n width: 16.66666667%;\n }\n\n .col-xs-1 {\n width: 8.33333333%;\n }\n\n .col-xs-pull-12 {\n left: 100%;\n right: auto;\n }\n\n .col-xs-pull-11 {\n left: 91.66666667%;\n right: auto;\n }\n\n .col-xs-pull-10 {\n left: 83.33333333%;\n right: auto;\n }\n\n .col-xs-pull-9 {\n left: 75%;\n right: auto;\n }\n\n .col-xs-pull-8 {\n left: 66.66666667%;\n right: auto;\n }\n\n .col-xs-pull-7 {\n left: 58.33333333%;\n right: auto;\n }\n\n .col-xs-pull-6 {\n left: 50%;\n right: auto;\n }\n\n .col-xs-pull-5 {\n left: 41.66666667%;\n right: auto;\n }\n\n .col-xs-pull-4 {\n left: 33.33333333%;\n right: auto;\n }\n\n .col-xs-pull-3 {\n left: 25%;\n right: auto;\n }\n\n .col-xs-pull-2 {\n left: 16.66666667%;\n right: auto;\n }\n\n .col-xs-pull-1 {\n left: 8.33333333%;\n right: auto;\n }\n\n .col-xs-pull-0 {\n left: auto;\n right: auto;\n }\n\n .col-xs-push-12 {\n right: 100%;\n left: 0;\n }\n\n .col-xs-push-11 {\n right: 91.66666667%;\n left: 0;\n }\n\n .col-xs-push-10 {\n right: 83.33333333%;\n left: 0;\n }\n\n .col-xs-push-9 {\n right: 75%;\n left: 0;\n }\n\n .col-xs-push-8 {\n right: 66.66666667%;\n left: 0;\n }\n\n .col-xs-push-7 {\n right: 58.33333333%;\n left: 0;\n }\n\n .col-xs-push-6 {\n right: 50%;\n left: 0;\n }\n\n .col-xs-push-5 {\n right: 41.66666667%;\n left: 0;\n }\n\n .col-xs-push-4 {\n right: 33.33333333%;\n left: 0;\n }\n\n .col-xs-push-3 {\n right: 25%;\n left: 0;\n }\n\n .col-xs-push-2 {\n right: 16.66666667%;\n left: 0;\n }\n\n .col-xs-push-1 {\n right: 8.33333333%;\n left: 0;\n }\n\n .col-xs-push-0 {\n right: auto;\n left: 0;\n }\n\n .col-xs-offset-12 {\n margin-right: 100%;\n margin-left: 0;\n }\n\n .col-xs-offset-11 {\n margin-right: 91.66666667%;\n margin-left: 0;\n }\n\n .col-xs-offset-10 {\n margin-right: 83.33333333%;\n margin-left: 0;\n }\n\n .col-xs-offset-9 {\n margin-right: 75%;\n margin-left: 0;\n }\n\n .col-xs-offset-8 {\n margin-right: 66.66666667%;\n margin-left: 0;\n }\n\n .col-xs-offset-7 {\n margin-right: 58.33333333%;\n margin-left: 0;\n }\n\n .col-xs-offset-6 {\n margin-right: 50%;\n margin-left: 0;\n }\n\n .col-xs-offset-5 {\n margin-right: 41.66666667%;\n margin-left: 0;\n }\n\n .col-xs-offset-4 {\n margin-right: 33.33333333%;\n margin-left: 0;\n }\n\n .col-xs-offset-3 {\n margin-right: 25%;\n margin-left: 0;\n }\n\n .col-xs-offset-2 {\n margin-right: 16.66666667%;\n margin-left: 0;\n }\n\n .col-xs-offset-1 {\n margin-right: 8.33333333%;\n margin-left: 0;\n }\n\n .col-xs-offset-0 {\n margin-right: 0%;\n margin-left: 0;\n }\n\n @media (min-width: 768px) {\n .col-sm-1,\n .col-sm-2,\n .col-sm-3,\n .col-sm-4,\n .col-sm-5,\n .col-sm-6,\n .col-sm-7,\n .col-sm-8,\n .col-sm-9,\n .col-sm-10,\n .col-sm-11,\n .col-sm-12 {\n float: right;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n left: 100%;\n right: auto;\n }\n .col-sm-pull-11 {\n left: 91.66666667%;\n right: auto;\n }\n .col-sm-pull-10 {\n left: 83.33333333%;\n right: auto;\n }\n .col-sm-pull-9 {\n left: 75%;\n right: auto;\n }\n .col-sm-pull-8 {\n left: 66.66666667%;\n right: auto;\n }\n .col-sm-pull-7 {\n left: 58.33333333%;\n right: auto;\n }\n .col-sm-pull-6 {\n left: 50%;\n right: auto;\n }\n .col-sm-pull-5 {\n left: 41.66666667%;\n right: auto;\n }\n .col-sm-pull-4 {\n left: 33.33333333%;\n right: auto;\n }\n .col-sm-pull-3 {\n left: 25%;\n right: auto;\n }\n .col-sm-pull-2 {\n left: 16.66666667%;\n right: auto;\n }\n .col-sm-pull-1 {\n left: 8.33333333%;\n right: auto;\n }\n .col-sm-pull-0 {\n left: auto;\n right: auto;\n }\n .col-sm-push-12 {\n right: 100%;\n left: 0;\n }\n .col-sm-push-11 {\n right: 91.66666667%;\n left: 0;\n }\n .col-sm-push-10 {\n right: 83.33333333%;\n left: 0;\n }\n .col-sm-push-9 {\n right: 75%;\n left: 0;\n }\n .col-sm-push-8 {\n right: 66.66666667%;\n left: 0;\n }\n .col-sm-push-7 {\n right: 58.33333333%;\n left: 0;\n }\n .col-sm-push-6 {\n right: 50%;\n left: 0;\n }\n .col-sm-push-5 {\n right: 41.66666667%;\n left: 0;\n }\n .col-sm-push-4 {\n right: 33.33333333%;\n left: 0;\n }\n .col-sm-push-3 {\n right: 25%;\n left: 0;\n }\n .col-sm-push-2 {\n right: 16.66666667%;\n left: 0;\n }\n .col-sm-push-1 {\n right: 8.33333333%;\n left: 0;\n }\n .col-sm-push-0 {\n right: auto;\n left: 0;\n }\n .col-sm-offset-12 {\n margin-right: 100%;\n margin-left: 0;\n }\n .col-sm-offset-11 {\n margin-right: 91.66666667%;\n margin-left: 0;\n }\n .col-sm-offset-10 {\n margin-right: 83.33333333%;\n margin-left: 0;\n }\n .col-sm-offset-9 {\n margin-right: 75%;\n margin-left: 0;\n }\n .col-sm-offset-8 {\n margin-right: 66.66666667%;\n margin-left: 0;\n }\n .col-sm-offset-7 {\n margin-right: 58.33333333%;\n margin-left: 0;\n }\n .col-sm-offset-6 {\n margin-right: 50%;\n margin-left: 0;\n }\n .col-sm-offset-5 {\n margin-right: 41.66666667%;\n margin-left: 0;\n }\n .col-sm-offset-4 {\n margin-right: 33.33333333%;\n margin-left: 0;\n }\n .col-sm-offset-3 {\n margin-right: 25%;\n margin-left: 0;\n }\n .col-sm-offset-2 {\n margin-right: 16.66666667%;\n margin-left: 0;\n }\n .col-sm-offset-1 {\n margin-right: 8.33333333%;\n margin-left: 0;\n }\n .col-sm-offset-0 {\n margin-right: 0%;\n margin-left: 0;\n }\n }\n @media (min-width: 992px) {\n .col-md-1,\n .col-md-2,\n .col-md-3,\n .col-md-4,\n .col-md-5,\n .col-md-6,\n .col-md-7,\n .col-md-8,\n .col-md-9,\n .col-md-10,\n .col-md-11,\n .col-md-12 {\n float: right;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n left: 100%;\n right: auto;\n }\n .col-md-pull-11 {\n left: 91.66666667%;\n right: auto;\n }\n .col-md-pull-10 {\n left: 83.33333333%;\n right: auto;\n }\n .col-md-pull-9 {\n left: 75%;\n right: auto;\n }\n .col-md-pull-8 {\n left: 66.66666667%;\n right: auto;\n }\n .col-md-pull-7 {\n left: 58.33333333%;\n right: auto;\n }\n .col-md-pull-6 {\n left: 50%;\n right: auto;\n }\n .col-md-pull-5 {\n left: 41.66666667%;\n right: auto;\n }\n .col-md-pull-4 {\n left: 33.33333333%;\n right: auto;\n }\n .col-md-pull-3 {\n left: 25%;\n right: auto;\n }\n .col-md-pull-2 {\n left: 16.66666667%;\n right: auto;\n }\n .col-md-pull-1 {\n left: 8.33333333%;\n right: auto;\n }\n .col-md-pull-0 {\n left: auto;\n right: auto;\n }\n .col-md-push-12 {\n right: 100%;\n left: 0;\n }\n .col-md-push-11 {\n right: 91.66666667%;\n left: 0;\n }\n .col-md-push-10 {\n right: 83.33333333%;\n left: 0;\n }\n .col-md-push-9 {\n right: 75%;\n left: 0;\n }\n .col-md-push-8 {\n right: 66.66666667%;\n left: 0;\n }\n .col-md-push-7 {\n right: 58.33333333%;\n left: 0;\n }\n .col-md-push-6 {\n right: 50%;\n left: 0;\n }\n .col-md-push-5 {\n right: 41.66666667%;\n left: 0;\n }\n .col-md-push-4 {\n right: 33.33333333%;\n left: 0;\n }\n .col-md-push-3 {\n right: 25%;\n left: 0;\n }\n .col-md-push-2 {\n right: 16.66666667%;\n left: 0;\n }\n .col-md-push-1 {\n right: 8.33333333%;\n left: 0;\n }\n .col-md-push-0 {\n right: auto;\n left: 0;\n }\n .col-md-offset-12 {\n margin-right: 100%;\n margin-left: 0;\n }\n .col-md-offset-11 {\n margin-right: 91.66666667%;\n margin-left: 0;\n }\n .col-md-offset-10 {\n margin-right: 83.33333333%;\n margin-left: 0;\n }\n .col-md-offset-9 {\n margin-right: 75%;\n margin-left: 0;\n }\n .col-md-offset-8 {\n margin-right: 66.66666667%;\n margin-left: 0;\n }\n .col-md-offset-7 {\n margin-right: 58.33333333%;\n margin-left: 0;\n }\n .col-md-offset-6 {\n margin-right: 50%;\n margin-left: 0;\n }\n .col-md-offset-5 {\n margin-right: 41.66666667%;\n margin-left: 0;\n }\n .col-md-offset-4 {\n margin-right: 33.33333333%;\n margin-left: 0;\n }\n .col-md-offset-3 {\n margin-right: 25%;\n margin-left: 0;\n }\n .col-md-offset-2 {\n margin-right: 16.66666667%;\n margin-left: 0;\n }\n .col-md-offset-1 {\n margin-right: 8.33333333%;\n margin-left: 0;\n }\n .col-md-offset-0 {\n margin-right: 0%;\n margin-left: 0;\n }\n }\n @media (min-width: 1200px) {\n .col-lg-1,\n .col-lg-2,\n .col-lg-3,\n .col-lg-4,\n .col-lg-5,\n .col-lg-6,\n .col-lg-7,\n .col-lg-8,\n .col-lg-9,\n .col-lg-10,\n .col-lg-11,\n .col-lg-12 {\n float: right;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n left: 100%;\n right: auto;\n }\n .col-lg-pull-11 {\n left: 91.66666667%;\n right: auto;\n }\n .col-lg-pull-10 {\n left: 83.33333333%;\n right: auto;\n }\n .col-lg-pull-9 {\n left: 75%;\n right: auto;\n }\n .col-lg-pull-8 {\n left: 66.66666667%;\n right: auto;\n }\n .col-lg-pull-7 {\n left: 58.33333333%;\n right: auto;\n }\n .col-lg-pull-6 {\n left: 50%;\n right: auto;\n }\n .col-lg-pull-5 {\n left: 41.66666667%;\n right: auto;\n }\n .col-lg-pull-4 {\n left: 33.33333333%;\n right: auto;\n }\n .col-lg-pull-3 {\n left: 25%;\n right: auto;\n }\n .col-lg-pull-2 {\n left: 16.66666667%;\n right: auto;\n }\n .col-lg-pull-1 {\n left: 8.33333333%;\n right: auto;\n }\n .col-lg-pull-0 {\n left: auto;\n right: auto;\n }\n .col-lg-push-12 {\n right: 100%;\n left: 0;\n }\n .col-lg-push-11 {\n right: 91.66666667%;\n left: 0;\n }\n .col-lg-push-10 {\n right: 83.33333333%;\n left: 0;\n }\n .col-lg-push-9 {\n right: 75%;\n left: 0;\n }\n .col-lg-push-8 {\n right: 66.66666667%;\n left: 0;\n }\n .col-lg-push-7 {\n right: 58.33333333%;\n left: 0;\n }\n .col-lg-push-6 {\n right: 50%;\n left: 0;\n }\n .col-lg-push-5 {\n right: 41.66666667%;\n left: 0;\n }\n .col-lg-push-4 {\n right: 33.33333333%;\n left: 0;\n }\n .col-lg-push-3 {\n right: 25%;\n left: 0;\n }\n .col-lg-push-2 {\n right: 16.66666667%;\n left: 0;\n }\n .col-lg-push-1 {\n right: 8.33333333%;\n left: 0;\n }\n .col-lg-push-0 {\n right: auto;\n left: 0;\n }\n .col-lg-offset-12 {\n margin-right: 100%;\n margin-left: 0;\n }\n .col-lg-offset-11 {\n margin-right: 91.66666667%;\n margin-left: 0;\n }\n .col-lg-offset-10 {\n margin-right: 83.33333333%;\n margin-left: 0;\n }\n .col-lg-offset-9 {\n margin-right: 75%;\n margin-left: 0;\n }\n .col-lg-offset-8 {\n margin-right: 66.66666667%;\n margin-left: 0;\n }\n .col-lg-offset-7 {\n margin-right: 58.33333333%;\n margin-left: 0;\n }\n .col-lg-offset-6 {\n margin-right: 50%;\n margin-left: 0;\n }\n .col-lg-offset-5 {\n margin-right: 41.66666667%;\n margin-left: 0;\n }\n .col-lg-offset-4 {\n margin-right: 33.33333333%;\n margin-left: 0;\n }\n .col-lg-offset-3 {\n margin-right: 25%;\n margin-left: 0;\n }\n .col-lg-offset-2 {\n margin-right: 16.66666667%;\n margin-left: 0;\n }\n .col-lg-offset-1 {\n margin-right: 8.33333333%;\n margin-left: 0;\n }\n .col-lg-offset-0 {\n margin-right: 0%;\n margin-left: 0;\n }\n }\n\n caption {\n text-align: right;\n }\n\n th:not(.mx-left-aligned) {\n text-align: right;\n }\n\n @media screen and (max-width: 767px) {\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-right: 0;\n border-left: initial;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-left: 0;\n border-right: initial;\n }\n }\n\n .radio label,\n .checkbox label {\n padding-right: 20px;\n padding-left: initial;\n }\n\n .radio input[type=\"radio\"],\n .radio-inline input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"],\n .checkbox-inline input[type=\"checkbox\"] {\n margin-right: -20px;\n margin-left: auto;\n }\n\n .radio-inline,\n .checkbox-inline {\n padding-right: 20px;\n padding-left: 0;\n }\n\n .radio-inline + .radio-inline,\n .checkbox-inline + .checkbox-inline {\n margin-right: 10px;\n margin-left: 0;\n }\n\n .has-feedback .form-control {\n padding-left: 42.5px;\n padding-right: 12px;\n }\n\n .form-control-feedback {\n left: 0;\n right: auto;\n }\n\n @media (min-width: 768px) {\n .form-inline label {\n padding-right: 0;\n padding-left: initial;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n margin-right: 0;\n margin-left: auto;\n }\n }\n @media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: left;\n }\n }\n\n .form-horizontal .has-feedback .form-control-feedback {\n left: 15px;\n right: auto;\n }\n\n .caret {\n margin-right: 2px;\n margin-left: 0;\n }\n\n .dropdown-menu {\n right: 0;\n left: auto;\n float: left;\n text-align: right;\n }\n\n .dropdown-menu.pull-right {\n left: 0;\n right: auto;\n float: right;\n }\n\n .dropdown-menu-right {\n left: auto;\n right: 0;\n }\n\n .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n\n @media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n }\n\n .btn-group > .btn,\n .btn-group-vertical > .btn {\n float: right;\n }\n\n .btn-group .btn + .btn,\n .btn-group .btn + .btn-group,\n .btn-group .btn-group + .btn,\n .btn-group .btn-group + .btn-group {\n margin-right: -1px;\n margin-left: 0px;\n }\n\n .btn-toolbar {\n margin-right: -5px;\n margin-left: 0px;\n }\n\n .btn-toolbar .btn-group,\n .btn-toolbar .input-group {\n float: right;\n }\n\n .btn-toolbar > .btn,\n .btn-toolbar > .btn-group,\n .btn-toolbar > .input-group {\n margin-right: 5px;\n margin-left: 0px;\n }\n\n .btn-group > .btn:first-child {\n margin-right: 0;\n }\n\n .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n }\n\n .btn-group > .btn:last-child:not(:first-child),\n .btn-group > .dropdown-toggle:not(:first-child) {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n }\n\n .btn-group > .btn-group {\n float: right;\n }\n\n .btn-group.btn-group-justified > .btn,\n .btn-group.btn-group-justified > .btn-group {\n float: none;\n }\n\n .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n }\n\n .btn-group > .btn-group:first-child > .btn:last-child,\n .btn-group > .btn-group:first-child > .dropdown-toggle {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n }\n\n .btn-group > .btn-group:last-child > .btn:first-child {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n }\n\n .btn .caret {\n margin-right: 0;\n }\n\n .btn-group-vertical > .btn + .btn,\n .btn-group-vertical > .btn + .btn-group,\n .btn-group-vertical > .btn-group + .btn,\n .btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-right: 0;\n }\n\n .input-group .form-control {\n float: right;\n }\n\n .input-group .form-control:first-child,\n .input-group-addon:first-child,\n .input-group-btn:first-child > .btn,\n .input-group-btn:first-child > .btn-group > .btn,\n .input-group-btn:first-child > .dropdown-toggle,\n .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n }\n\n .input-group-addon:first-child {\n border-left: 0px;\n border-right: 1px solid;\n }\n\n .input-group .form-control:last-child,\n .input-group-addon:last-child,\n .input-group-btn:last-child > .btn,\n .input-group-btn:last-child > .btn-group > .btn,\n .input-group-btn:last-child > .dropdown-toggle,\n .input-group-btn:first-child > .btn:not(:first-child),\n .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n }\n\n .input-group-addon:last-child {\n border-left-width: 1px;\n border-left-style: solid;\n border-right: 0px;\n }\n\n .input-group-btn > .btn + .btn {\n margin-right: -1px;\n margin-left: auto;\n }\n\n .input-group-btn:first-child > .btn,\n .input-group-btn:first-child > .btn-group {\n margin-left: -1px;\n margin-right: auto;\n }\n\n .input-group-btn:last-child > .btn,\n .input-group-btn:last-child > .btn-group {\n margin-right: -1px;\n margin-left: auto;\n }\n\n .nav {\n padding-right: 0;\n padding-left: initial;\n }\n\n .nav-tabs > li {\n float: right;\n }\n\n .nav-tabs > li > a {\n margin-left: auto;\n margin-right: -2px;\n border-radius: 4px 4px 0 0;\n }\n\n .nav-pills > li {\n float: right;\n }\n\n .nav-pills > li > a {\n border-radius: 4px;\n }\n\n .nav-pills > li + li {\n margin-right: 2px;\n margin-left: auto;\n }\n\n .nav-stacked > li {\n float: none;\n }\n\n .nav-stacked > li + li {\n margin-right: 0;\n margin-left: auto;\n }\n\n .nav-justified > .dropdown .dropdown-menu {\n right: auto;\n }\n\n .nav-tabs-justified > li > a {\n margin-left: 0;\n margin-right: auto;\n }\n\n @media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-radius: 4px 4px 0 0;\n }\n }\n @media (min-width: 768px) {\n .navbar-header {\n float: right;\n }\n }\n\n .navbar-collapse {\n padding-right: 15px;\n padding-left: 15px;\n }\n\n .navbar-brand {\n float: right;\n }\n\n @media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-right: -15px;\n margin-left: auto;\n }\n }\n\n .navbar-toggle {\n float: left;\n margin-left: 15px;\n margin-right: auto;\n }\n\n @media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 25px 5px 15px;\n }\n }\n @media (min-width: 768px) {\n .navbar-nav {\n float: right;\n }\n .navbar-nav > li {\n float: right;\n }\n }\n @media (min-width: 768px) {\n .navbar-left.flip {\n float: right !important;\n }\n .navbar-right:last-child {\n margin-left: -15px;\n margin-right: auto;\n }\n .navbar-right.flip {\n float: left !important;\n margin-left: -15px;\n margin-right: auto;\n }\n .navbar-right .dropdown-menu {\n left: 0;\n right: auto;\n }\n }\n @media (min-width: 768px) {\n .navbar-text {\n float: right;\n }\n .navbar-text.navbar-right:last-child {\n margin-left: 0;\n margin-right: auto;\n }\n }\n\n .pagination {\n padding-right: 0;\n }\n\n .pagination > li > a,\n .pagination > li > span {\n float: right;\n margin-right: -1px;\n margin-left: 0px;\n }\n\n .pagination > li:first-child > a,\n .pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n }\n\n .pagination > li:last-child > a,\n .pagination > li:last-child > span {\n margin-right: -1px;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n }\n\n .pager {\n padding-right: 0;\n padding-left: initial;\n }\n\n .pager .next > a,\n .pager .next > span {\n float: left;\n }\n\n .pager .previous > a,\n .pager .previous > span {\n float: right;\n }\n\n .nav-pills > li > a > .badge {\n margin-left: 0px;\n margin-right: 3px;\n }\n\n .list-group-item > .badge {\n float: left;\n }\n\n .list-group-item > .badge + .badge {\n margin-left: 5px;\n margin-right: auto;\n }\n\n .alert-dismissable,\n .alert-dismissible {\n padding-left: 35px;\n padding-right: 15px;\n }\n\n .alert-dismissable .close,\n .alert-dismissible .close {\n right: auto;\n left: -21px;\n }\n\n .progress-bar {\n float: right;\n }\n\n .media > .pull-left {\n margin-right: 10px;\n }\n\n .media > .pull-left.flip {\n margin-right: 0;\n margin-left: 10px;\n }\n\n .media > .pull-right {\n margin-left: 10px;\n }\n\n .media > .pull-right.flip {\n margin-left: 0;\n margin-right: 10px;\n }\n\n .media-right,\n .media > .pull-right {\n padding-right: 10px;\n padding-left: initial;\n }\n\n .media-left,\n .media > .pull-left {\n padding-left: 10px;\n padding-right: initial;\n }\n\n .media-list {\n padding-right: 0;\n padding-left: initial;\n list-style: none;\n }\n\n .list-group {\n padding-right: 0;\n padding-left: initial;\n }\n\n .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n .panel\n > .table-responsive:first-child\n > .table:first-child\n > tbody:first-child\n > tr:first-child\n th:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 0;\n }\n\n .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 0;\n }\n\n .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n border-top-right-radius: 0;\n }\n\n .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n border-top-left-radius: 0;\n }\n\n .panel > .table-bordered > thead > tr > th:first-child,\n .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n .panel > .table-bordered > tbody > tr > th:first-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .panel > .table-bordered > tfoot > tr > th:first-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .panel > .table-bordered > thead > tr > td:first-child,\n .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n .panel > .table-bordered > tbody > tr > td:first-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .panel > .table-bordered > tfoot > tr > td:first-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-right: 0;\n border-left: none;\n }\n\n .panel > .table-bordered > thead > tr > th:last-child,\n .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n .panel > .table-bordered > tbody > tr > th:last-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .panel > .table-bordered > tfoot > tr > th:last-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .panel > .table-bordered > thead > tr > td:last-child,\n .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n .panel > .table-bordered > tbody > tr > td:last-child,\n .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .panel > .table-bordered > tfoot > tr > td:last-child,\n .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: none;\n border-left: 0;\n }\n\n .embed-responsive .embed-responsive-item,\n .embed-responsive iframe,\n .embed-responsive embed,\n .embed-responsive object {\n right: 0;\n left: auto;\n }\n\n .close {\n float: left;\n }\n\n .modal-footer {\n text-align: left;\n }\n\n .modal-footer.flip {\n text-align: right;\n }\n\n .modal-footer .btn + .btn {\n margin-left: auto;\n margin-right: 5px;\n }\n\n .modal-footer .btn-group .btn + .btn {\n margin-right: -1px;\n margin-left: auto;\n }\n\n .modal-footer .btn-block + .btn-block {\n margin-right: 0;\n margin-left: auto;\n }\n\n .popover {\n left: auto;\n text-align: right;\n }\n\n .popover.top > .arrow {\n right: 50%;\n left: auto;\n margin-right: -11px;\n margin-left: auto;\n }\n\n .popover.top > .arrow:after {\n margin-right: -10px;\n margin-left: auto;\n }\n\n .popover.bottom > .arrow {\n right: 50%;\n left: auto;\n margin-right: -11px;\n margin-left: auto;\n }\n\n .popover.bottom > .arrow:after {\n margin-right: -10px;\n margin-left: auto;\n }\n\n .carousel-control {\n right: 0;\n bottom: 0;\n }\n\n .carousel-control.left {\n right: auto;\n left: 0;\n background-image: -webkit-linear-gradient(\n left,\n color-stop(rgba(0, 0, 0, 0.5) 0%),\n color-stop(rgba(0, 0, 0, 0.0001) 100%)\n );\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n }\n\n .carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(\n left,\n color-stop(rgba(0, 0, 0, 0.0001) 0%),\n color-stop(rgba(0, 0, 0, 0.5) 100%)\n );\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n }\n\n .carousel-control .icon-prev,\n .carousel-control .glyphicon-chevron-left {\n left: 50%;\n right: auto;\n margin-right: -10px;\n }\n\n .carousel-control .icon-next,\n .carousel-control .glyphicon-chevron-right {\n right: 50%;\n left: auto;\n margin-left: -10px;\n }\n\n .carousel-indicators {\n right: 50%;\n left: 0;\n margin-right: -30%;\n margin-left: 0;\n padding-left: 0;\n }\n\n @media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: 0;\n margin-right: -15px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-left: 0;\n margin-right: -15px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n }\n\n .pull-right.flip {\n float: left !important;\n }\n\n .pull-left.flip {\n float: right !important;\n }\n }\n}\n","/* @preserve\n Copyright (c) 2005-2016, Mendix bv. All rights reserved.\n See mxclientsystem/licenses.txt for third party licenses that apply.\n*/\n\n/*\n\tEssential styles that themes can inherit.\n\tIn other words, works but doesn't look great.\n*/\n\n@mixin mxui() {\n /****\n\t\tGENERIC PIECES\n ****/\n\n .dijitReset {\n /* Use this style to null out padding, margin, border in your template elements\n\t\tso that page specific styles don't break them.\n\t\t- Use in all TABLE, TR and TD tags.\n\t*/\n margin: 0;\n border: 0;\n padding: 0;\n font: inherit;\n line-height: normal;\n color: inherit;\n }\n .dj_a11y .dijitReset {\n -moz-appearance: none; /* remove predefined high-contrast styling in Firefox */\n }\n\n .dijitInline {\n /* To inline block elements.\n\t\tSimilar to InlineBox below, but this has fewer side-effects in Moz.\n\t\tAlso, apparently works on a DIV as well as a FIELDSET.\n\t*/\n display: inline-block; /* webkit and FF3 */\n border: 0;\n padding: 0;\n vertical-align: middle;\n }\n\n table.dijitInline {\n /* To inline tables with a given width set */\n display: inline-table;\n box-sizing: content-box;\n }\n\n .dijitHidden {\n /* To hide unselected panes in StackContainer etc. */\n position: absolute; /* remove from normal document flow to simulate display: none */\n visibility: hidden; /* hide element from view, but don't break scrolling, see #18612 */\n }\n .dijitHidden * {\n visibility: hidden !important; /* hide visibility:visible descendants of class=dijitHidden nodes, see #18799 */\n }\n\n .dijitVisible {\n /* To show selected pane in StackContainer etc. */\n display: block !important; /* override user's display:none setting via style setting or indirectly via class */\n position: relative; /* to support setting width/height, see #2033 */\n visibility: visible;\n }\n\n .dj_ie6 .dijitComboBox .dijitInputContainer,\n .dijitInputContainer {\n /* for positioning of placeHolder */\n overflow: hidden;\n float: none !important; /* needed to squeeze the INPUT in */\n position: relative;\n }\n .dj_ie7 .dijitInputContainer {\n float: left !important; /* needed by IE to squeeze the INPUT in */\n clear: left;\n display: inline-block !important; /* to fix wrong text alignment in textdir=rtl text box */\n }\n\n .dj_ie .dijitSelect input,\n .dj_ie input.dijitTextBox,\n .dj_ie .dijitTextBox input {\n font-size: 100%;\n }\n .dijitSelect .dijitButtonText {\n float: left;\n vertical-align: top;\n }\n table.dijitSelect {\n padding: 0 !important; /* messes up border alignment */\n border-collapse: separate; /* so jsfiddle works with Normalized CSS checked */\n }\n .dijitTextBox .dijitSpinnerButtonContainer,\n .dijitTextBox .dijitArrowButtonContainer,\n .dijitValidationTextBox .dijitValidationContainer {\n float: right;\n text-align: center;\n }\n .dijitSelect input.dijitInputField,\n .dijitTextBox input.dijitInputField {\n /* override unreasonable user styling of buttons and icons */\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .dijitValidationTextBox .dijitValidationContainer {\n display: none;\n }\n\n .dijitTeeny {\n font-size: 1px;\n line-height: 1px;\n }\n\n .dijitOffScreen {\n /* these class attributes should supersede any inline positioning style */\n position: absolute !important;\n left: -10000px !important;\n top: -10000px !important;\n }\n\n /*\n * Popup items have a wrapper div (dijitPopup)\n * with the real popup inside, and maybe an iframe too\n */\n .dijitPopup {\n position: absolute;\n background-color: transparent;\n margin: 0;\n border: 0;\n padding: 0;\n -webkit-overflow-scrolling: touch;\n }\n\n .dijitPositionOnly {\n /* Null out all position-related properties */\n padding: 0 !important;\n border: 0 !important;\n background-color: transparent !important;\n background-image: none !important;\n height: auto !important;\n width: auto !important;\n }\n\n .dijitNonPositionOnly {\n /* Null position-related properties */\n float: none !important;\n position: static !important;\n margin: 0 0 0 0 !important;\n vertical-align: middle !important;\n }\n\n .dijitBackgroundIframe {\n /* iframe used to prevent problems with PDF or other applets overlaying menus etc */\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n z-index: -1;\n border: 0;\n padding: 0;\n margin: 0;\n }\n\n .dijitDisplayNone {\n /* hide something. Use this as a class rather than element.style so another class can override */\n display: none !important;\n }\n\n .dijitContainer {\n /* for all layout containers */\n overflow: hidden; /* need on IE so something can be reduced in size, and so scrollbars aren't temporarily displayed when resizing */\n }\n\n /****\n\t\tA11Y\n ****/\n .dj_a11y .dijitIcon,\n .dj_a11y div.dijitArrowButtonInner, /* is this only for Spinner? if so, it should be deleted */\n .dj_a11y span.dijitArrowButtonInner,\n .dj_a11y img.dijitArrowButtonInner,\n .dj_a11y .dijitCalendarIncrementControl,\n .dj_a11y .dijitTreeExpando {\n /* hide icon nodes in high contrast mode; when necessary they will be replaced by character equivalents\n\t * exception for input.dijitArrowButtonInner, because the icon and character are controlled by the same node */\n display: none;\n }\n .dijitSpinner div.dijitArrowButtonInner {\n display: block; /* override previous rule */\n }\n\n .dj_a11y .dijitA11ySideArrow {\n display: inline !important; /* display text instead */\n cursor: pointer;\n }\n\n /*\n * Since we can't use shading in a11y mode, and since the underline indicates today's date,\n * use a border to show the selected date.\n * Avoid screen jitter when switching selected date by compensating for the selected node's\n * border w/padding on other nodes.\n */\n .dj_a11y .dijitCalendarDateLabel {\n padding: 1px;\n border: 0px !important;\n }\n .dj_a11y .dijitCalendarSelectedDate .dijitCalendarDateLabel {\n border-style: solid !important;\n border-width: 1px !important;\n padding: 0;\n }\n .dj_a11y .dijitCalendarDateTemplate {\n padding-bottom: 0.1em !important; /* otherwise bottom border doesn't appear on IE */\n border: 0px !important;\n }\n .dj_a11y .dijitButtonNode {\n border: black outset medium !important;\n\n /* In claro, hovering a toolbar button reduces padding and adds a border.\n\t * Not needed in a11y mode since Toolbar buttons always have a border.\n\t */\n padding: 0 !important;\n }\n .dj_a11y .dijitArrowButton {\n padding: 0 !important;\n }\n\n .dj_a11y .dijitButtonContents {\n margin: 0.15em; /* Margin needed to make focus outline visible */\n }\n\n .dj_a11y .dijitTextBoxReadOnly .dijitInputField,\n .dj_a11y .dijitTextBoxReadOnly .dijitButtonNode {\n border-style: outset !important;\n border-width: medium !important;\n border-color: #999 !important;\n color: #999 !important;\n }\n\n /* button inner contents - labels, icons etc. */\n .dijitButtonNode * {\n vertical-align: middle;\n }\n .dijitSelect .dijitArrowButtonInner,\n .dijitButtonNode .dijitArrowButtonInner {\n /* the arrow icon node */\n background: no-repeat center;\n width: 12px;\n height: 12px;\n direction: ltr; /* needed by IE/RTL */\n }\n\n /****\n\t3-element borders: ( dijitLeft + dijitStretch + dijitRight )\n\tThese were added for rounded corners on dijit.form.*Button but never actually used.\n ****/\n\n .dijitLeft {\n /* Left part of a 3-element border */\n background-position: left top;\n background-repeat: no-repeat;\n }\n\n .dijitStretch {\n /* Middle (stretchy) part of a 3-element border */\n white-space: nowrap; /* MOW: move somewhere else */\n background-repeat: repeat-x;\n }\n\n .dijitRight {\n /* Right part of a 3-element border */\n background-position: right top;\n background-repeat: no-repeat;\n }\n\n /* Buttons */\n .dj_gecko .dj_a11y .dijitButtonDisabled .dijitButtonNode {\n opacity: 0.5;\n }\n\n .dijitToggleButton,\n .dijitButton,\n .dijitDropDownButton,\n .dijitComboButton {\n /* outside of button */\n margin: 0.2em;\n vertical-align: middle;\n }\n\n .dijitButtonContents {\n display: block; /* to make focus border rectangular */\n }\n td.dijitButtonContents {\n display: table-cell; /* but don't affect Select, ComboButton */\n }\n\n .dijitButtonNode img {\n /* make text and images line up cleanly */\n vertical-align: middle;\n /*margin-bottom:.2em;*/\n }\n\n .dijitToolbar .dijitComboButton {\n /* because Toolbar only draws a border around the hovered thing */\n border-collapse: separate;\n }\n\n .dijitToolbar .dijitToggleButton,\n .dijitToolbar .dijitButton,\n .dijitToolbar .dijitDropDownButton,\n .dijitToolbar .dijitComboButton {\n margin: 0;\n }\n\n .dijitToolbar .dijitButtonContents {\n /* just because it used to be this way */\n padding: 1px 2px;\n }\n\n .dj_webkit .dijitToolbar .dijitDropDownButton {\n padding-left: 0.3em;\n }\n .dj_gecko .dijitToolbar .dijitButtonNode::-moz-focus-inner {\n padding: 0;\n }\n\n .dijitSelect {\n border: 1px solid gray;\n }\n .dijitButtonNode {\n /* Node that is acting as a button -- may or may not be a BUTTON element */\n border: 1px solid gray;\n margin: 0;\n line-height: normal;\n vertical-align: middle;\n text-align: center;\n white-space: nowrap;\n }\n .dj_webkit .dijitSpinner .dijitSpinnerButtonContainer {\n /* apparent WebKit bug where messing with the font coupled with line-height:normal X 2 (dijitReset & dijitButtonNode)\n\tcan be different than just a single line-height:normal, visible in InlineEditBox/Spinner */\n line-height: inherit;\n }\n .dijitTextBox .dijitButtonNode {\n border-width: 0;\n }\n\n .dijitSelect,\n .dijitSelect *,\n .dijitButtonNode,\n .dijitButtonNode * {\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n\n .dj_ie .dijitButtonNode {\n /* ensure hasLayout */\n zoom: 1;\n }\n\n .dj_ie .dijitButtonNode button {\n /*\n\t\tdisgusting hack to get rid of spurious padding around button elements\n\t\ton IE. MSIE is truly the web's boat anchor.\n\t*/\n overflow: visible;\n }\n\n div.dijitArrowButton {\n float: right;\n }\n\n /******\n\tTextBox related.\n\tEverything that has an \n*******/\n\n .dijitTextBox {\n border: solid black 1px;\n width: 15em; /* need to set default size on outer node since inner nodes say and
    . user can override */\n vertical-align: middle;\n }\n\n .dijitTextBoxReadOnly,\n .dijitTextBoxDisabled {\n color: gray;\n }\n .dj_safari .dijitTextBoxDisabled input {\n color: #b0b0b0; /* because Safari lightens disabled input/textarea no matter what color you specify */\n }\n .dj_safari textarea.dijitTextAreaDisabled {\n color: #333; /* because Safari lightens disabled input/textarea no matter what color you specify */\n }\n .dj_gecko .dijitTextBoxReadOnly input.dijitInputField, /* disable arrow and validation presentation inputs but allow real input for text selection */\n .dj_gecko .dijitTextBoxDisabled input {\n -moz-user-input: none; /* prevent focus of disabled textbox buttons */\n }\n\n .dijitPlaceHolder {\n /* hint text that appears in a textbox until user starts typing */\n color: #aaaaaa;\n font-style: italic;\n position: absolute;\n top: 0;\n left: 0;\n white-space: nowrap;\n pointer-events: none; /* so cut/paste context menu shows up when right clicking */\n }\n\n .dijitTimeTextBox {\n width: 8em;\n }\n\n /* rules for webkit to deal with fuzzy blue focus border */\n .dijitTextBox input:focus {\n outline: none; /* blue fuzzy line looks wrong on combobox or something w/validation icon showing */\n }\n .dijitTextBoxFocused {\n outline: 5px -webkit-focus-ring-color;\n }\n\n .dijitSelect input,\n .dijitTextBox input {\n float: left; /* needed by IE to remove secret margin */\n }\n .dj_ie6 input.dijitTextBox,\n .dj_ie6 .dijitTextBox input {\n float: none;\n }\n .dijitInputInner {\n /* for when an is embedded inside an inline-block
    with a size and border */\n border: 0 !important;\n background-color: transparent !important;\n width: 100% !important;\n /* IE dislikes horizontal tweaking combined with width:100% so punish everyone for consistency */\n padding-left: 0 !important;\n padding-right: 0 !important;\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .dj_a11y .dijitTextBox input {\n margin: 0 !important;\n }\n .dijitValidationTextBoxError input.dijitValidationInner,\n .dijitSelect input,\n .dijitTextBox input.dijitArrowButtonInner {\n /* used to display arrow icon/validation icon, or in arrow character in high contrast mode.\n\t * The css below is a trick to hide the character in non-high-contrast mode\n\t */\n text-indent: -2em !important;\n direction: ltr !important;\n text-align: left !important;\n height: auto !important;\n }\n .dj_ie .dijitSelect input,\n .dj_ie .dijitTextBox input,\n .dj_ie input.dijitTextBox {\n overflow-y: visible; /* inputs need help expanding when padding is added or line-height is adjusted */\n line-height: normal; /* strict mode */\n }\n .dijitSelect .dijitSelectLabel span {\n line-height: 100%;\n }\n .dj_ie .dijitSelect .dijitSelectLabel {\n line-height: normal;\n }\n .dj_ie6 .dijitSelect .dijitSelectLabel,\n .dj_ie7 .dijitSelect .dijitSelectLabel,\n .dj_ie8 .dijitSelect .dijitSelectLabel,\n .dj_iequirks .dijitSelect .dijitSelectLabel,\n .dijitSelect td,\n .dj_ie6 .dijitSelect input,\n .dj_iequirks .dijitSelect input,\n .dj_ie6 .dijitSelect .dijitValidationContainer,\n .dj_ie6 .dijitTextBox input,\n .dj_ie6 input.dijitTextBox,\n .dj_iequirks .dijitTextBox input.dijitValidationInner,\n .dj_iequirks .dijitTextBox input.dijitArrowButtonInner,\n .dj_iequirks .dijitTextBox input.dijitSpinnerButtonInner,\n .dj_iequirks .dijitTextBox input.dijitInputInner,\n .dj_iequirks input.dijitTextBox {\n line-height: 100%; /* IE7 problem where the icon is vertically way too low w/o this */\n }\n .dj_a11y input.dijitValidationInner,\n .dj_a11y input.dijitArrowButtonInner {\n /* (in high contrast mode) revert rules from above so character displays */\n text-indent: 0 !important;\n width: 1em !important;\n color: black !important;\n }\n .dijitValidationTextBoxError .dijitValidationContainer {\n display: inline;\n cursor: default;\n }\n\n /* ComboBox & Spinner */\n\n .dijitSpinner .dijitSpinnerButtonContainer,\n .dijitComboBox .dijitArrowButtonContainer {\n /* dividing line between input area and up/down button(s) for ComboBox and Spinner */\n border-width: 0 0 0 1px !important; /* !important needed due to wayward \".theme .dijitButtonNode\" rules */\n }\n .dj_a11y .dijitSelect .dijitArrowButtonContainer,\n .dijitToolbar .dijitComboBox .dijitArrowButtonContainer {\n /* overrides above rule plus mirror-image rule in dijit_rtl.css to have no divider when ComboBox in Toolbar */\n border-width: 0 !important;\n }\n\n .dijitComboBoxMenu {\n /* Drop down menu is implemented as
    • ... but we don't want circles before each item */\n list-style-type: none;\n }\n .dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode {\n /* dividing line between input area and up/down button(s) for ComboBox and Spinner */\n border-width: 0;\n }\n .dj_ie .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode {\n clear: both; /* IE workaround */\n }\n\n .dj_ie .dijitToolbar .dijitComboBox {\n /* make combobox buttons align properly with other buttons in a toolbar */\n vertical-align: middle;\n }\n\n /* Spinner */\n\n .dijitTextBox .dijitSpinnerButtonContainer {\n width: 1em;\n position: relative !important;\n overflow: hidden;\n }\n .dijitSpinner .dijitSpinnerButtonInner {\n width: 1em;\n visibility: hidden !important; /* just a sizing element */\n overflow-x: hidden;\n }\n .dijitComboBox .dijitButtonNode,\n .dijitSpinnerButtonContainer .dijitButtonNode {\n border-width: 0;\n }\n .dj_a11y .dijitSpinnerButtonContainer .dijitButtonNode {\n border-width: 0px !important;\n border-style: solid !important;\n }\n .dj_a11y .dijitTextBox .dijitSpinnerButtonContainer,\n .dj_a11y .dijitSpinner .dijitArrowButtonInner,\n .dj_a11y .dijitSpinnerButtonContainer input {\n width: 1em !important;\n }\n .dj_a11y .dijitSpinner .dijitArrowButtonInner {\n margin: 0 auto !important; /* should auto-center */\n }\n .dj_ie .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\n padding-left: 0.3em !important;\n padding-right: 0.3em !important;\n margin-left: 0.3em !important;\n margin-right: 0.3em !important;\n width: 1.4em !important;\n }\n .dj_ie7 .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\n padding-left: 0 !important; /* manually center INPUT: character is .5em and total width = 1em */\n padding-right: 0 !important;\n width: 1em !important;\n }\n .dj_ie6 .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\n margin-left: 0.1em !important;\n margin-right: 0.1em !important;\n width: 1em !important;\n }\n .dj_iequirks .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\n margin-left: 0 !important;\n margin-right: 0 !important;\n width: 2em !important;\n }\n .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\n /* note: .dijitInputLayoutContainer makes this rule override .dijitArrowButton settings\n\t * for dijit.form.Button\n\t */\n padding: 0;\n position: absolute !important;\n right: 0;\n float: none;\n height: 50%;\n width: 100%;\n bottom: auto;\n left: 0;\n right: auto;\n }\n .dj_iequirks .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\n width: auto;\n }\n .dj_a11y .dijitSpinnerButtonContainer .dijitArrowButton {\n overflow: visible !important;\n }\n .dijitSpinner .dijitSpinnerButtonContainer .dijitDownArrowButton {\n top: 50%;\n border-top-width: 1px !important;\n }\n .dijitSpinner .dijitSpinnerButtonContainer .dijitUpArrowButton {\n top: 0;\n }\n .dijitSpinner .dijitArrowButtonInner {\n margin: auto;\n overflow-x: hidden;\n height: 100% !important;\n }\n .dj_iequirks .dijitSpinner .dijitArrowButtonInner {\n height: auto !important;\n }\n .dijitSpinner .dijitArrowButtonInner .dijitInputField {\n transform: scale(0.5);\n transform-origin: left top;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0 !important;\n padding-right: 0 !important;\n width: 100%;\n visibility: hidden;\n }\n .dj_ie .dijitSpinner .dijitArrowButtonInner .dijitInputField {\n zoom: 50%; /* emulate transform: scale(0.5) */\n }\n .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButtonInner {\n overflow: hidden;\n }\n\n .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\n width: 100%;\n }\n .dj_iequirks .dj_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {\n width: 1em; /* matches .dj_a11y .dijitTextBox .dijitSpinnerButtonContainer rule - 100% is the whole screen width in quirks */\n }\n .dj_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {\n vertical-align: top;\n visibility: visible;\n }\n .dj_a11y .dijitSpinnerButtonContainer {\n width: 1em;\n }\n\n /****\n\t\tdijit.form.CheckBox\n \t &\n \t\tdijit.form.RadioButton\n ****/\n\n .dijitCheckBox,\n .dijitRadio,\n .dijitCheckBoxInput {\n padding: 0;\n border: 0;\n width: 16px;\n height: 16px;\n background-position: center center;\n background-repeat: no-repeat;\n overflow: hidden;\n }\n\n .dijitCheckBox input,\n .dijitRadio input {\n margin: 0;\n padding: 0;\n display: block;\n }\n\n .dijitCheckBoxInput {\n /* place the actual input on top, but invisible */\n opacity: 0;\n }\n\n .dj_ie .dijitCheckBoxInput {\n filter: alpha(opacity=0);\n }\n\n .dj_a11y .dijitCheckBox,\n .dj_a11y .dijitRadio {\n /* in a11y mode we display the native checkbox (not the icon), so don't restrict the size */\n width: auto !important;\n height: auto !important;\n }\n .dj_a11y .dijitCheckBoxInput {\n opacity: 1;\n filter: none;\n width: auto;\n height: auto;\n }\n\n .dj_a11y .dijitFocusedLabel {\n /* for checkboxes or radio buttons in high contrast mode, use border rather than outline to indicate focus (outline does not work in FF)*/\n border: 1px dotted;\n outline: 0px !important;\n }\n\n /****\n\t\tdijit.ProgressBar\n ****/\n\n .dijitProgressBar {\n z-index: 0; /* so z-index settings below have no effect outside of the ProgressBar */\n }\n .dijitProgressBarEmpty {\n /* outer container and background of the bar that's not finished yet*/\n position: relative;\n overflow: hidden;\n border: 1px solid black; /* a11y: border necessary for high-contrast mode */\n z-index: 0; /* establish a stacking context for this progress bar */\n }\n\n .dijitProgressBarFull {\n /* outer container for background of bar that is finished */\n position: absolute;\n overflow: hidden;\n z-index: -1;\n top: 0;\n width: 100%;\n }\n .dj_ie6 .dijitProgressBarFull {\n height: 1.6em;\n }\n\n .dijitProgressBarTile {\n /* inner container for finished portion */\n position: absolute;\n overflow: hidden;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n margin: 0;\n padding: 0;\n width: 100%; /* needed for IE/quirks */\n height: auto;\n background-color: #aaa;\n background-attachment: fixed;\n }\n\n .dj_a11y .dijitProgressBarTile {\n /* a11y: The border provides visibility in high-contrast mode */\n border-width: 2px;\n border-style: solid;\n background-color: transparent !important;\n }\n\n .dj_ie6 .dijitProgressBarTile {\n /* width:auto works in IE6 with position:static but not position:absolute */\n position: static;\n /* height:auto or 100% does not work in IE6 */\n height: 1.6em;\n }\n\n .dijitProgressBarIndeterminate .dijitProgressBarTile {\n /* animated gif for 'indeterminate' mode */\n }\n\n .dijitProgressBarIndeterminateHighContrastImage {\n display: none;\n }\n\n .dj_a11y .dijitProgressBarIndeterminate .dijitProgressBarIndeterminateHighContrastImage {\n display: block;\n position: absolute;\n top: 0;\n bottom: 0;\n margin: 0;\n padding: 0;\n width: 100%;\n height: auto;\n }\n\n .dijitProgressBarLabel {\n display: block;\n position: static;\n width: 100%;\n text-align: center;\n background-color: transparent !important;\n }\n\n /****\n\t\tdijit.Tooltip\n ****/\n\n .dijitTooltip {\n position: absolute;\n z-index: 2000;\n display: block;\n /* make visible but off screen */\n left: 0;\n top: -10000px;\n overflow: visible;\n }\n\n .dijitTooltipContainer {\n border: solid black 2px;\n background: #b8b5b5;\n color: black;\n font-size: small;\n }\n\n .dijitTooltipFocusNode {\n padding: 2px 2px 2px 2px;\n }\n\n .dijitTooltipConnector {\n position: absolute;\n }\n .dj_a11y .dijitTooltipConnector {\n display: none; /* won't show b/c it's background-image; hide to avoid border gap */\n }\n\n .dijitTooltipData {\n display: none;\n }\n\n /* Layout widgets. This is essential CSS to make layout work (it isn't \"styling\" CSS)\n make sure that the position:absolute in dijitAlign* overrides other classes */\n\n .dijitLayoutContainer {\n position: relative;\n display: block;\n overflow: hidden;\n }\n\n .dijitAlignTop,\n .dijitAlignBottom,\n .dijitAlignLeft,\n .dijitAlignRight {\n position: absolute;\n overflow: hidden;\n }\n\n body .dijitAlignClient {\n position: absolute;\n }\n\n /*\n * BorderContainer\n *\n * .dijitBorderContainer is a stylized layout where panes have border and margin.\n * .dijitBorderContainerNoGutter is a raw layout.\n */\n .dijitBorderContainer,\n .dijitBorderContainerNoGutter {\n position: relative;\n overflow: hidden;\n z-index: 0; /* so z-index settings below have no effect outside of the BorderContainer */\n }\n\n .dijitBorderContainerPane,\n .dijitBorderContainerNoGutterPane {\n position: absolute !important; /* !important to override position:relative in dijitTabContainer etc. */\n z-index: 2; /* above the splitters so that off-by-one browser errors don't cover up border of pane */\n }\n\n .dijitBorderContainer > .dijitTextArea {\n /* On Safari, for SimpleTextArea inside a BorderContainer,\n\t\tdon't want to display the grip to resize */\n resize: none;\n }\n\n .dijitGutter {\n /* gutter is just a place holder for empty space between panes in BorderContainer */\n position: absolute;\n font-size: 1px; /* needed by IE6 even though div is empty, otherwise goes to 15px */\n }\n\n /* SplitContainer\n\n\t'V' == container that splits vertically (up/down)\n\t'H' = horizontal (left/right)\n*/\n\n .dijitSplitter {\n position: absolute;\n overflow: hidden;\n z-index: 10; /* above the panes so that splitter focus is visible on FF, see #7583*/\n background-color: #fff;\n border-color: gray;\n border-style: solid;\n border-width: 0;\n }\n .dj_ie .dijitSplitter {\n z-index: 1; /* behind the panes so that pane borders aren't obscured see test_Gui.html/[14392] */\n }\n\n .dijitSplitterActive {\n z-index: 11 !important;\n }\n\n .dijitSplitterCover {\n position: absolute;\n z-index: -1;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n }\n\n .dijitSplitterCoverActive {\n z-index: 3 !important;\n }\n\n /* #6945: stop mouse events */\n .dj_ie .dijitSplitterCover {\n background: white;\n opacity: 0;\n }\n .dj_ie6 .dijitSplitterCover,\n .dj_ie7 .dijitSplitterCover,\n .dj_ie8 .dijitSplitterCover {\n filter: alpha(opacity=0);\n }\n\n .dijitSplitterH {\n height: 7px;\n border-top: 1px;\n border-bottom: 1px;\n cursor: row-resize;\n -webkit-tap-highlight-color: transparent;\n }\n .dijitSplitterV {\n width: 7px;\n border-left: 1px;\n border-right: 1px;\n cursor: col-resize;\n -webkit-tap-highlight-color: transparent;\n }\n .dijitSplitContainer {\n position: relative;\n overflow: hidden;\n display: block;\n }\n\n .dijitSplitPane {\n position: absolute;\n }\n\n .dijitSplitContainerSizerH,\n .dijitSplitContainerSizerV {\n position: absolute;\n font-size: 1px;\n background-color: ThreeDFace;\n border: 1px solid;\n border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;\n margin: 0;\n }\n\n .dijitSplitContainerSizerH .thumb,\n .dijitSplitterV .dijitSplitterThumb {\n overflow: hidden;\n position: absolute;\n top: 49%;\n }\n\n .dijitSplitContainerSizerV .thumb,\n .dijitSplitterH .dijitSplitterThumb {\n position: absolute;\n left: 49%;\n }\n\n .dijitSplitterShadow,\n .dijitSplitContainerVirtualSizerH,\n .dijitSplitContainerVirtualSizerV {\n font-size: 1px;\n background-color: ThreeDShadow;\n opacity: 0.5;\n margin: 0;\n }\n\n .dijitSplitContainerSizerH,\n .dijitSplitContainerVirtualSizerH {\n cursor: col-resize;\n }\n\n .dijitSplitContainerSizerV,\n .dijitSplitContainerVirtualSizerV {\n cursor: row-resize;\n }\n\n .dj_a11y .dijitSplitterH {\n border-top: 1px solid #d3d3d3 !important;\n border-bottom: 1px solid #d3d3d3 !important;\n }\n .dj_a11y .dijitSplitterV {\n border-left: 1px solid #d3d3d3 !important;\n border-right: 1px solid #d3d3d3 !important;\n }\n\n /* ContentPane */\n\n .dijitContentPane {\n display: block;\n overflow: auto; /* if we don't have this (or overflow:hidden), then Widget.resizeTo() doesn't make sense for ContentPane */\n -webkit-overflow-scrolling: touch;\n }\n\n .dijitContentPaneSingleChild {\n /*\n\t * if the ContentPane holds a single layout widget child which is being sized to match the content pane,\n\t * then the ContentPane should never get a scrollbar (but it does due to browser bugs, see #9449\n\t */\n overflow: hidden;\n }\n\n .dijitContentPaneLoading .dijitIconLoading,\n .dijitContentPaneError .dijitIconError {\n margin-right: 9px;\n }\n\n /* TitlePane and Fieldset */\n\n .dijitTitlePane {\n display: block;\n overflow: hidden;\n }\n .dijitFieldset {\n border: 1px solid gray;\n }\n .dijitTitlePaneTitle,\n .dijitFieldsetTitle {\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n .dijitTitlePaneTitleFixedOpen,\n .dijitTitlePaneTitleFixedClosed,\n .dijitFieldsetTitleFixedOpen,\n .dijitFieldsetTitleFixedClosed {\n /* TitlePane or Fieldset that cannot be toggled */\n cursor: default;\n }\n .dijitTitlePaneTitle * {\n vertical-align: middle;\n }\n .dijitTitlePane .dijitArrowNodeInner,\n .dijitFieldset .dijitArrowNodeInner {\n /* normally, hide arrow text in favor of icon */\n display: none;\n }\n .dj_a11y .dijitTitlePane .dijitArrowNodeInner,\n .dj_a11y .dijitFieldset .dijitArrowNodeInner {\n /* ... except in a11y mode, then show text arrow */\n display: inline;\n font-family: monospace; /* because - and + are different widths */\n }\n .dj_a11y .dijitTitlePane .dijitArrowNode,\n .dj_a11y .dijitFieldset .dijitArrowNode {\n /* ... and hide icon (TODO: just point dijitIcon class on the icon, and it hides automatically) */\n display: none;\n }\n .dijitTitlePaneTitleFixedOpen .dijitArrowNode,\n .dijitTitlePaneTitleFixedOpen .dijitArrowNodeInner,\n .dijitTitlePaneTitleFixedClosed .dijitArrowNode,\n .dijitTitlePaneTitleFixedClosed .dijitArrowNodeInner,\n .dijitFieldsetTitleFixedOpen .dijitArrowNode,\n .dijitFieldsetTitleFixedOpen .dijitArrowNodeInner,\n .dijitFieldsetTitleFixedClosed .dijitArrowNode,\n .dijitFieldsetTitleFixedClosed .dijitArrowNodeInner {\n /* don't show the open close icon or text arrow; it makes the user think the pane is closable */\n display: none !important; /* !important to override above a11y rules to show text arrow */\n }\n\n .dj_ie6 .dijitTitlePaneContentOuter,\n .dj_ie6 .dijitTitlePane .dijitTitlePaneTitle {\n /* force hasLayout to ensure borders etc, show up */\n zoom: 1;\n }\n\n /* Color Palette\n * Sizes designed so that table cell positions match icons in underlying image,\n * which appear at 20x20 intervals.\n */\n\n .dijitColorPalette {\n border: 1px solid #999;\n background: #fff;\n position: relative;\n }\n\n .dijitColorPalette .dijitPaletteTable {\n /* Table that holds the palette cells, and overlays image file with color swatches.\n\t * padding/margin to align table with image.\n\t */\n padding: 2px 3px 3px 3px;\n position: relative;\n overflow: hidden;\n outline: 0;\n border-collapse: separate;\n }\n .dj_ie6 .dijitColorPalette .dijitPaletteTable,\n .dj_ie7 .dijitColorPalette .dijitPaletteTable,\n .dj_iequirks .dijitColorPalette .dijitPaletteTable {\n /* using padding above so that focus border isn't cutoff on moz/webkit,\n\t * but using margin on IE because padding doesn't seem to work\n\t */\n padding: 0;\n margin: 2px 3px 3px 3px;\n }\n\n .dijitColorPalette .dijitPaletteCell {\n /*
    in the */\n font-size: 1px;\n vertical-align: middle;\n text-align: center;\n background: none;\n }\n .dijitColorPalette .dijitPaletteImg {\n /* Called dijitPaletteImg for back-compat, this actually wraps the color swatch with a border and padding */\n padding: 1px; /* white area between gray border and color swatch */\n border: 1px solid #999;\n margin: 2px 1px;\n cursor: default;\n font-size: 1px; /* prevent from getting bigger just to hold a character */\n }\n .dj_gecko .dijitColorPalette .dijitPaletteImg {\n padding-bottom: 0; /* workaround rendering glitch on FF, it adds an extra pixel at the bottom */\n }\n .dijitColorPalette .dijitColorPaletteSwatch {\n /* the actual part where the color is */\n width: 14px;\n height: 12px;\n }\n .dijitPaletteTable td {\n padding: 0;\n }\n .dijitColorPalette .dijitPaletteCell:hover .dijitPaletteImg {\n /* hovered color swatch */\n border: 1px solid #000;\n }\n\n .dijitColorPalette .dijitPaletteCell:active .dijitPaletteImg,\n .dijitColorPalette .dijitPaletteTable .dijitPaletteCellSelected .dijitPaletteImg {\n border: 2px solid #000;\n margin: 1px 0; /* reduce margin to compensate for increased border */\n }\n\n .dj_a11y .dijitColorPalette .dijitPaletteTable,\n .dj_a11y .dijitColorPalette .dijitPaletteTable * {\n /* table cells are to catch events, but the swatches are in the PaletteImg behind the table */\n background-color: transparent !important;\n }\n\n /* AccordionContainer */\n\n .dijitAccordionContainer {\n border: 1px solid #b7b7b7;\n border-top: 0 !important;\n }\n .dijitAccordionTitle {\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n .dijitAccordionTitleSelected {\n cursor: default;\n }\n\n /* images off, high-contrast mode styles */\n .dijitAccordionTitle .arrowTextUp,\n .dijitAccordionTitle .arrowTextDown {\n display: none;\n font-size: 0.65em;\n font-weight: normal !important;\n }\n\n .dj_a11y .dijitAccordionTitle .arrowTextUp,\n .dj_a11y .dijitAccordionTitleSelected .arrowTextDown {\n display: inline;\n }\n\n .dj_a11y .dijitAccordionTitleSelected .arrowTextUp {\n display: none;\n }\n\n .dijitAccordionChildWrapper {\n /* this is the node whose height is adjusted */\n overflow: hidden;\n }\n\n /* Calendar */\n\n .dijitCalendarContainer table {\n width: auto; /* in case user has specified a width for the TABLE nodes, see #10553 */\n clear: both; /* clear margin created for left/right month arrows; needed on IE10 for CalendarLite */\n }\n .dijitCalendarContainer th,\n .dijitCalendarContainer td {\n padding: 0;\n vertical-align: middle;\n }\n\n .dijitCalendarMonthContainer {\n text-align: center;\n }\n .dijitCalendarDecrementArrow {\n float: left;\n }\n .dijitCalendarIncrementArrow {\n float: right;\n }\n\n .dijitCalendarYearLabel {\n white-space: nowrap; /* make sure previous, current, and next year appear on same row */\n }\n\n .dijitCalendarNextYear {\n margin: 0 0 0 0.55em;\n }\n\n .dijitCalendarPreviousYear {\n margin: 0 0.55em 0 0;\n }\n\n .dijitCalendarIncrementControl {\n vertical-align: middle;\n }\n\n .dijitCalendarIncrementControl,\n .dijitCalendarDateTemplate,\n .dijitCalendarMonthLabel,\n .dijitCalendarPreviousYear,\n .dijitCalendarNextYear {\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n\n .dijitCalendarDisabledDate {\n color: gray;\n text-decoration: line-through;\n cursor: default;\n }\n\n .dijitSpacer {\n /* don't display it, but make it affect the width */\n position: relative;\n height: 1px;\n overflow: hidden;\n visibility: hidden;\n }\n\n /* Styling for month drop down list */\n\n .dijitCalendarMonthMenu .dijitCalendarMonthLabel {\n text-align: center;\n }\n\n /* Menu */\n\n .dijitMenu {\n border: 1px solid black;\n background-color: white;\n }\n .dijitMenuTable {\n border-collapse: collapse;\n border-width: 0;\n background-color: white;\n }\n\n /* workaround for webkit bug #8427, remove this when it is fixed upstream */\n .dj_webkit .dijitMenuTable td[colspan=\"2\"] {\n border-right: hidden;\n }\n\n .dijitMenuItem {\n text-align: left;\n white-space: nowrap;\n padding: 0.1em 0.2em;\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n\n /*\nNo need to show a focus border since it's obvious from the shading, and there's a .dj_a11y .dijitMenuItemSelected\nrule below that handles the high contrast case when there's no shading.\nHiding the focus border also works around webkit bug https://code.google.com/p/chromium/issues/detail?id=125779.\n*/\n .dijitMenuItem:focus {\n outline: none;\n }\n\n .dijitMenuPassive .dijitMenuItemHover,\n .dijitMenuItemSelected {\n /*\n\t * dijitMenuItemHover refers to actual mouse over\n\t * dijitMenuItemSelected is used after a menu has been \"activated\" by\n\t * clicking it, tabbing into it, or being opened from a parent menu,\n\t * and denotes that the menu item has focus or that focus is on a child\n\t * menu\n\t */\n background-color: black;\n color: white;\n }\n\n .dijitMenuItemIcon,\n .dijitMenuExpand {\n background-repeat: no-repeat;\n }\n\n .dijitMenuItemDisabled * {\n /* for a disabled menu item, just set it to mostly transparent */\n opacity: 0.5;\n cursor: default;\n }\n .dj_ie .dj_a11y .dijitMenuItemDisabled,\n .dj_ie .dj_a11y .dijitMenuItemDisabled *,\n .dj_ie .dijitMenuItemDisabled * {\n color: gray;\n filter: alpha(opacity=35);\n }\n\n .dijitMenuItemLabel {\n vertical-align: middle;\n }\n\n .dj_a11y .dijitMenuItemSelected {\n border: 1px dotted black !important; /* for 2.0 use outline instead, to prevent jitter */\n }\n\n .dj_a11y .dijitMenuItemSelected .dijitMenuItemLabel {\n border-width: 1px;\n border-style: solid;\n }\n .dj_ie8 .dj_a11y .dijitMenuItemLabel {\n position: static;\n }\n\n .dijitMenuExpandA11y {\n display: none;\n }\n .dj_a11y .dijitMenuExpandA11y {\n display: inline;\n }\n\n .dijitMenuSeparator td {\n border: 0;\n padding: 0;\n }\n\n /* separator can be two pixels -- set border of either one to 0 to have only one */\n .dijitMenuSeparatorTop {\n height: 50%;\n margin: 0;\n margin-top: 3px;\n font-size: 1px;\n }\n\n .dijitMenuSeparatorBottom {\n height: 50%;\n margin: 0;\n margin-bottom: 3px;\n font-size: 1px;\n }\n\n /* CheckedMenuItem and RadioMenuItem */\n .dijitMenuItemIconChar {\n display: none; /* don't display except in high contrast mode */\n visibility: hidden; /* for high contrast mode when menuitem is unchecked: leave space for when it is checked */\n }\n .dj_a11y .dijitMenuItemIconChar {\n display: inline; /* display character in high contrast mode, since icon doesn't show */\n }\n .dijitCheckedMenuItemChecked .dijitMenuItemIconChar,\n .dijitRadioMenuItemChecked .dijitMenuItemIconChar {\n visibility: visible; /* menuitem is checked */\n }\n .dj_ie .dj_a11y .dijitMenuBar .dijitMenuItem {\n /* so bottom border of MenuBar appears on IE7 in high-contrast mode */\n margin: 0;\n }\n\n /* StackContainer */\n\n .dijitStackController .dijitToggleButtonChecked * {\n cursor: default; /* because pressing it has no effect */\n }\n\n /***\nTabContainer\n\nMain class hierarchy:\n\n.dijitTabContainer - the whole TabContainer\n .dijitTabController / .dijitTabListContainer-top - wrapper for tab buttons, scroll buttons\n\t .dijitTabListWrapper / .dijitTabContainerTopStrip - outer wrapper for tab buttons (normal width)\n\t\t.nowrapTabStrip / .dijitTabContainerTop-tabs - inner wrapper for tab buttons (50K width)\n .dijitTabPaneWrapper - wrapper for content panes, has all borders except the one between content and tabs\n***/\n\n .dijitTabContainer {\n z-index: 0; /* so z-index settings below have no effect outside of the TabContainer */\n overflow: visible; /* prevent off-by-one-pixel errors from hiding bottom border (opposite tab labels) */\n }\n .dj_ie6 .dijitTabContainer {\n /* workaround IE6 problem when tall content overflows TabContainer, see editor/test_FullScreen.html */\n overflow: hidden;\n }\n .dijitTabContainerNoLayout {\n width: 100%; /* otherwise ScrollingTabController goes to 50K pixels wide */\n }\n\n .dijitTabContainerBottom-tabs,\n .dijitTabContainerTop-tabs,\n .dijitTabContainerLeft-tabs,\n .dijitTabContainerRight-tabs {\n z-index: 1;\n overflow: visible !important; /* so tabs can cover up border adjacent to container */\n }\n\n .dijitTabController {\n z-index: 1;\n }\n .dijitTabContainerBottom-container,\n .dijitTabContainerTop-container,\n .dijitTabContainerLeft-container,\n .dijitTabContainerRight-container {\n z-index: 0;\n overflow: hidden;\n border: 1px solid black;\n }\n .nowrapTabStrip {\n width: 50000px;\n display: block;\n position: relative;\n text-align: left; /* just in case ancestor has non-standard setting */\n z-index: 1;\n }\n .dijitTabListWrapper {\n overflow: hidden;\n z-index: 1;\n }\n\n .dj_a11y .tabStripButton img {\n /* hide the icons (or rather the empty space where they normally appear) because text will appear instead */\n display: none;\n }\n\n .dijitTabContainerTop-tabs {\n border-bottom: 1px solid black;\n }\n .dijitTabContainerTop-container {\n border-top: 0;\n }\n\n .dijitTabContainerLeft-tabs {\n border-right: 1px solid black;\n float: left; /* needed for IE7 RTL mode */\n }\n .dijitTabContainerLeft-container {\n border-left: 0;\n }\n\n .dijitTabContainerBottom-tabs {\n border-top: 1px solid black;\n }\n .dijitTabContainerBottom-container {\n border-bottom: 0;\n }\n\n .dijitTabContainerRight-tabs {\n border-left: 1px solid black;\n float: left; /* needed for IE7 RTL mode */\n }\n .dijitTabContainerRight-container {\n border-right: 0;\n }\n\n div.dijitTabDisabled,\n .dj_ie div.dijitTabDisabled {\n cursor: auto;\n }\n\n .dijitTab {\n position: relative;\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n white-space: nowrap;\n z-index: 3;\n }\n .dijitTab * {\n /* make tab icons and close icon line up w/text */\n vertical-align: middle;\n }\n .dijitTabChecked {\n cursor: default; /* because clicking will have no effect */\n }\n\n .dijitTabContainerTop-tabs .dijitTab {\n top: 1px; /* to overlap border on .dijitTabContainerTop-tabs */\n }\n .dijitTabContainerBottom-tabs .dijitTab {\n top: -1px; /* to overlap border on .dijitTabContainerBottom-tabs */\n }\n .dijitTabContainerLeft-tabs .dijitTab {\n left: 1px; /* to overlap border on .dijitTabContainerLeft-tabs */\n }\n .dijitTabContainerRight-tabs .dijitTab {\n left: -1px; /* to overlap border on .dijitTabContainerRight-tabs */\n }\n\n .dijitTabContainerTop-tabs .dijitTab,\n .dijitTabContainerBottom-tabs .dijitTab {\n /* Inline-block */\n display: inline-block; /* webkit and FF3 */\n }\n\n .tabStripButton {\n z-index: 12;\n }\n\n .dijitTabButtonDisabled .tabStripButton {\n display: none;\n }\n\n .dijitTabCloseButton {\n margin-left: 1em;\n }\n\n .dijitTabCloseText {\n display: none;\n }\n\n .dijitTab .tabLabel {\n /* make sure tabs w/close button and w/out close button are same height, even w/small (<15px) font.\n\t * assumes <=15px height for close button icon.\n\t */\n min-height: 15px;\n display: inline-block;\n }\n .dijitNoIcon {\n /* applied to / node when there is no icon specified */\n display: none;\n }\n .dj_ie6 .dijitTab .dijitNoIcon {\n /* because min-height (on .tabLabel, above) doesn't work on IE6 */\n display: inline;\n height: 15px;\n width: 1px;\n }\n\n /* images off, high-contrast mode styles */\n\n .dj_a11y .dijitTabCloseButton {\n background-image: none !important;\n width: auto !important;\n height: auto !important;\n }\n\n .dj_a11y .dijitTabCloseText {\n display: inline;\n }\n\n .dijitTabPane,\n .dijitStackContainer-child,\n .dijitAccordionContainer-child {\n /* children of TabContainer, StackContainer, and AccordionContainer shouldn't have borders\n\t * b/c a border is already there from the TabContainer/StackContainer/AccordionContainer itself.\n\t */\n border: none !important;\n }\n\n /* InlineEditBox */\n .dijitInlineEditBoxDisplayMode {\n border: 1px solid transparent; /* so keyline (border) on hover can appear without screen jump */\n cursor: text;\n }\n\n .dj_a11y .dijitInlineEditBoxDisplayMode,\n .dj_ie6 .dijitInlineEditBoxDisplayMode {\n /* except that IE6 doesn't support transparent borders, nor does high contrast mode */\n border: none;\n }\n\n .dijitInlineEditBoxDisplayModeHover,\n .dj_a11y .dijitInlineEditBoxDisplayModeHover,\n .dj_ie6 .dijitInlineEditBoxDisplayModeHover {\n /* An InlineEditBox in view mode (click this to edit the text) */\n background-color: #e2ebf2;\n border: solid 1px black;\n }\n\n .dijitInlineEditBoxDisplayModeDisabled {\n cursor: default;\n }\n\n /* Tree */\n .dijitTree {\n overflow: auto; /* for scrollbars when Tree has a height setting, and to prevent wrapping around float elements, see #11491 */\n -webkit-tap-highlight-color: transparent;\n }\n\n .dijitTreeContainer {\n float: left; /* for correct highlighting during horizontal scroll, see #16132 */\n }\n\n .dijitTreeIndent {\n /* amount to indent each tree node (relative to parent node) */\n width: 19px;\n }\n\n .dijitTreeRow,\n .dijitTreeContent {\n white-space: nowrap;\n }\n\n .dj_ie .dijitTreeLabel:focus {\n /* workaround IE9 behavior where down arrowing through TreeNodes doesn't show focus outline */\n outline: 1px dotted black;\n }\n\n .dijitTreeRow img {\n /* make the expando and folder icons line up with the label */\n vertical-align: middle;\n }\n\n .dijitTreeContent {\n cursor: default;\n }\n\n .dijitExpandoText {\n display: none;\n }\n\n .dj_a11y .dijitExpandoText {\n display: inline;\n padding-left: 10px;\n padding-right: 10px;\n font-family: monospace;\n border-style: solid;\n border-width: thin;\n cursor: pointer;\n }\n\n .dijitTreeLabel {\n margin: 0 4px;\n }\n\n /* Dialog */\n\n .dijitDialog {\n position: absolute;\n z-index: 999;\n overflow: hidden; /* override overflow: auto; from ContentPane to make dragging smoother */\n }\n\n .dijitDialogTitleBar {\n cursor: move;\n }\n .dijitDialogFixed .dijitDialogTitleBar {\n cursor: default;\n }\n .dijitDialogCloseIcon {\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n .dijitDialogPaneContent {\n -webkit-overflow-scrolling: touch;\n }\n .dijitDialogUnderlayWrapper {\n position: absolute;\n left: 0;\n top: 0;\n z-index: 998;\n display: none;\n background: transparent !important;\n }\n\n .dijitDialogUnderlay {\n background: #eee;\n opacity: 0.5;\n }\n\n .dj_ie .dijitDialogUnderlay {\n filter: alpha(opacity=50);\n }\n\n /* images off, high-contrast mode styles */\n .dj_a11y .dijitSpinnerButtonContainer,\n .dj_a11y .dijitDialog {\n opacity: 1 !important;\n background-color: white !important;\n }\n\n .dijitDialog .closeText {\n display: none;\n /* for the onhover border in high contrast on IE: */\n position: absolute;\n }\n\n .dj_a11y .dijitDialog .closeText {\n display: inline;\n }\n\n /* Slider */\n\n .dijitSliderMoveable {\n z-index: 99;\n position: absolute !important;\n display: block;\n vertical-align: middle;\n }\n\n .dijitSliderMoveableH {\n right: 0;\n }\n .dijitSliderMoveableV {\n right: 50%;\n }\n\n .dj_a11y div.dijitSliderImageHandle,\n .dijitSliderImageHandle {\n margin: 0;\n padding: 0;\n position: relative !important;\n border: 8px solid gray;\n width: 0;\n height: 0;\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n .dj_iequirks .dj_a11y .dijitSliderImageHandle {\n font-size: 0;\n }\n .dj_ie7 .dijitSliderImageHandle {\n overflow: hidden; /* IE7 workaround to make slider handle VISIBLE in non-a11y mode */\n }\n .dj_ie7 .dj_a11y .dijitSliderImageHandle {\n overflow: visible; /* IE7 workaround to make slider handle VISIBLE in a11y mode */\n }\n .dj_a11y .dijitSliderFocused .dijitSliderImageHandle {\n border: 4px solid #000;\n height: 8px;\n width: 8px;\n }\n\n .dijitSliderImageHandleV {\n top: -8px;\n right: -50%;\n }\n\n .dijitSliderImageHandleH {\n left: 50%;\n top: -5px;\n vertical-align: top;\n }\n\n .dijitSliderBar {\n border-style: solid;\n border-color: black;\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n\n .dijitSliderBarContainerV {\n position: relative;\n height: 100%;\n z-index: 1;\n }\n\n .dijitSliderBarContainerH {\n position: relative;\n z-index: 1;\n }\n\n .dijitSliderBarH {\n height: 4px;\n border-width: 1px 0;\n }\n\n .dijitSliderBarV {\n width: 4px;\n border-width: 0 1px;\n }\n\n .dijitSliderProgressBar {\n background-color: red;\n z-index: 1;\n }\n\n .dijitSliderProgressBarV {\n position: static !important;\n height: 0;\n vertical-align: top;\n text-align: left;\n }\n\n .dijitSliderProgressBarH {\n position: absolute !important;\n width: 0;\n vertical-align: middle;\n overflow: visible;\n }\n\n .dijitSliderRemainingBar {\n overflow: hidden;\n background-color: transparent;\n z-index: 1;\n }\n\n .dijitSliderRemainingBarV {\n height: 100%;\n text-align: left;\n }\n\n .dijitSliderRemainingBarH {\n width: 100% !important;\n }\n\n /* the slider bumper is the space consumed by the slider handle when it hangs over an edge */\n .dijitSliderBumper {\n overflow: hidden;\n z-index: 1;\n }\n\n .dijitSliderBumperV {\n width: 4px;\n height: 8px;\n border-width: 0 1px;\n }\n\n .dijitSliderBumperH {\n width: 8px;\n height: 4px;\n border-width: 1px 0;\n }\n\n .dijitSliderBottomBumper,\n .dijitSliderLeftBumper {\n background-color: red;\n }\n\n .dijitSliderTopBumper,\n .dijitSliderRightBumper {\n background-color: transparent;\n }\n\n .dijitSliderDecoration {\n text-align: center;\n }\n\n .dijitSliderDecorationC,\n .dijitSliderDecorationV {\n position: relative; /* needed for IE+quirks+RTL+vertical (rendering bug) but add everywhere for custom styling consistency but this messes up IE horizontal sliders */\n }\n\n .dijitSliderDecorationH {\n width: 100%;\n }\n\n .dijitSliderDecorationV {\n height: 100%;\n white-space: nowrap;\n }\n\n .dijitSliderButton {\n font-family: monospace;\n margin: 0;\n padding: 0;\n display: block;\n }\n\n .dj_a11y .dijitSliderButtonInner {\n visibility: visible !important;\n }\n\n .dijitSliderButtonContainer {\n text-align: center;\n height: 0; /* ??? */\n }\n .dijitSliderButtonContainer * {\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n\n .dijitSlider .dijitButtonNode {\n padding: 0;\n display: block;\n }\n\n .dijitRuleContainer {\n position: relative;\n overflow: visible;\n }\n\n .dijitRuleContainerV {\n height: 100%;\n line-height: 0;\n float: left;\n text-align: left;\n }\n\n .dj_opera .dijitRuleContainerV {\n line-height: 2%;\n }\n\n .dj_ie .dijitRuleContainerV {\n line-height: normal;\n }\n\n .dj_gecko .dijitRuleContainerV {\n margin: 0 0 1px 0; /* mozilla bug workaround for float:left,height:100% block elements */\n }\n\n .dijitRuleMark {\n position: absolute;\n border: 1px solid black;\n line-height: 0;\n height: 100%;\n }\n\n .dijitRuleMarkH {\n width: 0;\n border-top-width: 0 !important;\n border-bottom-width: 0 !important;\n border-left-width: 0 !important;\n }\n\n .dijitRuleLabelContainer {\n position: absolute;\n }\n\n .dijitRuleLabelContainerH {\n text-align: center;\n display: inline-block;\n }\n\n .dijitRuleLabelH {\n position: relative;\n left: -50%;\n }\n\n .dijitRuleLabelV {\n /* so that long labels don't overflow to multiple rows, or overwrite slider itself */\n text-overflow: ellipsis;\n white-space: nowrap;\n overflow: hidden;\n }\n\n .dijitRuleMarkV {\n height: 0;\n border-right-width: 0 !important;\n border-bottom-width: 0 !important;\n border-left-width: 0 !important;\n width: 100%;\n left: 0;\n }\n\n .dj_ie .dijitRuleLabelContainerV {\n margin-top: -0.55em;\n }\n\n .dj_a11y .dijitSliderReadOnly,\n .dj_a11y .dijitSliderDisabled {\n opacity: 0.6;\n }\n .dj_ie .dj_a11y .dijitSliderReadOnly .dijitSliderBar,\n .dj_ie .dj_a11y .dijitSliderDisabled .dijitSliderBar {\n filter: alpha(opacity=40);\n }\n\n /* + and - Slider buttons: override theme settings to display icons */\n .dj_a11y .dijitSlider .dijitSliderButtonContainer div {\n font-family: monospace; /* otherwise hyphen is larger and more vertically centered */\n font-size: 1em;\n line-height: 1em;\n height: auto;\n width: auto;\n margin: 0 4px;\n }\n\n /* Icon-only buttons (often in toolbars) still display the text in high-contrast mode */\n .dj_a11y .dijitButtonContents .dijitButtonText,\n .dj_a11y .dijitTab .tabLabel {\n display: inline !important;\n }\n .dj_a11y .dijitSelect .dijitButtonText {\n display: inline-block !important;\n }\n\n /* TextArea, SimpleTextArea */\n .dijitTextArea {\n width: 100%;\n overflow-y: auto; /* w/out this IE's SimpleTextArea goes to overflow: scroll */\n }\n .dijitTextArea[cols] {\n width: auto; /* SimpleTextArea cols */\n }\n .dj_ie .dijitTextAreaCols {\n width: auto;\n }\n\n .dijitExpandingTextArea {\n /* for auto exanding textarea (called Textarea currently, rename for 2.0) don't want to display the grip to resize */\n resize: none;\n }\n\n /* Toolbar\n * Note that other toolbar rules (for objects in toolbars) are scattered throughout this file.\n */\n\n .dijitToolbarSeparator {\n height: 18px;\n width: 5px;\n padding: 0 1px;\n margin: 0;\n }\n\n /* Editor */\n .dijitIEFixedToolbar {\n position: absolute;\n /* top:0; */\n top: expression(eval((document.documentElement||document.body) .scrollTop));\n }\n\n .dijitEditor {\n display: block; /* prevents glitch on FF with InlineEditBox, see #8404 */\n }\n\n .dijitEditorDisabled,\n .dijitEditorReadOnly {\n color: gray;\n }\n\n /* TimePicker */\n\n .dijitTimePicker {\n background-color: white;\n }\n .dijitTimePickerItem {\n cursor: pointer;\n -webkit-tap-highlight-color: transparent;\n }\n .dijitTimePickerItemHover {\n background-color: gray;\n color: white;\n }\n .dijitTimePickerItemSelected {\n font-weight: bold;\n color: #333;\n background-color: #b7cdee;\n }\n .dijitTimePickerItemDisabled {\n color: gray;\n text-decoration: line-through;\n }\n\n .dijitTimePickerItemInner {\n text-align: center;\n border: 0;\n padding: 2px 8px 2px 8px;\n }\n\n .dijitTimePickerTick,\n .dijitTimePickerMarker {\n border-bottom: 1px solid gray;\n }\n\n .dijitTimePicker .dijitDownArrowButton {\n border-top: none !important;\n }\n\n .dijitTimePickerTick {\n color: #ccc;\n }\n\n .dijitTimePickerMarker {\n color: black;\n background-color: #ccc;\n }\n\n .dj_a11y .dijitTimePickerItemSelected .dijitTimePickerItemInner {\n border: solid 4px black;\n }\n .dj_a11y .dijitTimePickerItemHover .dijitTimePickerItemInner {\n border: dashed 4px black;\n }\n\n .dijitToggleButtonIconChar {\n /* character (instead of icon) to show that ToggleButton is checked */\n display: none !important;\n }\n .dj_a11y .dijitToggleButton .dijitToggleButtonIconChar {\n display: inline !important;\n visibility: hidden;\n }\n .dj_ie6 .dijitToggleButtonIconChar,\n .dj_ie6 .tabStripButton .dijitButtonText {\n font-family: \"Arial Unicode MS\"; /* otherwise the a11y character (checkmark, arrow, etc.) appears as a box */\n }\n .dj_a11y .dijitToggleButtonChecked .dijitToggleButtonIconChar {\n display: inline !important; /* In high contrast mode, display the check symbol */\n visibility: visible !important;\n }\n\n .dijitArrowButtonChar {\n display: none !important;\n }\n .dj_a11y .dijitArrowButtonChar {\n display: inline !important;\n }\n\n .dj_a11y .dijitDropDownButton .dijitArrowButtonInner,\n .dj_a11y .dijitComboButton .dijitArrowButtonInner {\n display: none !important;\n }\n\n /* Select */\n .dj_a11y .dijitSelect {\n border-collapse: separate !important;\n border-width: 1px;\n border-style: solid;\n }\n .dj_ie .dijitSelect {\n vertical-align: middle; /* Set this back for what we hack in dijit inline */\n }\n .dj_ie6 .dijitSelect .dijitValidationContainer,\n .dj_ie8 .dijitSelect .dijitButtonText {\n vertical-align: top;\n }\n .dj_ie6 .dijitTextBox .dijitInputContainer,\n .dj_iequirks .dijitTextBox .dijitInputContainer,\n .dj_ie6 .dijitTextBox .dijitArrowButtonInner,\n .dj_ie6 .dijitSpinner .dijitSpinnerButtonInner,\n .dijitSelect .dijitSelectLabel {\n vertical-align: baseline;\n }\n\n .dijitNumberTextBox {\n text-align: left;\n direction: ltr;\n }\n\n .dijitNumberTextBox .dijitInputInner {\n text-align: inherit; /* input */\n }\n\n .dijitNumberTextBox input.dijitInputInner,\n .dijitCurrencyTextBox input.dijitInputInner,\n .dijitSpinner input.dijitInputInner {\n text-align: right;\n }\n\n .dj_ie8 .dijitNumberTextBox input.dijitInputInner,\n .dj_ie9 .dijitNumberTextBox input.dijitInputInner,\n .dj_ie8 .dijitCurrencyTextBox input.dijitInputInner,\n .dj_ie9 .dijitCurrencyTextBox input.dijitInputInner,\n .dj_ie8 .dijitSpinner input.dijitInputInner,\n .dj_ie9 .dijitSpinner input.dijitInputInner {\n /* workaround bug where caret invisible in empty textboxes */\n padding-right: 1px !important;\n }\n\n .dijitToolbar .dijitSelect {\n margin: 0;\n }\n .dj_webkit .dijitToolbar .dijitSelect {\n padding-left: 0.3em;\n }\n .dijitSelect .dijitButtonContents {\n padding: 0;\n white-space: nowrap;\n text-align: left;\n border-style: none solid none none;\n border-width: 1px;\n }\n .dijitSelectFixedWidth .dijitButtonContents {\n width: 100%;\n }\n\n .dijitSelectMenu .dijitMenuItemIcon {\n /* avoid blank area in left side of menu (since we have no icons) */\n display: none;\n }\n .dj_ie6 .dijitSelectMenu .dijitMenuItemLabel,\n .dj_ie7 .dijitSelectMenu .dijitMenuItemLabel {\n /* Set back to static due to bug in ie6/ie7 - See Bug #9651 */\n position: static;\n }\n\n /* Fix the baseline of our label (for multi-size font elements) */\n .dijitSelectLabel * {\n vertical-align: baseline;\n }\n\n /* Styling for the currently-selected option (rich text can mess this up) */\n .dijitSelectSelectedOption * {\n font-weight: bold;\n }\n\n /* Fix the styling of the dropdown menu to be more combobox-like */\n .dijitSelectMenu {\n border-width: 1px;\n }\n\n /* Used in cases, such as FullScreen plugin, when we need to force stuff to static positioning. */\n .dijitForceStatic {\n position: static !important;\n }\n\n /**** Disabled cursor *****/\n .dijitReadOnly *,\n .dijitDisabled *,\n .dijitReadOnly,\n .dijitDisabled {\n /* a region the user would be able to click on, but it's disabled */\n cursor: default;\n }\n\n /* Drag and Drop */\n .dojoDndItem {\n padding: 2px; /* will be replaced by border during drag over (dojoDndItemBefore, dojoDndItemAfter) */\n\n /* Prevent magnifying-glass text selection icon to appear on mobile webkit as it causes a touchout event */\n -webkit-touch-callout: none;\n -webkit-user-select: none; /* Disable selection/Copy of UIWebView */\n }\n .dojoDndHorizontal .dojoDndItem {\n /* make contents of horizontal container be side by side, rather than vertical */\n display: inline-block;\n }\n\n .dojoDndItemBefore,\n .dojoDndItemAfter {\n border: 0px solid #369;\n }\n .dojoDndItemBefore {\n border-width: 2px 0 0 0;\n padding: 0 2px 2px 2px;\n }\n .dojoDndItemAfter {\n border-width: 0 0 2px 0;\n padding: 2px 2px 0 2px;\n }\n .dojoDndHorizontal .dojoDndItemBefore {\n border-width: 0 0 0 2px;\n padding: 2px 2px 2px 0;\n }\n .dojoDndHorizontal .dojoDndItemAfter {\n border-width: 0 2px 0 0;\n padding: 2px 0 2px 2px;\n }\n\n .dojoDndItemOver {\n cursor: pointer;\n }\n .dj_gecko .dijitArrowButtonInner input,\n .dj_gecko input.dijitArrowButtonInner {\n -moz-user-focus: ignore;\n }\n .dijitFocused .dijitMenuItemShortcutKey {\n text-decoration: underline;\n }\n\n /* Dijit custom styling */\n .dijitBorderContainer {\n height: 350px;\n }\n .dijitTooltipContainer {\n background: #fff;\n border: 1px solid #ccc;\n border-radius: 6px;\n }\n .dijitContentPane {\n box-sizing: content-box;\n overflow: auto !important;\n /* Widgets like the data grid pass their scroll\n offset to the parent if there is not enough room to display a scroll bar\n in the widget itself, so do not hide the overflow. */\n }\n\n /* Global Bootstrap changes */\n\n /* Client defaults and helpers */\n .mx-dataview-content,\n .mx-tabcontainer-content,\n .mx-grid-content {\n -webkit-overflow-scrolling: touch;\n }\n html,\n body,\n #content,\n #root {\n height: 100%;\n }\n #content > .mx-page,\n #root > .mx-page {\n width: 100%;\n min-height: 100%;\n }\n\n .mx-left-aligned {\n text-align: left;\n }\n .mx-right-aligned {\n text-align: right;\n }\n .mx-center-aligned {\n text-align: center;\n }\n\n .mx-table {\n width: 100%;\n }\n .mx-table th,\n .mx-table td {\n padding: 8px;\n vertical-align: top;\n }\n .mx-table th.nopadding,\n .mx-table td.nopadding {\n padding: 0;\n }\n\n .mx-offscreen {\n /* When position relative is not set IE doesn't properly render when this class is removed\n * with the effect that elements are not displayed or are not clickable.\n */\n position: relative;\n height: 0;\n overflow: hidden;\n }\n\n .mx-ie-event-shield {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: -1;\n }\n\n .mx-swipe-navigation-progress {\n position: absolute;\n height: 54px;\n width: 54px;\n top: calc(50% - 27px);\n left: calc(50% - 27px);\n background: url(resources/swipe-progress.gif);\n }\n\n /* Bacause we use checkboxes without labels, align them with other widgets. */\n input[type=\"checkbox\"] {\n margin: 9px 0;\n }\n\n .mx-checkbox input[type=\"checkbox\"] {\n margin-left: 0;\n margin-right: 8px;\n position: static;\n }\n\n .form-vertical .form-group.mx-checkbox input[type=\"checkbox\"] {\n display: block;\n }\n\n .form-vertical .form-group.mx-checkbox.label-after input[type=\"checkbox\"] {\n display: inline-block;\n }\n\n .form-horizontal .form-group.no-columns {\n padding-left: 15px;\n padding-right: 15px;\n }\n\n .mx-radiobuttons.inline .radio {\n display: inline-block;\n margin-right: 20px;\n }\n\n .mx-radiobuttons .radio input[type=\"radio\"] {\n /* Reset bootstrap rules */\n position: static;\n margin-right: 8px;\n margin-left: 0;\n }\n\n .mx-radiobuttons .radio label {\n /* Reset bootstrap rules */\n padding-left: 0;\n }\n\n .alert {\n margin-top: 8px;\n margin-bottom: 10px;\n white-space: pre-line;\n }\n\n //.mx-compound-control {\n // display: flex;\n //}\n\n //.mx-compound-control button {\n // margin-left: 5px;\n //}\n //\n //[dir=\"rtl\"] .mx-compound-control button {\n // margin-left: 0;\n // margin-right: 5px;\n //}\n\n .mx-tooltip {\n margin: 10px;\n }\n .mx-tooltip-content {\n width: 400px;\n overflow-y: auto;\n }\n .mx-tooltip-prepare {\n height: 24px;\n padding: 8px;\n background: transparent url(resources/ttp.gif) no-repeat scroll center center;\n }\n .mx-tooltip-content .table th,\n .mx-tooltip-content .table td {\n padding: 2px 8px;\n }\n\n .mx-tabcontainer-pane {\n height: 100%;\n }\n .mx-tabcontainer-content.loading {\n min-height: 48px;\n background: url(resources/tabcontainer-loading.gif) no-repeat center center;\n background-size: 32px 32px;\n }\n .mx-tabcontainer-tabs {\n margin-bottom: 8px;\n }\n .mx-tabcontainer-tabs li {\n position: relative;\n }\n .mx-tabcontainer-indicator {\n position: absolute;\n background: #f2dede;\n border-radius: 8px;\n color: #b94a48;\n top: 0px;\n right: -5px;\n width: 16px;\n height: 16px;\n line-height: 16px;\n text-align: center;\n vertical-align: middle;\n font-size: 10px;\n font-weight: 600;\n z-index: 1; /* indicator should not hide behind other tab */\n }\n\n /* base structure */\n .mx-grid {\n padding: 8px;\n overflow: hidden; /* to prevent any margin from escaping grid and foobaring our size calculations */\n }\n .mx-grid-controlbar,\n .mx-grid-searchbar {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n }\n .mx-grid-controlbar .mx-button,\n .mx-grid-search-controls .mx-button {\n margin-bottom: 8px;\n }\n\n .mx-grid-search-controls .mx-button + .mx-button,\n .mx-grid-controlbar .mx-button + .mx-button {\n margin-left: 0.3em;\n }\n\n [dir=\"rtl\"] .mx-grid-search-controls .mx-button + .mx-button,\n [dir=\"rtl\"] .mx-grid-controlbar .mx-button + .mx-button {\n margin-left: 0;\n margin-right: 0.3em;\n }\n\n .mx-grid-pagingbar,\n .mx-grid-search-controls {\n display: flex;\n white-space: nowrap;\n align-items: baseline;\n margin-left: auto;\n }\n\n .mx-grid-toolbar,\n .mx-grid-search-inputs {\n margin-right: 5px;\n flex: 1;\n }\n\n [dir=\"rtl\"] .mx-grid-toolbar,\n [dir=\"rtl\"] .mx-grid-search-inputs {\n margin-left: 5px;\n margin-right: 0px;\n }\n [dir=\"rtl\"] .mx-grid-pagingbar,\n [dir=\"rtl\"] .mx-grid-search-controls {\n margin-left: 0px;\n margin-right: auto;\n }\n\n .mx-grid-paging-status {\n padding: 0 8px 5px;\n }\n\n /* search fields */\n .mx-grid-search-item {\n display: inline-block;\n vertical-align: top;\n margin-bottom: 8px;\n }\n .mx-grid-search-label {\n width: 110px;\n padding: 0 5px;\n text-align: right;\n display: inline-block;\n vertical-align: top;\n overflow: hidden;\n }\n [dir=\"rtl\"] .mx-grid-search-label {\n text-align: left;\n }\n .mx-grid-search-input {\n width: 150px;\n padding: 0 5px;\n display: inline-block;\n vertical-align: top;\n }\n .mx-grid-search-message {\n flex-basis: 100%;\n }\n\n /* widget combinations */\n .mx-dataview .mx-grid {\n border: 1px solid #ddd;\n border-radius: 3px;\n }\n\n .mx-calendar {\n z-index: 1000;\n }\n\n .mx-calendar-month-dropdown-options {\n position: absolute;\n }\n\n .mx-calendar,\n .mx-calendar-month-dropdown {\n user-select: none;\n }\n\n .mx-calendar-month-current {\n display: inline-block;\n }\n\n .mx-calendar-month-spacer {\n position: relative;\n height: 0px;\n overflow: hidden;\n visibility: hidden;\n }\n\n .mx-calendar,\n .mx-calendar-month-dropdown-options {\n border: 1px solid lightgrey;\n background-color: white;\n }\n\n .mx-datagrid tr {\n cursor: pointer;\n }\n\n .mx-datagrid tr.mx-datagrid-row-empty {\n cursor: default;\n }\n\n .mx-datagrid table {\n width: 100%;\n max-width: 100%;\n table-layout: fixed;\n margin-bottom: 0;\n }\n\n .mx-datagrid th,\n .mx-datagrid td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: bottom;\n border: 1px solid #ddd;\n }\n\n /* head */\n .mx-datagrid th {\n position: relative; /* Required for the positioning of the column resizers */\n border-bottom-width: 2px;\n }\n .mx-datagrid-head-caption {\n overflow: hidden;\n white-space: nowrap;\n }\n .mx-datagrid-sort-icon {\n float: right;\n padding-left: 5px;\n }\n [dir=\"rtl\"] .mx-datagrid-sort-icon {\n float: left;\n padding: 0 5px 0 0;\n }\n .mx-datagrid-column-resizer {\n position: absolute;\n top: 0;\n left: -6px;\n width: 10px;\n height: 100%;\n cursor: col-resize;\n }\n [dir=\"rtl\"] .mx-datagrid-column-resizer {\n left: auto;\n right: -6px;\n }\n\n /* body */\n .mx-datagrid tbody tr:first-child td {\n border-top: none;\n }\n //.mx-datagrid tbody tr:nth-child(2n+1) td {\n // background-color: #f9f9f9;\n //}\n .mx-datagrid tbody .selected td {\n background-color: #eee;\n }\n .mx-datagrid-data-wrapper {\n overflow: hidden;\n white-space: nowrap;\n }\n .mx-datagrid tbody img {\n max-width: 16px;\n max-height: 16px;\n }\n .mx-datagrid input,\n .mx-datagrid select,\n .mx-datagrid textarea {\n cursor: auto;\n }\n\n /* foot */\n .mx-datagrid tfoot th,\n .mx-datagrid tfoot td {\n padding: 3px 8px;\n }\n .mx-datagrid tfoot th {\n border-top: 1px solid #ddd;\n }\n .mx-datagrid.mx-content-loading .mx-content-loader {\n display: inline-block;\n width: 90%;\n animation: placeholderGradient 1s linear infinite;\n border-radius: 4px;\n background: #f5f5f5;\n background: repeating-linear-gradient(to right, #f5f5f5 0%, #f5f5f5 5%, #f9f9f9 50%, #f5f5f5 95%, #f5f5f5 100%);\n background-size: 200px 100px;\n animation-fill-mode: both;\n }\n @keyframes placeholderGradient {\n 0% {\n background-position: 100px 0;\n }\n 100% {\n background-position: -100px 0;\n }\n }\n\n .mx-datagrid-table-resizing th,\n .mx-datagrid-table-resizing td {\n cursor: col-resize !important;\n }\n\n .mx-templategrid-content-wrapper {\n display: table;\n width: 100%;\n border-collapse: collapse;\n box-sizing: border-box;\n }\n .mx-templategrid-row {\n display: table-row;\n }\n .mx-templategrid-item {\n padding: 5px;\n display: table-cell;\n border: 1px solid #ddd;\n cursor: pointer;\n box-sizing: border-box;\n }\n .mx-templategrid-empty {\n display: table-cell;\n }\n .mx-templategrid-item.selected {\n background-color: #f5f5f5;\n }\n .mx-templategrid-item .mx-table th,\n .mx-templategrid-item .mx-table td {\n padding: 2px 8px;\n }\n\n .mx-navbar-item img,\n .mx-navbar-subitem img {\n height: 16px;\n }\n\n .mx-navigationtree .navbar-inner {\n padding-left: 0;\n padding-right: 0;\n }\n .mx-navigationtree ul {\n list-style: none;\n }\n //.mx-navigationtree ul li {\n // border-bottom: 1px solid #dfe6ea;\n //}\n //.mx-navigationtree li:last-child {\n // border-style: none;\n //}\n .mx-navigationtree a {\n display: block;\n padding: 5px 10px;\n color: #777;\n text-shadow: 0 1px 0 #fff;\n text-decoration: none;\n }\n .mx-navigationtree a.active {\n color: #fff;\n text-shadow: none;\n background: #3498db;\n border-radius: 3px;\n }\n .mx-navigationtree .mx-navigationtree-collapsed ul {\n display: none;\n }\n .mx-navigationtree ul {\n margin: 0;\n padding: 0;\n }\n //.mx-navigationtree ul li {\n // padding: 5px 0;\n //}\n .mx-navigationtree ul li ul {\n padding: 0;\n margin-left: 10px;\n }\n .mx-navigationtree ul li ul li {\n margin-left: 8px;\n padding: 5px 0;\n }\n [dir=\"rtl\"] .mx-navigationtree ul li ul li {\n margin-left: auto;\n margin-right: 8px;\n }\n .mx-navigationtree ul li ul li ul li {\n font-size: 10px;\n padding-top: 3px;\n padding-bottom: 3px;\n }\n .mx-navigationtree ul li ul li ul li img {\n vertical-align: top;\n }\n\n .mx-link img,\n .mx-button img {\n height: 16px;\n }\n .mx-link {\n padding: 6px 12px;\n display: inline-block;\n cursor: pointer;\n }\n\n .mx-groupbox {\n margin-bottom: 10px;\n }\n .mx-groupbox-header {\n margin: 0;\n padding: 10px 15px;\n color: #eee;\n background: #333;\n font-size: inherit;\n line-height: inherit;\n border-radius: 4px 4px 0 0;\n }\n .mx-groupbox-collapsible > .mx-groupbox-header {\n cursor: pointer;\n }\n .mx-groupbox.collapsed > .mx-groupbox-header {\n border-radius: 4px;\n }\n .mx-groupbox-body {\n padding: 8px;\n border: 1px solid #ddd;\n border-radius: 4px;\n }\n .mx-groupbox.collapsed > .mx-groupbox-body {\n display: none;\n }\n .mx-groupbox-header + .mx-groupbox-body {\n border-top: none;\n border-radius: 0 0 4px 4px;\n }\n .mx-groupbox-collapse-icon {\n float: right;\n }\n [dir=\"rtl\"] .mx-groupbox-collapse-icon {\n float: left;\n }\n\n .mx-dataview {\n position: relative;\n }\n .mx-dataview-controls {\n padding: 19px 20px 12px;\n background-color: #f5f5f5;\n border-top: 1px solid #eee;\n }\n\n .mx-dataview-controls .mx-button {\n margin-bottom: 8px;\n }\n\n .mx-dataview-controls .mx-button + .mx-button {\n margin-left: 0.3em;\n }\n\n .mx-dataview-message {\n background: #fff;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n .mx-dataview-message > div {\n display: table;\n width: 100%;\n height: 100%;\n }\n .mx-dataview-message > div > p {\n display: table-cell;\n text-align: center;\n vertical-align: middle;\n }\n\n /* Top-level data view in window is a special case, handle it as such. */\n .mx-window-view .mx-window-body {\n padding: 0;\n }\n .mx-window-view .mx-window-body > .mx-dataview > .mx-dataview-content,\n .mx-window-view .mx-window-body > .mx-placeholder > .mx-dataview > .mx-dataview-content {\n padding: 15px;\n }\n .mx-window-view .mx-window-body > .mx-dataview > .mx-dataview-controls,\n .mx-window-view .mx-window-body > .mx-placeholder > .mx-dataview > .mx-dataview-controls {\n border-radius: 0px 0px 6px 6px;\n }\n\n .mx-dialog {\n position: fixed;\n left: auto;\n right: auto;\n padding: 0;\n width: 500px;\n /* If the margin is set to auto, IE9 reports the calculated value of the\n * margin as the actual value. Other browsers will just report 0. Eliminate\n * this difference by setting margin to 0 for every browser. */\n margin: 0;\n }\n .mx-dialog-header {\n cursor: move;\n }\n .mx-dialog-body {\n overflow: auto;\n }\n\n .mx-window {\n position: fixed;\n left: auto;\n right: auto;\n padding: 0;\n width: 600px;\n /* If the margin is set to auto, IE9 reports the calculated value of the\n * margin as the actual value. Other browsers will just report 0. Eliminate\n * this difference by setting margin to 0 for every browser. */\n margin: 0;\n }\n .mx-window-content {\n height: 100%;\n overflow: hidden;\n }\n .mx-window-active .mx-window-header {\n background-color: #f5f5f5;\n border-radius: 6px 6px 0 0;\n }\n .mx-window-header {\n cursor: move;\n }\n .mx-window-body {\n overflow: auto;\n }\n\n .mx-dropdown-list * {\n cursor: pointer;\n }\n .mx-dropdown-list img {\n width: 35px;\n vertical-align: middle;\n margin-right: 10px;\n }\n [dir=\"rtl\"] .mx-dropdown-list img {\n margin-left: 10px;\n margin-right: auto;\n }\n\n .mx-dropdown-list {\n padding: 0;\n list-style: none;\n }\n .mx-dropdown-list > li {\n padding: 5px 10px 10px;\n border: 1px #ddd;\n border-style: solid solid none;\n background-color: #fff;\n }\n .mx-dropdown-list > li:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n }\n .mx-dropdown-list > li:last-child {\n border-bottom-style: solid;\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n }\n .mx-dropdown-list-striped > li:nth-child(2n + 1) {\n background: #f9f9f9;\n }\n .mx-dropdown-list > li:hover {\n background: #f5f5f5;\n }\n\n .mx-header {\n position: relative;\n padding: 9px;\n background: #333;\n text-align: center;\n }\n .mx-header-center {\n display: inline-block;\n color: #eee;\n line-height: 30px; /* height of buttons */\n }\n body[dir=\"ltr\"] .mx-header-left,\n body[dir=\"rtl\"] .mx-header-right {\n position: absolute;\n top: 9px;\n left: 9px;\n }\n body[dir=\"ltr\"] .mx-header-right,\n body[dir=\"rtl\"] .mx-header-left {\n position: absolute;\n top: 9px;\n right: 9px;\n }\n\n .mx-title {\n margin-bottom: 0px;\n margin-top: 0px;\n }\n\n .mx-listview {\n padding: 8px;\n }\n .mx-listview > ul {\n padding: 0px;\n list-style: none;\n }\n // .mx-listview > ul > li {\n // padding: 5px 10px 10px;\n // border: 1px #ddd;\n // border-style: solid solid none;\n // background-color: #fff;\n // outline: none;\n // }\n // .mx-listview > ul > li:first-child {\n // border-top-left-radius: 4px;\n // border-top-right-radius: 4px;\n // }\n // .mx-listview > ul > li:last-child {\n // border-bottom-style: solid;\n // border-bottom-left-radius: 4px;\n // border-bottom-right-radius: 4px;\n // }\n //.mx-listview li:nth-child(2n+1) {\n // background: #f9f9f9;\n //}\n //.mx-listview li:nth-child(2n+1):hover {\n // background: #f5f5f5;\n //}\n .mx-listview > ul > li.selected {\n // background: #eee;\n }\n .mx-listview-clickable > ul > li {\n cursor: pointer;\n }\n .mx-listview-empty {\n color: #999;\n text-align: center;\n }\n .mx-listview .mx-listview-loading {\n padding: 10px;\n line-height: 0;\n text-align: center;\n }\n .mx-listview-searchbar {\n display: flex;\n margin-bottom: 10px;\n }\n .mx-listview-searchbar > input {\n width: 100%;\n }\n .mx-listview-searchbar > button {\n margin-left: 5px;\n }\n [dir=\"rtl\"] .mx-listview-searchbar > button {\n margin-left: 0;\n margin-right: 5px;\n }\n .mx-listview-selection {\n display: table-cell;\n vertical-align: middle;\n padding: 0 15px 0 5px;\n }\n [dir=\"rtl\"] .mx-listview-selection {\n padding: 0 5px 0 15px;\n }\n .mx-listview-selectable .mx-listview-content {\n display: table-cell;\n vertical-align: middle;\n width: 100%;\n }\n .mx-listview .selected {\n background: #def;\n }\n .mx-listview .mx-table th,\n .mx-listview .mx-table td {\n padding: 2px;\n }\n\n .mx-login .form-control {\n margin-top: 10px;\n }\n\n .mx-menubar {\n padding: 8px;\n }\n .mx-menubar-icon {\n height: 16px;\n }\n .mx-menubar-more-icon {\n display: inline-block;\n width: 16px;\n height: 16px;\n background: url(resources/menubar-more-icon.png) no-repeat center center;\n background-size: 16px 16px;\n vertical-align: middle;\n }\n\n .mx-navigationlist {\n padding: 8px;\n }\n .mx-navigationlist li:hover,\n .mx-navigationlist li:focus,\n .mx-navigationlist li.active {\n color: #fff;\n background-color: #3498db;\n }\n .mx-navigationlist * {\n cursor: pointer;\n }\n .mx-navigationlist .table th,\n .mx-navigationlist .table td {\n padding: 2px;\n }\n\n .mx-progress {\n position: fixed;\n top: 30%;\n left: 0;\n right: 0;\n margin: auto;\n width: 250px;\n max-width: 90%;\n background: #333;\n opacity: 0.8;\n z-index: 5000;\n border-radius: 4px;\n padding: 20px 15px;\n transition: opacity 0.4s ease-in-out;\n }\n .mx-progress-hidden {\n opacity: 0;\n }\n .mx-progress-message {\n color: #fff;\n text-align: center;\n margin-bottom: 15px;\n }\n .mx-progress-empty .mx-progress-message {\n display: none;\n }\n .mx-progress-indicator {\n width: 70px;\n height: 10px;\n margin: auto;\n background: url(resources/progress-indicator.gif);\n }\n\n .mx-reload-notification {\n position: fixed;\n z-index: 1001;\n top: 0;\n width: 100%;\n padding: 1rem;\n\n border: 1px solid hsl(200, 96%, 41%);\n background-color: hsl(200, 96%, 44%);\n\n box-shadow: 0 5px 20px rgba(1, 37, 55, 0.16);\n color: white;\n\n text-align: center;\n font-size: 14px;\n }\n\n .mx-resizer-n,\n .mx-resizer-s {\n position: absolute;\n left: 0;\n width: 100%;\n height: 10px;\n }\n .mx-resizer-n {\n top: -5px;\n cursor: n-resize;\n }\n .mx-resizer-s {\n bottom: -5px;\n cursor: s-resize;\n }\n\n .mx-resizer-e,\n .mx-resizer-w {\n position: absolute;\n top: 0;\n width: 10px;\n height: 100%;\n }\n .mx-resizer-e {\n right: -5px;\n cursor: e-resize;\n }\n .mx-resizer-w {\n left: -5px;\n cursor: w-resize;\n }\n\n .mx-resizer-nw,\n .mx-resizer-ne,\n .mx-resizer-sw,\n .mx-resizer-se {\n position: absolute;\n width: 20px;\n height: 20px;\n }\n\n .mx-resizer-nw,\n .mx-resizer-ne {\n top: -5px;\n }\n .mx-resizer-sw,\n .mx-resizer-se {\n bottom: -5px;\n }\n .mx-resizer-nw,\n .mx-resizer-sw {\n left: -5px;\n }\n .mx-resizer-ne,\n .mx-resizer-se {\n right: -5px;\n }\n\n .mx-resizer-nw {\n cursor: nw-resize;\n }\n .mx-resizer-ne {\n cursor: ne-resize;\n }\n .mx-resizer-sw {\n cursor: sw-resize;\n }\n .mx-resizer-se {\n cursor: se-resize;\n }\n\n .mx-text {\n white-space: pre-line;\n }\n\n .mx-textarea textarea {\n resize: none;\n overflow-y: hidden;\n }\n .mx-textarea .mx-textarea-noresize {\n height: auto;\n resize: vertical;\n overflow-y: auto;\n }\n .mx-textarea .mx-textarea-counter {\n font-size: smaller;\n }\n .mx-textarea .form-control-static {\n white-space: pre-line;\n }\n\n .mx-underlay {\n position: fixed;\n top: 0;\n width: 100%;\n height: 100%;\n z-index: 1000;\n opacity: 0.5;\n background-color: #333;\n }\n\n .mx-imagezoom {\n position: absolute;\n display: table;\n width: 100%;\n height: 100%;\n background-color: #999;\n }\n .mx-imagezoom-wrapper {\n display: table-cell;\n text-align: center;\n vertical-align: middle;\n }\n .mx-imagezoom-image {\n max-width: none;\n }\n\n .mx-dropdown li {\n padding: 3px 20px;\n cursor: pointer;\n }\n .mx-dropdown label {\n padding: 0;\n color: #333;\n white-space: nowrap;\n cursor: pointer;\n }\n .mx-dropdown input {\n margin: 0;\n vertical-align: middle;\n cursor: pointer;\n }\n .mx-dropdown .selected {\n background: #f8f8f8;\n }\n //.mx-selectbox {\n // text-align: left;\n //}\n //.mx-selectbox-caret-wrapper {\n // float: right;\n // height: 100%;\n //}\n\n .mx-demouserswitcher {\n position: fixed;\n top: 0;\n right: 0;\n width: 360px;\n height: 100%;\n z-index: 20000;\n box-shadow: -1px 0 5px rgba(28, 59, 86, 0.2);\n }\n .mx-demouserswitcher-content {\n padding: 80px 40px 20px;\n height: 100%;\n color: #387ea2;\n font-size: 14px;\n overflow: auto;\n background: url(resources/switcher.png) top right no-repeat #1b3149;\n /* background-attachement local is not supported on IE8\n * when this is part of background the complete background is ignored */\n background-attachment: local;\n }\n .mx-demouserswitcher ul {\n padding: 0;\n margin-top: 25px;\n list-style-type: none;\n border-top: 1px solid #496076;\n }\n .mx-demouserswitcher a {\n display: block;\n padding: 10px 0;\n color: #387ea2;\n border-bottom: 1px solid #496076;\n }\n .mx-demouserswitcher h2 {\n margin: 20px 0 5px;\n color: #5bc4fe;\n font-size: 28px;\n }\n .mx-demouserswitcher h3 {\n margin: 0 0 2px;\n color: #5bc4fe;\n font-size: 18px;\n font-weight: normal;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n }\n .mx-demouserswitcher .active h3 {\n color: #11efdb;\n }\n .mx-demouserswitcher p {\n margin-bottom: 0;\n }\n .mx-demouserswitcher-toggle {\n position: absolute;\n top: 25%;\n left: -35px;\n width: 35px;\n height: 38px;\n margin-top: -40px;\n cursor: pointer;\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n box-shadow: -1px 0 5px rgba(28, 59, 86, 0.2);\n background: url(resources/switcher-toggle.png) center center no-repeat #1b3149;\n }\n\n /* master details screen for mobile */\n .mx-master-detail-screen {\n top: 0;\n left: 0;\n overflow: auto;\n width: 100%;\n height: 100%;\n position: absolute;\n background-color: white;\n will-change: transform;\n }\n\n .mx-master-detail-screen .mx-master-detail-details {\n padding: 15px;\n }\n\n .mx-master-detail-screen-header {\n position: relative;\n overflow: auto;\n border-bottom: 1px solid #ccc;\n background-color: #f7f7f7;\n }\n\n .mx-master-detail-screen-header-caption {\n text-align: center;\n font-size: 17px;\n line-height: 24px;\n font-weight: 600;\n }\n\n .mx-master-detail-screen-header-close {\n position: absolute;\n left: 0;\n top: 0;\n height: 100%;\n width: 50px;\n border: none;\n background: transparent;\n color: #007aff;\n }\n\n body[dir=\"rtl\"] .mx-master-detail-screen-header-close {\n right: 0;\n left: auto;\n }\n\n .mx-master-detail-screen-header-close::before {\n content: \"\\2039\";\n font-size: 52px;\n line-height: 24px;\n }\n\n /* classes for content page */\n .mx-master-detail-content-fix {\n height: 100vh;\n overflow: hidden;\n }\n\n .mx-master-detail-content-hidden {\n transform: translateX(-200%);\n }\n\n body[dir=\"rtl\"] .mx-master-detail-content-hidden {\n transform: translateX(200%);\n }\n .reportingReport {\n padding: 5px;\n border: 1px solid #ddd;\n border-radius: 3px;\n }\n\n .reportingReportParameter th {\n text-align: right;\n }\n\n .reportingDateRange table {\n width: 100%;\n table-layout: fixed;\n }\n .reportingDateRange th {\n padding: 5px;\n text-align: right;\n background-color: #eee;\n }\n .reportingDateRange td {\n padding: 5px;\n }\n\n .mx-reportmatrix table {\n width: 100%;\n max-width: 100%;\n table-layout: fixed;\n margin-bottom: 0;\n }\n\n .mx-reportmatrix th,\n .mx-reportmatrix td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: bottom;\n border: 1px solid #ddd;\n }\n\n .mx-reportmatrix tbody tr:first-child td {\n border-top: none;\n }\n\n .mx-reportmatrix tbody tr:nth-child(2n + 1) td {\n background-color: #f9f9f9;\n }\n\n .mx-reportmatrix tbody img {\n max-width: 16px;\n max-height: 16px;\n }\n\n @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {\n .dijitInline {\n zoom: 1; /* set hasLayout:true to mimic inline-block */\n display: inline; /* don't use .dj_ie since that increases the priority */\n vertical-align: auto; /* makes TextBox,Button line up w/native counterparts on IE6 */\n }\n\n .dj_ie6 .dijitComboBox .dijitInputContainer,\n .dijitInputContainer {\n zoom: 1;\n }\n\n .dijitRight {\n /* Right part of a 3-element border */\n display: inline; /* IE7 sizes to outer size w/o this */\n }\n\n .dijitButtonNode {\n vertical-align: auto;\n }\n\n .dijitTextBox {\n overflow: hidden; /* #6027, #6067 */\n }\n\n .dijitPlaceHolder {\n filter: \"\"; /* make this show up in IE6 after the rendering of the widget */\n }\n\n .dijitValidationTextBoxError input.dijitValidationInner,\n .dijitSelect input,\n .dijitTextBox input.dijitArrowButtonInner {\n text-indent: 0 !important;\n letter-spacing: -5em !important;\n text-align: right !important;\n }\n\n .dj_a11y input.dijitValidationInner,\n .dj_a11y input.dijitArrowButtonInner {\n text-align: left !important;\n }\n\n .dijitSpinner .dijitSpinnerButtonContainer .dijitUpArrowButton {\n bottom: 50%; /* otherwise (on some machines) top arrow icon too close to splitter border (IE6/7) */\n }\n\n .dijitTabContainerTop-tabs .dijitTab,\n .dijitTabContainerBottom-tabs .dijitTab {\n zoom: 1; /* set hasLayout:true to mimic inline-block */\n display: inline; /* don't use .dj_ie since that increases the priority */\n }\n\n .dojoDndHorizontal .dojoDndItem {\n /* make contents of horizontal container be side by side, rather than vertical */\n display: inline;\n }\n }\n}\n\n/* WARNING: IE9 limits nested imports to three levels deep: http://jorgealbaladejo.com/2011/05/28/internet-explorer-limits-nested-import-css-statements */\n\n/* dijit base */\n\n/* mendix base */\n\n/* widgets */\n\n/* reporting */\n\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9kb2pvL2Rpaml0L3RoZW1lcy9kaWppdC5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS9iYXNlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL2Zvcm1zLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9Ub29sdGlwLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9UYWJDb250YWluZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L19HcmlkLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9DYWxlbmRhci5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvRGF0YUdyaWQuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RlbXBsYXRlR3JpZC5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvU2Nyb2xsQ29udGFpbmVyLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9OYXZiYXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L05hdmlnYXRpb25UcmVlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9CdXR0b24uY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0dyb3VwQm94LmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9EYXRhVmlldy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvRGlhbG9nLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9XaW5kb3cuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0Ryb3BEb3duLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9IZWFkZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RpdGxlLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9MaXN0Vmlldy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvTG9naW5EaWFsb2cuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L01lbnVCYXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L05hdmlnYXRpb25MaXN0LmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9Qcm9ncmVzcy5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvUmVsb2FkTm90aWZpY2F0aW9uLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9SZXNpemFibGUuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RleHQuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L1RleHRBcmVhLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9VbmRlcmxheS5jc3MiLCJ3ZWJwYWNrOi8vLy4vbXh1aS91aS93aWRnZXQvSW1hZ2Vab29tLmNzcyIsIndlYnBhY2s6Ly8vLi9teHVpL3VpL3dpZGdldC9TZWxlY3RCb3guY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L0RlbW9Vc2VyU3dpdGNoZXIuY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvd2lkZ2V0L01hc3RlckRldGFpbC5jc3MiLCJ3ZWJwYWNrOi8vLy4vcmVwb3J0aW5nL3VpL3dpZGdldC9SZXBvcnQuY3NzIiwid2VicGFjazovLy8uL3JlcG9ydGluZy91aS93aWRnZXQvUmVwb3J0UGFyYW1ldGVyLmNzcyIsIndlYnBhY2s6Ly8vLi9yZXBvcnRpbmcvdWkvd2lkZ2V0L0RhdGVSYW5nZS5jc3MiLCJ3ZWJwYWNrOi8vLy4vcmVwb3J0aW5nL3VpL3dpZGdldC9SZXBvcnRNYXRyaXguY3NzIiwid2VicGFjazovLy8uL214dWkvdWkvbXh1aS5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQUE7QUFDQTtBQUNBO0FBQ0E7Ozs7QUFJQTtBQUNBO0FBQ0E7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QUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsOEJBQThCO0FBQzlCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsMkJBQTJCO0FBQzNCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLDRCQUE0QjtBQUM1QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsY0FBYztBQUNkO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFdBQVc7QUFDWDtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFlBQVk7QUFDWjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBLGVBQWU7QUFDZjtBQUNBO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkIsd0JBQXdCO0FBQ3hCLFdBQVc7QUFDWDs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsYUFBYTtBQUNiO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQSxlQUFlLHlDQUF5QztBQUN4RDs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBLHdCQUF3QixvQkFBb0I7O0FBRTVDO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLGVBQWU7QUFDZjs7QUFFQTtBQUNBO0FBQ0EsK0JBQStCO0FBQy9CLFlBQVk7QUFDWjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBLGdCQUFnQjtBQUNoQjs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0EsYUFBYTtBQUNiO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLFlBQVk7QUFDWjs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0EsZ0JBQWdCO0FBQ2hCO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLHdCQUF3QjtBQUN4QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxpREFBaUQ7QUFDakQsMEJBQTBCO0FBQzFCOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxjQUFjO0FBQ2Q7QUFDQTtBQUNBO0FBQ0EsZ0JBQWdCO0FBQ2hCO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0EsZUFBZTtBQUNmOzs7QUFHQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0EsYUFBYTtBQUNiLGFBQWEsd0RBQXdEO0FBQ3JFO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0Esd0JBQXdCO0FBQ3hCOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtB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QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esa0JBQWtCO0FBQ2xCO0FBQ0E7QUFDQSxtQkFBbUI7QUFDbkI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLG9CQUFvQjtBQUNwQjs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0EsVUFBVTtBQUNWO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQSxrQkFBa0I7QUFDbEI7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLHdCQUF3QjtBQUN4QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxrQkFBa0I7QUFDbEI7QUFDQTtBQUNBLFlBQVk7QUFDWjtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7O0FBR0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQSxVQUFVO0FBQ1Y7QUFDQTs7QUFFQTtBQUNBLGdCQUFnQjtBQUNoQjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUdBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLGlDQUFpQztBQUNqQztBQUNBO0FBQ0EsNEJBQTRCO0FBQzVCO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esd0JBQXdCO0FBQ3hCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBLHFCQUFxQjtBQUNyQjs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSxpQkFBaUI7O0FBRWpCO0FBQ0E7QUFDQSwyQkFBMkI7QUFDM0I7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdnNFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsOEJBQThCO0FBQzlCO0FBQ0E7QUFDQTs7QUFFQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQzs7O0FDOUVBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUN6REE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSwrQ0FBK0M7QUFDL0M7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNmQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsbUNBQW1DO0FBQ25DO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsZUFBZTtBQUNmOztBQzdCQTtBQUNBO0FBQ0E7QUFDQSxxQkFBcUI7QUFDckI7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3JGQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOztBQzFCQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBLHVCQUF1QjtBQUN2QjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxRQUFRLDhCQUE4QjtBQUN0QyxVQUFVLCtCQUErQjtBQUN6Qzs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUN0R0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUN6QkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNyREE7QUFDQTtBQUNBO0FBQ0E7OztBQ0hBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdkRBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDUEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ25DQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUMvQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNoQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDeEJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNyQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0Esc0JBQXNCO0FBQ3RCO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3RCQTtBQUNBO0FBQ0E7QUFDQTs7QUNIQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDN0VBO0FBQ0E7QUFDQTs7QUNGQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQztBQUNBO0FBQ0E7O0FDYkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDZkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsbUNBQW1DO0FBQ25DOztBQy9CQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTs7QUFFQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTs7QUNmQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ3JFQTtBQUNBO0FBQ0E7O0FDRkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ2RBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNSQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDZEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDeEJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxtQ0FBbUM7QUFDbkM7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLG1DQUFtQztBQUNuQzs7QUMvREE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQSxDO0FDaEVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ05BO0FBQ0E7QUFDQTs7QUNGQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDWEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFFQTtBQUNBO0FBQ0E7O0FBRUE7QUFDQTtBQUNBOztBQUVBO0FBQ0E7QUFDQTtBQUNBOzs7O0FDekJBOztBQUVBOztBQUVBOztBQUVBOztBQUVBIiwiZmlsZSI6Im14dWkvdWkvbXh1aS5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuXHRFc3NlbnRpYWwgc3R5bGVzIHRoYXQgdGhlbWVzIGNhbiBpbmhlcml0LlxuXHRJbiBvdGhlciB3b3Jkcywgd29ya3MgYnV0IGRvZXNuJ3QgbG9vayBncmVhdC5cbiovXG5cblxuXG4vKioqKlxuXHRcdEdFTkVSSUMgUElFQ0VTXG4gKioqKi9cblxuLmRpaml0UmVzZXQge1xuXHQvKiBVc2UgdGhpcyBzdHlsZSB0byBudWxsIG91dCBwYWRkaW5nLCBtYXJnaW4sIGJvcmRlciBpbiB5b3VyIHRlbXBsYXRlIGVsZW1lbnRzXG5cdFx0c28gdGhhdCBwYWdlIHNwZWNpZmljIHN0eWxlcyBkb24ndCBicmVhayB0aGVtLlxuXHRcdC0gVXNlIGluIGFsbCBUQUJMRSwgVFIgYW5kIFREIHRhZ3MuXG5cdCovXG5cdG1hcmdpbjowO1xuXHRib3JkZXI6MDtcblx0cGFkZGluZzowO1xuXHRmb250OiBpbmhlcml0O1xuXHRsaW5lLWhlaWdodDpub3JtYWw7XG5cdGNvbG9yOiBpbmhlcml0O1xufVxuLmRqX2ExMXkgLmRpaml0UmVzZXQge1xuXHQtbW96LWFwcGVhcmFuY2U6IG5vbmU7IC8qIHJlbW92ZSBwcmVkZWZpbmVkIGhpZ2gtY29udHJhc3Qgc3R5bGluZyBpbiBGaXJlZm94ICovXG59XG5cbi5kaWppdElubGluZSB7XG5cdC8qICBUbyBpbmxpbmUgYmxvY2sgZWxlbWVudHMuXG5cdFx0U2ltaWxhciB0byBJbmxpbmVCb3ggYmVsb3csIGJ1dCB0aGlzIGhhcyBmZXdlciBzaWRlLWVmZmVjdHMgaW4gTW96LlxuXHRcdEFsc28sIGFwcGFyZW50bHkgd29ya3Mgb24gYSBESVYgYXMgd2VsbCBhcyBhIEZJRUxEU0VULlxuXHQqL1xuXHRkaXNwbGF5OmlubGluZS1ibG9jaztcdFx0XHQvKiB3ZWJraXQgYW5kIEZGMyAqL1xuXHQjem9vbTogMTsgLyogc2V0IGhhc0xheW91dDp0cnVlIHRvIG1pbWljIGlubGluZS1ibG9jayAqL1xuXHQjZGlzcGxheTppbmxpbmU7IC8qIGRvbid0IHVzZSAuZGpfaWUgc2luY2UgdGhhdCBpbmNyZWFzZXMgdGhlIHByaW9yaXR5ICovXG5cdGJvcmRlcjowO1xuXHRwYWRkaW5nOjA7XG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0I3ZlcnRpY2FsLWFsaWduOiBhdXRvO1x0LyogbWFrZXMgVGV4dEJveCxCdXR0b24gbGluZSB1cCB3L25hdGl2ZSBjb3VudGVycGFydHMgb24gSUU2ICovXG59XG5cbnRhYmxlLmRpaml0SW5saW5lIHtcblx0LyogVG8gaW5saW5lIHRhYmxlcyB3aXRoIGEgZ2l2ZW4gd2lkdGggc2V0ICovXG5cdGRpc3BsYXk6aW5saW5lLXRhYmxlO1xuXHRib3gtc2l6aW5nOiBjb250ZW50LWJveDsgLW1vei1ib3gtc2l6aW5nOiBjb250ZW50LWJveDtcbn1cblxuLmRpaml0SGlkZGVuIHtcblx0LyogVG8gaGlkZSB1bnNlbGVjdGVkIHBhbmVzIGluIFN0YWNrQ29udGFpbmVyIGV0Yy4gKi9cblx0cG9zaXRpb246IGFic29sdXRlOyAvKiByZW1vdmUgZnJvbSBub3JtYWwgZG9jdW1lbnQgZmxvdyB0byBzaW11bGF0ZSBkaXNwbGF5OiBub25lICovXG5cdHZpc2liaWxpdHk6IGhpZGRlbjsgLyogaGlkZSBlbGVtZW50IGZyb20gdmlldywgYnV0IGRvbid0IGJyZWFrIHNjcm9sbGluZywgc2VlICMxODYxMiAqL1xufVxuLmRpaml0SGlkZGVuICoge1xuXHR2aXNpYmlsaXR5OiBoaWRkZW4gIWltcG9ydGFudDsgLyogaGlkZSB2aXNpYmlsaXR5OnZpc2libGUgZGVzY2VuZGFudHMgb2YgY2xhc3M9ZGlqaXRIaWRkZW4gbm9kZXMsIHNlZSAjMTg3OTkgKi9cbn1cblxuLmRpaml0VmlzaWJsZSB7XG5cdC8qIFRvIHNob3cgc2VsZWN0ZWQgcGFuZSBpbiBTdGFja0NvbnRhaW5lciBldGMuICovXG5cdGRpc3BsYXk6IGJsb2NrICFpbXBvcnRhbnQ7XHQvKiBvdmVycmlkZSB1c2VyJ3MgZGlzcGxheTpub25lIHNldHRpbmcgdmlhIHN0eWxlIHNldHRpbmcgb3IgaW5kaXJlY3RseSB2aWEgY2xhc3MgKi9cblx0cG9zaXRpb246IHJlbGF0aXZlO1x0XHRcdC8qIHRvIHN1cHBvcnQgc2V0dGluZyB3aWR0aC9oZWlnaHQsIHNlZSAjMjAzMyAqL1xuXHR2aXNpYmlsaXR5OiB2aXNpYmxlO1xufVxuXG4uZGpfaWU2IC5kaWppdENvbWJvQm94IC5kaWppdElucHV0Q29udGFpbmVyLFxuLmRpaml0SW5wdXRDb250YWluZXIge1xuXHQvKiBmb3IgcG9zaXRpb25pbmcgb2YgcGxhY2VIb2xkZXIgKi9cblx0I3pvb206IDE7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdGZsb2F0OiBub25lICFpbXBvcnRhbnQ7IC8qIG5lZWRlZCB0byBzcXVlZXplIHRoZSBJTlBVVCBpbiAqL1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG59XG4uZGpfaWU3IC5kaWppdElucHV0Q29udGFpbmVyIHtcblx0ZmxvYXQ6IGxlZnQgIWltcG9ydGFudDsgLyogbmVlZGVkIGJ5IElFIHRvIHNxdWVlemUgdGhlIElOUFVUIGluICovXG5cdGNsZWFyOiBsZWZ0O1xuXHRkaXNwbGF5OiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDsgLyogdG8gZml4IHdyb25nIHRleHQgYWxpZ25tZW50IGluIHRleHRkaXI9cnRsIHRleHQgYm94ICovXG59XG5cbi5kal9pZSAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWUgaW5wdXQuZGlqaXRUZXh0Qm94LFxuLmRqX2llIC5kaWppdFRleHRCb3ggaW5wdXQge1xuXHRmb250LXNpemU6IDEwMCU7XG59XG4uZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uVGV4dCB7XG5cdGZsb2F0OiBsZWZ0O1xuXHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuVEFCTEUuZGlqaXRTZWxlY3Qge1xuXHRwYWRkaW5nOiAwICFpbXBvcnRhbnQ7IC8qIG1lc3NlcyB1cCBib3JkZXIgYWxpZ25tZW50ICovXG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7IC8qIHNvIGpzZmlkZGxlIHdvcmtzIHdpdGggTm9ybWFsaXplZCBDU1MgY2hlY2tlZCAqL1xufVxuLmRpaml0VGV4dEJveCAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyLFxuLmRpaml0VGV4dEJveCAuZGlqaXRBcnJvd0J1dHRvbkNvbnRhaW5lcixcbi5kaWppdFZhbGlkYXRpb25UZXh0Qm94IC5kaWppdFZhbGlkYXRpb25Db250YWluZXIge1xuXHRmbG9hdDogcmlnaHQ7XG5cdHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5kaWppdFNlbGVjdCBpbnB1dC5kaWppdElucHV0RmllbGQsXG4uZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRGaWVsZCB7XG5cdC8qIG92ZXJyaWRlIHVucmVhc29uYWJsZSB1c2VyIHN0eWxpbmcgb2YgYnV0dG9ucyBhbmQgaWNvbnMgKi9cblx0cGFkZGluZy1sZWZ0OiAwICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmctcmlnaHQ6IDAgIWltcG9ydGFudDtcbn1cbi5kaWppdFZhbGlkYXRpb25UZXh0Qm94IC5kaWppdFZhbGlkYXRpb25Db250YWluZXIge1xuXHRkaXNwbGF5OiBub25lO1xufVxuXG4uZGlqaXRUZWVueSB7XG5cdGZvbnQtc2l6ZToxcHg7XG5cdGxpbmUtaGVpZ2h0OjFweDtcbn1cblxuLmRpaml0T2ZmU2NyZWVuIHsgLyogdGhlc2UgY2xhc3MgYXR0cmlidXRlcyBzaG91bGQgc3VwZXJzZWRlIGFueSBpbmxpbmUgcG9zaXRpb25pbmcgc3R5bGUgKi9cblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdGxlZnQ6IC0xMDAwMHB4ICFpbXBvcnRhbnQ7XG5cdHRvcDogLTEwMDAwcHggIWltcG9ydGFudDtcbn1cblxuLypcbiAqIFBvcHVwIGl0ZW1zIGhhdmUgYSB3cmFwcGVyIGRpdiAoZGlqaXRQb3B1cClcbiAqIHdpdGggdGhlIHJlYWwgcG9wdXAgaW5zaWRlLCBhbmQgbWF5YmUgYW4gaWZyYW1lIHRvb1xuICovXG4uZGlqaXRQb3B1cCB7XG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0YmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQ7XG5cdG1hcmdpbjogMDtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xuXHQtd2Via2l0LW92ZXJmbG93LXNjcm9sbGluZzogdG91Y2g7XG59XG5cbi5kaWppdFBvc2l0aW9uT25seSB7XG5cdC8qIE51bGwgb3V0IGFsbCBwb3NpdGlvbi1yZWxhdGVkIHByb3BlcnRpZXMgKi9cblx0cGFkZGluZzogMCAhaW1wb3J0YW50O1xuXHRib3JkZXI6IDAgIWltcG9ydGFudDtcblx0YmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblx0YmFja2dyb3VuZC1pbWFnZTogbm9uZSAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcblx0d2lkdGg6IGF1dG8gIWltcG9ydGFudDtcbn1cblxuLmRpaml0Tm9uUG9zaXRpb25Pbmx5IHtcblx0LyogTnVsbCBwb3NpdGlvbi1yZWxhdGVkIHByb3BlcnRpZXMgKi9cblx0ZmxvYXQ6IG5vbmUgIWltcG9ydGFudDtcblx0cG9zaXRpb246IHN0YXRpYyAhaW1wb3J0YW50O1xuXHRtYXJnaW46IDAgMCAwIDAgIWltcG9ydGFudDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZSAhaW1wb3J0YW50O1xufVxuXG4uZGlqaXRCYWNrZ3JvdW5kSWZyYW1lIHtcblx0LyogaWZyYW1lIHVzZWQgdG8gcHJldmVudCBwcm9ibGVtcyB3aXRoIFBERiBvciBvdGhlciBhcHBsZXRzIG92ZXJsYXlpbmcgbWVudXMgZXRjICovXG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0bGVmdDogMDtcblx0dG9wOiAwO1xuXHR3aWR0aDogMTAwJTtcblx0aGVpZ2h0OiAxMDAlO1xuXHR6LWluZGV4OiAtMTtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdERpc3BsYXlOb25lIHtcblx0LyogaGlkZSBzb21ldGhpbmcuICBVc2UgdGhpcyBhcyBhIGNsYXNzIHJhdGhlciB0aGFuIGVsZW1lbnQuc3R5bGUgc28gYW5vdGhlciBjbGFzcyBjYW4gb3ZlcnJpZGUgKi9cblx0ZGlzcGxheTpub25lICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdENvbnRhaW5lciB7XG5cdC8qIGZvciBhbGwgbGF5b3V0IGNvbnRhaW5lcnMgKi9cblx0b3ZlcmZsb3c6IGhpZGRlbjtcdC8qIG5lZWQgb24gSUUgc28gc29tZXRoaW5nIGNhbiBiZSByZWR1Y2VkIGluIHNpemUsIGFuZCBzbyBzY3JvbGxiYXJzIGFyZW4ndCB0ZW1wb3JhcmlseSBkaXNwbGF5ZWQgd2hlbiByZXNpemluZyAqL1xufVxuXG4vKioqKlxuXHRcdEExMVlcbiAqKioqL1xuLmRqX2ExMXkgLmRpaml0SWNvbixcbi5kal9hMTF5IGRpdi5kaWppdEFycm93QnV0dG9uSW5uZXIsIC8qIGlzIHRoaXMgb25seSBmb3IgU3Bpbm5lcj8gIGlmIHNvLCBpdCBzaG91bGQgYmUgZGVsZXRlZCAqL1xuLmRqX2ExMXkgc3Bhbi5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGpfYTExeSBpbWcuZGlqaXRBcnJvd0J1dHRvbklubmVyLFxuLmRqX2ExMXkgLmRpaml0Q2FsZW5kYXJJbmNyZW1lbnRDb250cm9sLFxuLmRqX2ExMXkgLmRpaml0VHJlZUV4cGFuZG8ge1xuXHQvKiBoaWRlIGljb24gbm9kZXMgaW4gaGlnaCBjb250cmFzdCBtb2RlOyB3aGVuIG5lY2Vzc2FyeSB0aGV5IHdpbGwgYmUgcmVwbGFjZWQgYnkgY2hhcmFjdGVyIGVxdWl2YWxlbnRzXG5cdCAqIGV4Y2VwdGlvbiBmb3IgaW5wdXQuZGlqaXRBcnJvd0J1dHRvbklubmVyLCBiZWNhdXNlIHRoZSBpY29uIGFuZCBjaGFyYWN0ZXIgYXJlIGNvbnRyb2xsZWQgYnkgdGhlIHNhbWUgbm9kZSAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRpaml0U3Bpbm5lciBkaXYuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0ZGlzcGxheTogYmxvY2s7IC8qIG92ZXJyaWRlIHByZXZpb3VzIHJ1bGUgKi9cbn1cblxuLmRqX2ExMXkgLmRpaml0QTExeVNpZGVBcnJvdyB7XG5cdGRpc3BsYXk6IGlubGluZSAhaW1wb3J0YW50OyAvKiBkaXNwbGF5IHRleHQgaW5zdGVhZCAqL1xuXHRjdXJzb3I6IHBvaW50ZXI7XG59XG5cbi8qXG4gKiBTaW5jZSB3ZSBjYW4ndCB1c2Ugc2hhZGluZyBpbiBhMTF5IG1vZGUsIGFuZCBzaW5jZSB0aGUgdW5kZXJsaW5lIGluZGljYXRlcyB0b2RheSdzIGRhdGUsXG4gKiB1c2UgYSBib3JkZXIgdG8gc2hvdyB0aGUgc2VsZWN0ZWQgZGF0ZS5cbiAqIEF2b2lkIHNjcmVlbiBqaXR0ZXIgd2hlbiBzd2l0Y2hpbmcgc2VsZWN0ZWQgZGF0ZSBieSBjb21wZW5zYXRpbmcgZm9yIHRoZSBzZWxlY3RlZCBub2RlJ3NcbiAqIGJvcmRlciB3L3BhZGRpbmcgb24gb3RoZXIgbm9kZXMuXG4gKi9cbi5kal9hMTF5IC5kaWppdENhbGVuZGFyRGF0ZUxhYmVsIHtcblx0cGFkZGluZzogMXB4O1xuXHRib3JkZXI6IDBweCAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0Q2FsZW5kYXJTZWxlY3RlZERhdGUgLmRpaml0Q2FsZW5kYXJEYXRlTGFiZWwge1xuXHRib3JkZXItc3R5bGU6IHNvbGlkICFpbXBvcnRhbnQ7XG5cdGJvcmRlci13aWR0aDogMXB4ICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmc6IDA7XG59XG4uZGpfYTExeSAuZGlqaXRDYWxlbmRhckRhdGVUZW1wbGF0ZSB7XG5cdHBhZGRpbmctYm90dG9tOiAwLjFlbSAhaW1wb3J0YW50O1x0Lyogb3RoZXJ3aXNlIGJvdHRvbSBib3JkZXIgZG9lc24ndCBhcHBlYXIgb24gSUUgKi9cblx0Ym9yZGVyOiAwcHggIWltcG9ydGFudDtcbn1cbi5kal9hMTF5IC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXI6IGJsYWNrIG91dHNldCBtZWRpdW0gIWltcG9ydGFudDtcblxuXHQvKiBJbiBjbGFybywgaG92ZXJpbmcgYSB0b29sYmFyIGJ1dHRvbiByZWR1Y2VzIHBhZGRpbmcgYW5kIGFkZHMgYSBib3JkZXIuXG5cdCAqIE5vdCBuZWVkZWQgaW4gYTExeSBtb2RlIHNpbmNlIFRvb2xiYXIgYnV0dG9ucyBhbHdheXMgaGF2ZSBhIGJvcmRlci5cblx0ICovXG5cdHBhZGRpbmc6IDAgIWltcG9ydGFudDtcbn1cbi5kal9hMTF5IC5kaWppdEFycm93QnV0dG9uIHtcblx0cGFkZGluZzogMCAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXRCdXR0b25Db250ZW50cyB7XG5cdG1hcmdpbjogMC4xNWVtOyAvKiBNYXJnaW4gbmVlZGVkIHRvIG1ha2UgZm9jdXMgb3V0bGluZSB2aXNpYmxlICovXG59XG5cbi5kal9hMTF5IC5kaWppdFRleHRCb3hSZWFkT25seSAuZGlqaXRJbnB1dEZpZWxkLFxuLmRqX2ExMXkgLmRpaml0VGV4dEJveFJlYWRPbmx5IC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItc3R5bGU6IG91dHNldCFpbXBvcnRhbnQ7XG5cdGJvcmRlci13aWR0aDogbWVkaXVtIWltcG9ydGFudDtcblx0Ym9yZGVyLWNvbG9yOiAjOTk5ICFpbXBvcnRhbnQ7XG5cdGNvbG9yOiM5OTkgIWltcG9ydGFudDtcbn1cblxuLyogYnV0dG9uIGlubmVyIGNvbnRlbnRzIC0gbGFiZWxzLCBpY29ucyBldGMuICovXG4uZGlqaXRCdXR0b25Ob2RlICoge1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLmRpaml0U2VsZWN0IC5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGlqaXRCdXR0b25Ob2RlIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHQvKiB0aGUgYXJyb3cgaWNvbiBub2RlICovXG5cdGJhY2tncm91bmQ6IG5vLXJlcGVhdCBjZW50ZXI7XG5cdHdpZHRoOiAxMnB4O1xuXHRoZWlnaHQ6IDEycHg7XG5cdGRpcmVjdGlvbjogbHRyOyAvKiBuZWVkZWQgYnkgSUUvUlRMICovXG59XG5cbi8qKioqXG5cdDMtZWxlbWVudCBib3JkZXJzOiAgKCBkaWppdExlZnQgKyBkaWppdFN0cmV0Y2ggKyBkaWppdFJpZ2h0IClcblx0VGhlc2Ugd2VyZSBhZGRlZCBmb3Igcm91bmRlZCBjb3JuZXJzIG9uIGRpaml0LmZvcm0uKkJ1dHRvbiBidXQgbmV2ZXIgYWN0dWFsbHkgdXNlZC5cbiAqKioqL1xuXG4uZGlqaXRMZWZ0IHtcblx0LyogTGVmdCBwYXJ0IG9mIGEgMy1lbGVtZW50IGJvcmRlciAqL1xuXHRiYWNrZ3JvdW5kLXBvc2l0aW9uOmxlZnQgdG9wO1xuXHRiYWNrZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7XG59XG5cbi5kaWppdFN0cmV0Y2gge1xuXHQvKiBNaWRkbGUgKHN0cmV0Y2h5KSBwYXJ0IG9mIGEgMy1lbGVtZW50IGJvcmRlciAqL1xuXHR3aGl0ZS1zcGFjZTpub3dyYXA7XHRcdFx0LyogTU9XOiBtb3ZlIHNvbWV3aGVyZSBlbHNlICovXG5cdGJhY2tncm91bmQtcmVwZWF0OnJlcGVhdC14O1xufVxuXG4uZGlqaXRSaWdodCB7XG5cdC8qIFJpZ2h0IHBhcnQgb2YgYSAzLWVsZW1lbnQgYm9yZGVyICovXG5cdCNkaXNwbGF5OmlubGluZTtcdFx0XHRcdC8qIElFNyBzaXplcyB0byBvdXRlciBzaXplIHcvbyB0aGlzICovXG5cdGJhY2tncm91bmQtcG9zaXRpb246cmlnaHQgdG9wO1xuXHRiYWNrZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7XG59XG5cbi8qIEJ1dHRvbnMgKi9cbi5kal9nZWNrbyAuZGpfYTExeSAuZGlqaXRCdXR0b25EaXNhYmxlZCAuZGlqaXRCdXR0b25Ob2RlIHtcblx0b3BhY2l0eTogMC41O1xufVxuXG4uZGlqaXRUb2dnbGVCdXR0b24sXG4uZGlqaXRCdXR0b24sXG4uZGlqaXREcm9wRG93bkJ1dHRvbixcbi5kaWppdENvbWJvQnV0dG9uIHtcblx0Lyogb3V0c2lkZSBvZiBidXR0b24gKi9cblx0bWFyZ2luOiAwLjJlbTtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cblxuLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRkaXNwbGF5OiBibG9jaztcdFx0LyogdG8gbWFrZSBmb2N1cyBib3JkZXIgcmVjdGFuZ3VsYXIgKi9cbn1cbnRkLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRkaXNwbGF5OiB0YWJsZS1jZWxsO1x0LyogYnV0IGRvbid0IGFmZmVjdCBTZWxlY3QsIENvbWJvQnV0dG9uICovXG59XG5cbi5kaWppdEJ1dHRvbk5vZGUgaW1nIHtcblx0LyogbWFrZSB0ZXh0IGFuZCBpbWFnZXMgbGluZSB1cCBjbGVhbmx5ICovXG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0LyptYXJnaW4tYm90dG9tOi4yZW07Ki9cbn1cblxuLmRpaml0VG9vbGJhciAuZGlqaXRDb21ib0J1dHRvbiB7XG5cdC8qIGJlY2F1c2UgVG9vbGJhciBvbmx5IGRyYXdzIGEgYm9yZGVyIGFyb3VuZCB0aGUgaG92ZXJlZCB0aGluZyAqL1xuXHRib3JkZXItY29sbGFwc2U6IHNlcGFyYXRlO1xufVxuXG4uZGlqaXRUb29sYmFyIC5kaWppdFRvZ2dsZUJ1dHRvbixcbi5kaWppdFRvb2xiYXIgLmRpaml0QnV0dG9uLFxuLmRpaml0VG9vbGJhciAuZGlqaXREcm9wRG93bkJ1dHRvbixcbi5kaWppdFRvb2xiYXIgLmRpaml0Q29tYm9CdXR0b24ge1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdFRvb2xiYXIgLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHQvKiBqdXN0IGJlY2F1c2UgaXQgdXNlZCB0byBiZSB0aGlzIHdheSAqL1xuXHRwYWRkaW5nOiAxcHggMnB4O1xufVxuXG5cbi5kal93ZWJraXQgLmRpaml0VG9vbGJhciAuZGlqaXREcm9wRG93bkJ1dHRvbiB7XG5cdHBhZGRpbmctbGVmdDogMC4zZW07XG59XG4uZGpfZ2Vja28gLmRpaml0VG9vbGJhciAuZGlqaXRCdXR0b25Ob2RlOjotbW96LWZvY3VzLWlubmVyIHtcblx0cGFkZGluZzowO1xufVxuXG4uZGlqaXRTZWxlY3Qge1xuXHRib3JkZXI6MXB4IHNvbGlkIGdyYXk7XG59XG4uZGlqaXRCdXR0b25Ob2RlIHtcblx0LyogTm9kZSB0aGF0IGlzIGFjdGluZyBhcyBhIGJ1dHRvbiAtLSBtYXkgb3IgbWF5IG5vdCBiZSBhIEJVVFRPTiBlbGVtZW50ICovXG5cdGJvcmRlcjoxcHggc29saWQgZ3JheTtcblx0bWFyZ2luOjA7XG5cdGxpbmUtaGVpZ2h0Om5vcm1hbDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcblx0I3ZlcnRpY2FsLWFsaWduOiBhdXRvO1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcbn1cbi5kal93ZWJraXQgLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIHtcblx0LyogYXBwYXJlbnQgV2ViS2l0IGJ1ZyB3aGVyZSBtZXNzaW5nIHdpdGggdGhlIGZvbnQgY291cGxlZCB3aXRoIGxpbmUtaGVpZ2h0Om5vcm1hbCBYIDIgKGRpaml0UmVzZXQgJiBkaWppdEJ1dHRvbk5vZGUpXG5cdGNhbiBiZSBkaWZmZXJlbnQgdGhhbiBqdXN0IGEgc2luZ2xlIGxpbmUtaGVpZ2h0Om5vcm1hbCwgdmlzaWJsZSBpbiBJbmxpbmVFZGl0Qm94L1NwaW5uZXIgKi9cblx0bGluZS1oZWlnaHQ6aW5oZXJpdDtcbn1cbi5kaWppdFRleHRCb3ggLmRpaml0QnV0dG9uTm9kZSB7XG5cdGJvcmRlci13aWR0aDogMDtcbn1cblxuLmRpaml0U2VsZWN0LFxuLmRpaml0U2VsZWN0ICosXG4uZGlqaXRCdXR0b25Ob2RlLFxuLmRpaml0QnV0dG9uTm9kZSAqIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGpfaWUgLmRpaml0QnV0dG9uTm9kZSB7XG5cdC8qIGVuc3VyZSBoYXNMYXlvdXQgKi9cblx0em9vbTogMTtcbn1cblxuLmRqX2llIC5kaWppdEJ1dHRvbk5vZGUgYnV0dG9uIHtcblx0Lypcblx0XHRkaXNndXN0aW5nIGhhY2sgdG8gZ2V0IHJpZCBvZiBzcHVyaW91cyBwYWRkaW5nIGFyb3VuZCBidXR0b24gZWxlbWVudHNcblx0XHRvbiBJRS4gTVNJRSBpcyB0cnVseSB0aGUgd2ViJ3MgYm9hdCBhbmNob3IuXG5cdCovXG5cdG92ZXJmbG93OiB2aXNpYmxlO1xufVxuXG5kaXYuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdGZsb2F0OiByaWdodDtcbn1cblxuLyoqKioqKlxuXHRUZXh0Qm94IHJlbGF0ZWQuXG5cdEV2ZXJ5dGhpbmcgdGhhdCBoYXMgYW4gPGlucHV0PlxuKioqKioqKi9cblxuLmRpaml0VGV4dEJveCB7XG5cdGJvcmRlcjogc29saWQgYmxhY2sgMXB4O1xuXHQjb3ZlcmZsb3c6IGhpZGRlbjsgLyogIzYwMjcsICM2MDY3ICovXG5cdHdpZHRoOiAxNWVtO1x0LyogbmVlZCB0byBzZXQgZGVmYXVsdCBzaXplIG9uIG91dGVyIG5vZGUgc2luY2UgaW5uZXIgbm9kZXMgc2F5IDxpbnB1dCBzdHlsZT1cIndpZHRoOjEwMCVcIj4gYW5kIDx0ZCB3aWR0aD0xMDAlPi4gIHVzZXIgY2FuIG92ZXJyaWRlICovXG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kaWppdFRleHRCb3hSZWFkT25seSxcbi5kaWppdFRleHRCb3hEaXNhYmxlZCB7XG5cdGNvbG9yOiBncmF5O1xufVxuLmRqX3NhZmFyaSAuZGlqaXRUZXh0Qm94RGlzYWJsZWQgaW5wdXQge1xuXHRjb2xvcjogI0IwQjBCMDsgLyogYmVjYXVzZSBTYWZhcmkgbGlnaHRlbnMgZGlzYWJsZWQgaW5wdXQvdGV4dGFyZWEgbm8gbWF0dGVyIHdoYXQgY29sb3IgeW91IHNwZWNpZnkgKi9cbn1cbi5kal9zYWZhcmkgdGV4dGFyZWEuZGlqaXRUZXh0QXJlYURpc2FibGVkIHtcblx0Y29sb3I6ICMzMzM7IC8qIGJlY2F1c2UgU2FmYXJpIGxpZ2h0ZW5zIGRpc2FibGVkIGlucHV0L3RleHRhcmVhIG5vIG1hdHRlciB3aGF0IGNvbG9yIHlvdSBzcGVjaWZ5ICovXG59XG4uZGpfZ2Vja28gLmRpaml0VGV4dEJveFJlYWRPbmx5IGlucHV0LmRpaml0SW5wdXRGaWVsZCwgLyogZGlzYWJsZSBhcnJvdyBhbmQgdmFsaWRhdGlvbiBwcmVzZW50YXRpb24gaW5wdXRzIGJ1dCBhbGxvdyByZWFsIGlucHV0IGZvciB0ZXh0IHNlbGVjdGlvbiAqL1xuLmRqX2dlY2tvIC5kaWppdFRleHRCb3hEaXNhYmxlZCBpbnB1dCB7XG5cdC1tb3otdXNlci1pbnB1dDogbm9uZTsgLyogcHJldmVudCBmb2N1cyBvZiBkaXNhYmxlZCB0ZXh0Ym94IGJ1dHRvbnMgKi9cbn1cblxuLmRpaml0UGxhY2VIb2xkZXIge1xuXHQvKiBoaW50IHRleHQgdGhhdCBhcHBlYXJzIGluIGEgdGV4dGJveCB1bnRpbCB1c2VyIHN0YXJ0cyB0eXBpbmcgKi9cblx0Y29sb3I6ICNBQUFBQUE7XG5cdGZvbnQtc3R5bGU6IGl0YWxpYztcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR0b3A6IDA7XG5cdGxlZnQ6IDA7XG5cdCNmaWx0ZXI6IFwiXCI7IC8qIG1ha2UgdGhpcyBzaG93IHVwIGluIElFNiBhZnRlciB0aGUgcmVuZGVyaW5nIG9mIHRoZSB3aWRnZXQgKi9cblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcblx0cG9pbnRlci1ldmVudHM6IG5vbmU7ICAgLyogc28gY3V0L3Bhc3RlIGNvbnRleHQgbWVudSBzaG93cyB1cCB3aGVuIHJpZ2h0IGNsaWNraW5nICovXG59XG5cbi5kaWppdFRpbWVUZXh0Qm94IHtcblx0d2lkdGg6IDhlbTtcbn1cblxuLyogcnVsZXMgZm9yIHdlYmtpdCB0byBkZWFsIHdpdGggZnV6enkgYmx1ZSBmb2N1cyBib3JkZXIgKi9cbi5kaWppdFRleHRCb3ggaW5wdXQ6Zm9jdXMge1xuXHRvdXRsaW5lOiBub25lO1x0LyogYmx1ZSBmdXp6eSBsaW5lIGxvb2tzIHdyb25nIG9uIGNvbWJvYm94IG9yIHNvbWV0aGluZyB3L3ZhbGlkYXRpb24gaWNvbiBzaG93aW5nICovXG59XG4uZGlqaXRUZXh0Qm94Rm9jdXNlZCB7XG5cdG91dGxpbmU6IDVweCAtd2Via2l0LWZvY3VzLXJpbmctY29sb3I7XG59XG5cbi5kaWppdFNlbGVjdCBpbnB1dCxcbi5kaWppdFRleHRCb3ggaW5wdXQge1xuXHRmbG9hdDogbGVmdDsgLyogbmVlZGVkIGJ5IElFIHRvIHJlbW92ZSBzZWNyZXQgbWFyZ2luICovXG59XG4uZGpfaWU2IGlucHV0LmRpaml0VGV4dEJveCxcbi5kal9pZTYgLmRpaml0VGV4dEJveCBpbnB1dCB7XG5cdGZsb2F0OiBub25lO1xufVxuLmRpaml0SW5wdXRJbm5lciB7XG5cdC8qIGZvciB3aGVuIGFuIDxpbnB1dD4gaXMgZW1iZWRkZWQgaW5zaWRlIGFuIGlubGluZS1ibG9jayA8ZGl2PiB3aXRoIGEgc2l6ZSBhbmQgYm9yZGVyICovXG5cdGJvcmRlcjowICFpbXBvcnRhbnQ7XG5cdGJhY2tncm91bmQtY29sb3I6dHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblx0d2lkdGg6MTAwJSAhaW1wb3J0YW50O1xuXHQvKiBJRSBkaXNsaWtlcyBob3Jpem9udGFsIHR3ZWFraW5nIGNvbWJpbmVkIHdpdGggd2lkdGg6MTAwJSBzbyBwdW5pc2ggZXZlcnlvbmUgZm9yIGNvbnNpc3RlbmN5ICovXG5cdHBhZGRpbmctbGVmdDogMCAhaW1wb3J0YW50O1xuXHRwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1sZWZ0OiAwICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1yaWdodDogMCAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0VGV4dEJveCBpbnB1dCB7XG5cdG1hcmdpbjogMCAhaW1wb3J0YW50O1xufVxuLmRpaml0VmFsaWRhdGlvblRleHRCb3hFcnJvciBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kaWppdFNlbGVjdCBpbnB1dCxcbi5kaWppdFRleHRCb3ggaW5wdXQuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0LyogPGlucHV0PiB1c2VkIHRvIGRpc3BsYXkgYXJyb3cgaWNvbi92YWxpZGF0aW9uIGljb24sIG9yIGluIGFycm93IGNoYXJhY3RlciBpbiBoaWdoIGNvbnRyYXN0IG1vZGUuXG5cdCAqIFRoZSBjc3MgYmVsb3cgaXMgYSB0cmljayB0byBoaWRlIHRoZSBjaGFyYWN0ZXIgaW4gbm9uLWhpZ2gtY29udHJhc3QgbW9kZVxuXHQgKi9cblx0dGV4dC1pbmRlbnQ6IC0yZW0gIWltcG9ydGFudDtcblx0ZGlyZWN0aW9uOiBsdHIgIWltcG9ydGFudDtcblx0dGV4dC1hbGlnbjogbGVmdCAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcblx0I3RleHQtaW5kZW50OiAwICFpbXBvcnRhbnQ7XG5cdCNsZXR0ZXItc3BhY2luZzogLTVlbSAhaW1wb3J0YW50O1xuXHQjdGV4dC1hbGlnbjogcmlnaHQgIWltcG9ydGFudDtcbn1cbi5kal9pZSAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWUgLmRpaml0VGV4dEJveCBpbnB1dCxcbi5kal9pZSBpbnB1dC5kaWppdFRleHRCb3gge1xuXHRvdmVyZmxvdy15OiB2aXNpYmxlOyAvKiBpbnB1dHMgbmVlZCBoZWxwIGV4cGFuZGluZyB3aGVuIHBhZGRpbmcgaXMgYWRkZWQgb3IgbGluZS1oZWlnaHQgaXMgYWRqdXN0ZWQgKi9cblx0bGluZS1oZWlnaHQ6IG5vcm1hbDsgLyogc3RyaWN0IG1vZGUgKi9cbn1cbi5kaWppdFNlbGVjdCAuZGlqaXRTZWxlY3RMYWJlbCBzcGFuIHtcblx0bGluZS1oZWlnaHQ6IDEwMCU7XG59XG4uZGpfaWUgLmRpaml0U2VsZWN0IC5kaWppdFNlbGVjdExhYmVsIHtcblx0bGluZS1oZWlnaHQ6IG5vcm1hbDtcbn1cbi5kal9pZTYgLmRpaml0U2VsZWN0IC5kaWppdFNlbGVjdExhYmVsLFxuLmRqX2llNyAuZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwsXG4uZGpfaWU4IC5kaWppdFNlbGVjdCAuZGlqaXRTZWxlY3RMYWJlbCxcbi5kal9pZXF1aXJrcyAuZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwsXG4uZGlqaXRTZWxlY3QgdGQsXG4uZGpfaWU2IC5kaWppdFNlbGVjdCBpbnB1dCxcbi5kal9pZXF1aXJrcyAuZGlqaXRTZWxlY3QgaW5wdXQsXG4uZGpfaWU2IC5kaWppdFNlbGVjdCAuZGlqaXRWYWxpZGF0aW9uQ29udGFpbmVyLFxuLmRqX2llNiAuZGlqaXRUZXh0Qm94IGlucHV0LFxuLmRqX2llNiBpbnB1dC5kaWppdFRleHRCb3gsXG4uZGpfaWVxdWlya3MgLmRpaml0VGV4dEJveCBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kal9pZXF1aXJrcyAuZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0QXJyb3dCdXR0b25Jbm5lcixcbi5kal9pZXF1aXJrcyAuZGlqaXRUZXh0Qm94IGlucHV0LmRpaml0U3Bpbm5lckJ1dHRvbklubmVyLFxuLmRqX2llcXVpcmtzIC5kaWppdFRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRqX2llcXVpcmtzIGlucHV0LmRpaml0VGV4dEJveCB7XG5cdGxpbmUtaGVpZ2h0OiAxMDAlOyAvKiBJRTcgcHJvYmxlbSB3aGVyZSB0aGUgaWNvbiBpcyB2ZXJ0aWNhbGx5IHdheSB0b28gbG93IHcvbyB0aGlzICovXG59XG4uZGpfYTExeSBpbnB1dC5kaWppdFZhbGlkYXRpb25Jbm5lcixcbi5kal9hMTF5IGlucHV0LmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdC8qIChpbiBoaWdoIGNvbnRyYXN0IG1vZGUpIHJldmVydCBydWxlcyBmcm9tIGFib3ZlIHNvIGNoYXJhY3RlciBkaXNwbGF5cyAqL1xuXHR0ZXh0LWluZGVudDogMCAhaW1wb3J0YW50O1xuXHR3aWR0aDogMWVtICFpbXBvcnRhbnQ7XG5cdCN0ZXh0LWFsaWduOiBsZWZ0ICFpbXBvcnRhbnQ7XG5cdGNvbG9yOiBibGFjayAhaW1wb3J0YW50O1xufVxuLmRpaml0VmFsaWRhdGlvblRleHRCb3hFcnJvciAuZGlqaXRWYWxpZGF0aW9uQ29udGFpbmVyIHtcblx0ZGlzcGxheTogaW5saW5lO1xuXHRjdXJzb3I6IGRlZmF1bHQ7XG59XG5cbi8qIENvbWJvQm94ICYgU3Bpbm5lciAqL1xuXG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGlqaXRDb21ib0JveCAuZGlqaXRBcnJvd0J1dHRvbkNvbnRhaW5lciB7XG5cdC8qIGRpdmlkaW5nIGxpbmUgYmV0d2VlbiBpbnB1dCBhcmVhIGFuZCB1cC9kb3duIGJ1dHRvbihzKSBmb3IgQ29tYm9Cb3ggYW5kIFNwaW5uZXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwIDAgMCAxcHggIWltcG9ydGFudDsgLyogIWltcG9ydGFudCBuZWVkZWQgZHVlIHRvIHdheXdhcmQgXCIudGhlbWUgLmRpaml0QnV0dG9uTm9kZVwiIHJ1bGVzICovXG59XG4uZGpfYTExeSAuZGlqaXRTZWxlY3QgLmRpaml0QXJyb3dCdXR0b25Db250YWluZXIsXG4uZGlqaXRUb29sYmFyIC5kaWppdENvbWJvQm94IC5kaWppdEFycm93QnV0dG9uQ29udGFpbmVyIHtcblx0Lyogb3ZlcnJpZGVzIGFib3ZlIHJ1bGUgcGx1cyBtaXJyb3ItaW1hZ2UgcnVsZSBpbiBkaWppdF9ydGwuY3NzIHRvIGhhdmUgbm8gZGl2aWRlciB3aGVuIENvbWJvQm94IGluIFRvb2xiYXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdENvbWJvQm94TWVudSB7XG5cdC8qIERyb3AgZG93biBtZW51IGlzIGltcGxlbWVudGVkIGFzIDx1bD4gPGxpLz4gPGxpLz4gLi4uIGJ1dCB3ZSBkb24ndCB3YW50IGNpcmNsZXMgYmVmb3JlIGVhY2ggaXRlbSAqL1xuXHRsaXN0LXN0eWxlLXR5cGU6IG5vbmU7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QnV0dG9uTm9kZSB7XG5cdC8qIGRpdmlkaW5nIGxpbmUgYmV0d2VlbiBpbnB1dCBhcmVhIGFuZCB1cC9kb3duIGJ1dHRvbihzKSBmb3IgQ29tYm9Cb3ggYW5kIFNwaW5uZXIgKi9cblx0Ym9yZGVyLXdpZHRoOiAwO1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdFNwaW5uZXIgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRCdXR0b25Ob2RlIHtcblx0Y2xlYXI6IGJvdGg7IC8qIElFIHdvcmthcm91bmQgKi9cbn1cblxuLmRqX2llIC5kaWppdFRvb2xiYXIgLmRpaml0Q29tYm9Cb3gge1xuXHQvKiBtYWtlIGNvbWJvYm94IGJ1dHRvbnMgYWxpZ24gcHJvcGVybHkgd2l0aCBvdGhlciBidXR0b25zIGluIGEgdG9vbGJhciAqL1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuXG4vKiBTcGlubmVyICovXG5cbi5kaWppdFRleHRCb3ggLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciB7XG5cdHdpZHRoOiAxZW07XG5cdHBvc2l0aW9uOiByZWxhdGl2ZSAhaW1wb3J0YW50O1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uSW5uZXIge1xuXHR3aWR0aDoxZW07XG5cdHZpc2liaWxpdHk6aGlkZGVuICFpbXBvcnRhbnQ7IC8qIGp1c3QgYSBzaXppbmcgZWxlbWVudCAqL1xuXHRvdmVyZmxvdy14OmhpZGRlbjtcbn1cbi5kaWppdENvbWJvQm94IC5kaWppdEJ1dHRvbk5vZGUsXG4uZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItd2lkdGg6IDA7XG59XG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRib3JkZXItd2lkdGg6IDBweCAhaW1wb3J0YW50O1xuXHRib3JkZXItc3R5bGU6IHNvbGlkICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRUZXh0Qm94IC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIsXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIGlucHV0IHtcblx0d2lkdGg6IDFlbSAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0bWFyZ2luOiAwIGF1dG8gIWltcG9ydGFudDsgLyogc2hvdWxkIGF1dG8tY2VudGVyICovXG59XG4uZGpfaWUgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRwYWRkaW5nLWxlZnQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdHBhZGRpbmctcmlnaHQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdG1hcmdpbi1sZWZ0OiAwLjNlbSAhaW1wb3J0YW50O1xuXHRtYXJnaW4tcmlnaHQ6IDAuM2VtICFpbXBvcnRhbnQ7XG5cdHdpZHRoOiAxLjRlbSAhaW1wb3J0YW50O1xufVxuLmRqX2llNyAuZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIgLmRpaml0SW5wdXRGaWVsZCB7XG5cdHBhZGRpbmctbGVmdDogMCAhaW1wb3J0YW50OyAvKiBtYW51YWxseSBjZW50ZXIgSU5QVVQ6IGNoYXJhY3RlciBpcyAuNWVtIGFuZCB0b3RhbCB3aWR0aCA9IDFlbSAqL1xuXHRwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG5cdHdpZHRoOiAxZW0gIWltcG9ydGFudDtcbn1cbi5kal9pZTYgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRtYXJnaW4tbGVmdDogMC4xZW0gIWltcG9ydGFudDtcblx0bWFyZ2luLXJpZ2h0OiAwLjFlbSAhaW1wb3J0YW50O1xuXHR3aWR0aDogMWVtICFpbXBvcnRhbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHRtYXJnaW4tbGVmdDogMCAhaW1wb3J0YW50O1xuXHRtYXJnaW4tcmlnaHQ6IDAgIWltcG9ydGFudDtcblx0d2lkdGg6IDJlbSAhaW1wb3J0YW50O1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEFycm93QnV0dG9uIHtcblx0Lyogbm90ZTogLmRpaml0SW5wdXRMYXlvdXRDb250YWluZXIgbWFrZXMgdGhpcyBydWxlIG92ZXJyaWRlIC5kaWppdEFycm93QnV0dG9uIHNldHRpbmdzXG5cdCAqIGZvciBkaWppdC5mb3JtLkJ1dHRvblxuXHQgKi9cblx0cGFkZGluZzogMDtcblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdHJpZ2h0OiAwO1xuXHRmbG9hdDogbm9uZTtcblx0aGVpZ2h0OiA1MCU7XG5cdHdpZHRoOiAxMDAlO1xuXHRib3R0b206IGF1dG87XG5cdGxlZnQ6IDA7XG5cdHJpZ2h0OiBhdXRvO1xufVxuLmRqX2llcXVpcmtzIC5kaWppdFNwaW5uZXIgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdHdpZHRoOiBhdXRvO1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciAuZGlqaXRBcnJvd0J1dHRvbiB7XG5cdG92ZXJmbG93OiB2aXNpYmxlICFpbXBvcnRhbnQ7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0RG93bkFycm93QnV0dG9uIHtcblx0dG9wOiA1MCU7XG5cdGJvcmRlci10b3Atd2lkdGg6IDFweCAhaW1wb3J0YW50O1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdFVwQXJyb3dCdXR0b24ge1xuXHQjYm90dG9tOiA1MCU7XHQvKiBvdGhlcndpc2UgKG9uIHNvbWUgbWFjaGluZXMpIHRvcCBhcnJvdyBpY29uIHRvbyBjbG9zZSB0byBzcGxpdHRlciBib3JkZXIgKElFNi83KSAqL1xuXHR0b3A6IDA7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHRtYXJnaW46IGF1dG87XG5cdG92ZXJmbG93LXg6IGhpZGRlbjtcblx0aGVpZ2h0OiAxMDAlICFpbXBvcnRhbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIHtcblx0aGVpZ2h0OiBhdXRvICFpbXBvcnRhbnQ7XG59XG4uZGlqaXRTcGlubmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIgLmRpaml0SW5wdXRGaWVsZCB7XG5cdC1tb3otdHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHQtbW96LXRyYW5zZm9ybS1vcmlnaW46IGNlbnRlciB0b3A7XG5cdC13ZWJraXQtdHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHQtd2Via2l0LXRyYW5zZm9ybS1vcmlnaW46IGNlbnRlciB0b3A7XG5cdC1vLXRyYW5zZm9ybTogc2NhbGUoMC41KTtcblx0LW8tdHJhbnNmb3JtLW9yaWdpbjogY2VudGVyIHRvcDtcblx0dHJhbnNmb3JtOiBzY2FsZSgwLjUpO1xuXHR0cmFuc2Zvcm0tb3JpZ2luOiBsZWZ0IHRvcDtcblx0cGFkZGluZy10b3A6IDA7XG5cdHBhZGRpbmctYm90dG9tOiAwO1xuXHRwYWRkaW5nLWxlZnQ6IDAgIWltcG9ydGFudDtcblx0cGFkZGluZy1yaWdodDogMCAhaW1wb3J0YW50O1xuXHR3aWR0aDogMTAwJTtcblx0dmlzaWJpbGl0eTogaGlkZGVuO1xufVxuLmRqX2llIC5kaWppdFNwaW5uZXIgLmRpaml0QXJyb3dCdXR0b25Jbm5lciAuZGlqaXRJbnB1dEZpZWxkIHtcblx0em9vbTogNTAlOyAvKiBlbXVsYXRlIHRyYW5zZm9ybTogc2NhbGUoMC41KSAqL1xufVxuLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIC5kaWppdEFycm93QnV0dG9uSW5uZXIge1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG4uZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QXJyb3dCdXR0b24ge1xuXHR3aWR0aDogMTAwJTtcbn1cbi5kal9pZXF1aXJrcyAuZGpfYTExeSAuZGlqaXRTcGlubmVyIC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIgLmRpaml0QXJyb3dCdXR0b24ge1xuXHR3aWR0aDogMWVtOyAvKiBtYXRjaGVzIC5kal9hMTF5IC5kaWppdFRleHRCb3ggLmRpaml0U3Bpbm5lckJ1dHRvbkNvbnRhaW5lciBydWxlIC0gMTAwJSBpcyB0aGUgd2hvbGUgc2NyZWVuIHdpZHRoIGluIHF1aXJrcyAqL1xufVxuLmRqX2ExMXkgLmRpaml0U3Bpbm5lciAuZGlqaXRBcnJvd0J1dHRvbklubmVyIC5kaWppdElucHV0RmllbGQge1xuXHR2ZXJ0aWNhbC1hbGlnbjp0b3A7XG5cdHZpc2liaWxpdHk6IHZpc2libGU7XG59XG4uZGpfYTExeSAuZGlqaXRTcGlubmVyQnV0dG9uQ29udGFpbmVyIHtcblx0d2lkdGg6IDFlbTtcbn1cblxuLyoqKipcblx0XHRkaWppdC5mb3JtLkNoZWNrQm94XG4gXHQgJlxuICBcdFx0ZGlqaXQuZm9ybS5SYWRpb0J1dHRvblxuICoqKiovXG5cbi5kaWppdENoZWNrQm94LFxuLmRpaml0UmFkaW8sXG4uZGlqaXRDaGVja0JveElucHV0IHtcblx0cGFkZGluZzogMDtcblx0Ym9yZGVyOiAwO1xuXHR3aWR0aDogMTZweDtcblx0aGVpZ2h0OiAxNnB4O1xuXHRiYWNrZ3JvdW5kLXBvc2l0aW9uOmNlbnRlciBjZW50ZXI7XG5cdGJhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLmRpaml0Q2hlY2tCb3ggaW5wdXQsXG4uZGlqaXRSYWRpbyBpbnB1dCB7XG5cdG1hcmdpbjogMDtcblx0cGFkZGluZzogMDtcblx0ZGlzcGxheTogYmxvY2s7XG59XG5cbi5kaWppdENoZWNrQm94SW5wdXQge1xuXHQvKiBwbGFjZSB0aGUgYWN0dWFsIGlucHV0IG9uIHRvcCwgYnV0IGludmlzaWJsZSAqL1xuXHRvcGFjaXR5OiAwO1xufVxuXG4uZGpfaWUgLmRpaml0Q2hlY2tCb3hJbnB1dCB7XG5cdGZpbHRlcjogYWxwaGEob3BhY2l0eT0wKTtcbn1cblxuLmRqX2ExMXkgLmRpaml0Q2hlY2tCb3gsXG4uZGpfYTExeSAuZGlqaXRSYWRpbyB7XG5cdC8qIGluIGExMXkgbW9kZSB3ZSBkaXNwbGF5IHRoZSBuYXRpdmUgY2hlY2tib3ggKG5vdCB0aGUgaWNvbiksIHNvIGRvbid0IHJlc3RyaWN0IHRoZSBzaXplICovXG5cdHdpZHRoOiBhdXRvICFpbXBvcnRhbnQ7XG5cdGhlaWdodDogYXV0byAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0Q2hlY2tCb3hJbnB1dCB7XG5cdG9wYWNpdHk6IDE7XG5cdGZpbHRlcjogbm9uZTtcblx0d2lkdGg6IGF1dG87XG5cdGhlaWdodDogYXV0bztcbn1cblxuLmRqX2ExMXkgLmRpaml0Rm9jdXNlZExhYmVsIHtcblx0LyogZm9yIGNoZWNrYm94ZXMgb3IgcmFkaW8gYnV0dG9ucyBpbiBoaWdoIGNvbnRyYXN0IG1vZGUsIHVzZSBib3JkZXIgcmF0aGVyIHRoYW4gb3V0bGluZSB0byBpbmRpY2F0ZSBmb2N1cyAob3V0bGluZSBkb2VzIG5vdCB3b3JrIGluIEZGKSovXG5cdGJvcmRlcjogMXB4IGRvdHRlZDtcblx0b3V0bGluZTogMHB4ICFpbXBvcnRhbnQ7XG59XG5cbi8qKioqXG5cdFx0ZGlqaXQuUHJvZ3Jlc3NCYXJcbiAqKioqL1xuXG4uZGlqaXRQcm9ncmVzc0JhciB7XG4gICAgei1pbmRleDogMDsgLyogc28gei1pbmRleCBzZXR0aW5ncyBiZWxvdyBoYXZlIG5vIGVmZmVjdCBvdXRzaWRlIG9mIHRoZSBQcm9ncmVzc0JhciAqL1xufVxuLmRpaml0UHJvZ3Jlc3NCYXJFbXB0eSB7XG5cdC8qIG91dGVyIGNvbnRhaW5lciBhbmQgYmFja2dyb3VuZCBvZiB0aGUgYmFyIHRoYXQncyBub3QgZmluaXNoZWQgeWV0Ki9cblx0cG9zaXRpb246cmVsYXRpdmU7b3ZlcmZsb3c6aGlkZGVuO1xuXHRib3JkZXI6MXB4IHNvbGlkIGJsYWNrOyBcdC8qIGExMXk6IGJvcmRlciBuZWNlc3NhcnkgZm9yIGhpZ2gtY29udHJhc3QgbW9kZSAqL1xuXHR6LWluZGV4OjA7XHRcdFx0LyogZXN0YWJsaXNoIGEgc3RhY2tpbmcgY29udGV4dCBmb3IgdGhpcyBwcm9ncmVzcyBiYXIgKi9cbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJGdWxsIHtcblx0Lyogb3V0ZXIgY29udGFpbmVyIGZvciBiYWNrZ3JvdW5kIG9mIGJhciB0aGF0IGlzIGZpbmlzaGVkICovXG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHRvdmVyZmxvdzpoaWRkZW47XG5cdHotaW5kZXg6LTE7XG5cdHRvcDowO1xuXHR3aWR0aDoxMDAlO1xufVxuLmRqX2llNiAuZGlqaXRQcm9ncmVzc0JhckZ1bGwge1xuXHRoZWlnaHQ6MS42ZW07XG59XG5cbi5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGlubmVyIGNvbnRhaW5lciBmb3IgZmluaXNoZWQgcG9ydGlvbiAqL1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHR0b3A6MDtcblx0bGVmdDowO1xuXHRib3R0b206MDtcblx0cmlnaHQ6MDtcblx0bWFyZ2luOjA7XG5cdHBhZGRpbmc6MDtcblx0d2lkdGg6IDEwMCU7ICAgIC8qIG5lZWRlZCBmb3IgSUUvcXVpcmtzICovXG5cdGhlaWdodDphdXRvO1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiNhYWE7XG5cdGJhY2tncm91bmQtYXR0YWNobWVudDogZml4ZWQ7XG59XG5cbi5kal9hMTF5IC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGExMXk6ICBUaGUgYm9yZGVyIHByb3ZpZGVzIHZpc2liaWxpdHkgaW4gaGlnaC1jb250cmFzdCBtb2RlICovXG5cdGJvcmRlci13aWR0aDoycHg7XG5cdGJvcmRlci1zdHlsZTpzb2xpZDtcblx0YmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4uZGpfaWU2IC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIHdpZHRoOmF1dG8gd29ya3MgaW4gSUU2IHdpdGggcG9zaXRpb246c3RhdGljIGJ1dCBub3QgcG9zaXRpb246YWJzb2x1dGUgKi9cblx0cG9zaXRpb246c3RhdGljO1xuXHQvKiBoZWlnaHQ6YXV0byBvciAxMDAlIGRvZXMgbm90IHdvcmsgaW4gSUU2ICovXG5cdGhlaWdodDoxLjZlbTtcbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJJbmRldGVybWluYXRlIC5kaWppdFByb2dyZXNzQmFyVGlsZSB7XG5cdC8qIGFuaW1hdGVkIGdpZiBmb3IgJ2luZGV0ZXJtaW5hdGUnIG1vZGUgKi9cbn1cblxuLmRpaml0UHJvZ3Jlc3NCYXJJbmRldGVybWluYXRlSGlnaENvbnRyYXN0SW1hZ2Uge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi5kal9hMTF5IC5kaWppdFByb2dyZXNzQmFySW5kZXRlcm1pbmF0ZSAuZGlqaXRQcm9ncmVzc0JhckluZGV0ZXJtaW5hdGVIaWdoQ29udHJhc3RJbWFnZSB7XG5cdGRpc3BsYXk6YmxvY2s7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHR0b3A6MDtcblx0Ym90dG9tOjA7XG5cdG1hcmdpbjowO1xuXHRwYWRkaW5nOjA7XG5cdHdpZHRoOjEwMCU7XG5cdGhlaWdodDphdXRvO1xufVxuXG4uZGlqaXRQcm9ncmVzc0JhckxhYmVsIHtcblx0ZGlzcGxheTpibG9jaztcblx0cG9zaXRpb246c3RhdGljO1xuXHR3aWR0aDoxMDAlO1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0YmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4vKioqKlxuXHRcdGRpaml0LlRvb2x0aXBcbiAqKioqL1xuXG4uZGlqaXRUb29sdGlwIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR6LWluZGV4OiAyMDAwO1xuXHRkaXNwbGF5OiBibG9jaztcblx0LyogbWFrZSB2aXNpYmxlIGJ1dCBvZmYgc2NyZWVuICovXG5cdGxlZnQ6IDA7XG5cdHRvcDogLTEwMDAwcHg7XG5cdG92ZXJmbG93OiB2aXNpYmxlO1xufVxuXG4uZGlqaXRUb29sdGlwQ29udGFpbmVyIHtcblx0Ym9yZGVyOiBzb2xpZCBibGFjayAycHg7XG5cdGJhY2tncm91bmQ6ICNiOGI1YjU7XG5cdGNvbG9yOiBibGFjaztcblx0Zm9udC1zaXplOiBzbWFsbDtcbn1cblxuLmRpaml0VG9vbHRpcEZvY3VzTm9kZSB7XG5cdHBhZGRpbmc6IDJweCAycHggMnB4IDJweDtcbn1cblxuLmRpaml0VG9vbHRpcENvbm5lY3RvciB7XG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcbn1cbi5kal9hMTF5IC5kaWppdFRvb2x0aXBDb25uZWN0b3Ige1xuXHRkaXNwbGF5OiBub25lO1x0Lyogd29uJ3Qgc2hvdyBiL2MgaXQncyBiYWNrZ3JvdW5kLWltYWdlOyBoaWRlIHRvIGF2b2lkIGJvcmRlciBnYXAgKi9cbn1cblxuLmRpaml0VG9vbHRpcERhdGEge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi8qIExheW91dCB3aWRnZXRzLiBUaGlzIGlzIGVzc2VudGlhbCBDU1MgdG8gbWFrZSBsYXlvdXQgd29yayAoaXQgaXNuJ3QgXCJzdHlsaW5nXCIgQ1NTKVxuICAgbWFrZSBzdXJlIHRoYXQgdGhlIHBvc2l0aW9uOmFic29sdXRlIGluIGRpaml0QWxpZ24qIG92ZXJyaWRlcyBvdGhlciBjbGFzc2VzICovXG5cbi5kaWppdExheW91dENvbnRhaW5lciB7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcblx0ZGlzcGxheTogYmxvY2s7XG5cdG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5kaWppdEFsaWduVG9wLFxuLmRpaml0QWxpZ25Cb3R0b20sXG4uZGlqaXRBbGlnbkxlZnQsXG4uZGlqaXRBbGlnblJpZ2h0IHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG5ib2R5IC5kaWppdEFsaWduQ2xpZW50IHsgcG9zaXRpb246IGFic29sdXRlOyB9XG5cbi8qXG4gKiBCb3JkZXJDb250YWluZXJcbiAqXG4gKiAuZGlqaXRCb3JkZXJDb250YWluZXIgaXMgYSBzdHlsaXplZCBsYXlvdXQgd2hlcmUgcGFuZXMgaGF2ZSBib3JkZXIgYW5kIG1hcmdpbi5cbiAqIC5kaWppdEJvcmRlckNvbnRhaW5lck5vR3V0dGVyIGlzIGEgcmF3IGxheW91dC5cbiAqL1xuLmRpaml0Qm9yZGVyQ29udGFpbmVyLCAuZGlqaXRCb3JkZXJDb250YWluZXJOb0d1dHRlciB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xuICAgIHotaW5kZXg6IDA7IC8qIHNvIHotaW5kZXggc2V0dGluZ3MgYmVsb3cgaGF2ZSBubyBlZmZlY3Qgb3V0c2lkZSBvZiB0aGUgQm9yZGVyQ29udGFpbmVyICovXG59XG5cbi5kaWppdEJvcmRlckNvbnRhaW5lclBhbmUsXG4uZGlqaXRCb3JkZXJDb250YWluZXJOb0d1dHRlclBhbmUge1xuXHRwb3NpdGlvbjogYWJzb2x1dGUgIWltcG9ydGFudDtcdC8qICFpbXBvcnRhbnQgdG8gb3ZlcnJpZGUgcG9zaXRpb246cmVsYXRpdmUgaW4gZGlqaXRUYWJDb250YWluZXIgZXRjLiAqL1xuXHR6LWluZGV4OiAyO1x0XHQvKiBhYm92ZSB0aGUgc3BsaXR0ZXJzIHNvIHRoYXQgb2ZmLWJ5LW9uZSBicm93c2VyIGVycm9ycyBkb24ndCBjb3ZlciB1cCBib3JkZXIgb2YgcGFuZSAqL1xufVxuXG4uZGlqaXRCb3JkZXJDb250YWluZXIgPiAuZGlqaXRUZXh0QXJlYSB7XG5cdC8qIE9uIFNhZmFyaSwgZm9yIFNpbXBsZVRleHRBcmVhIGluc2lkZSBhIEJvcmRlckNvbnRhaW5lcixcblx0XHRkb24ndCB3YW50IHRvIGRpc3BsYXkgdGhlIGdyaXAgdG8gcmVzaXplICovXG5cdHJlc2l6ZTogbm9uZTtcbn1cblxuLmRpaml0R3V0dGVyIHtcblx0LyogZ3V0dGVyIGlzIGp1c3QgYSBwbGFjZSBob2xkZXIgZm9yIGVtcHR5IHNwYWNlIGJldHdlZW4gcGFuZXMgaW4gQm9yZGVyQ29udGFpbmVyICovXG5cdHBvc2l0aW9uOiBhYnNvbHV0ZTtcblx0Zm9udC1zaXplOiAxcHg7XHRcdC8qIG5lZWRlZCBieSBJRTYgZXZlbiB0aG91Z2ggZGl2IGlzIGVtcHR5LCBvdGhlcndpc2UgZ29lcyB0byAxNXB4ICovXG59XG5cbi8qIFNwbGl0Q29udGFpbmVyXG5cblx0J1YnID09IGNvbnRhaW5lciB0aGF0IHNwbGl0cyB2ZXJ0aWNhbGx5ICh1cC9kb3duKVxuXHQnSCcgPSBob3Jpem9udGFsIChsZWZ0L3JpZ2h0KVxuKi9cblxuLmRpaml0U3BsaXR0ZXIge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdHotaW5kZXg6IDEwO1x0XHQvKiBhYm92ZSB0aGUgcGFuZXMgc28gdGhhdCBzcGxpdHRlciBmb2N1cyBpcyB2aXNpYmxlIG9uIEZGLCBzZWUgIzc1ODMqL1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuXHRib3JkZXItY29sb3I6IGdyYXk7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG5cdGJvcmRlci13aWR0aDogMDtcbn1cbi5kal9pZSAuZGlqaXRTcGxpdHRlciB7XG5cdHotaW5kZXg6IDE7XHQvKiBiZWhpbmQgdGhlIHBhbmVzIHNvIHRoYXQgcGFuZSBib3JkZXJzIGFyZW4ndCBvYnNjdXJlZCBzZWUgdGVzdF9HdWkuaHRtbC9bMTQzOTJdICovXG59XG5cbi5kaWppdFNwbGl0dGVyQWN0aXZlIHtcblx0ei1pbmRleDogMTEgIWltcG9ydGFudDtcbn1cblxuLmRpaml0U3BsaXR0ZXJDb3ZlciB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHR6LWluZGV4Oi0xO1xuXHR0b3A6MDtcblx0bGVmdDowO1xuXHR3aWR0aDoxMDAlO1xuXHRoZWlnaHQ6MTAwJTtcbn1cblxuLmRpaml0U3BsaXR0ZXJDb3ZlckFjdGl2ZSB7XG5cdHotaW5kZXg6MyAhaW1wb3J0YW50O1xufVxuXG4vKiAjNjk0NTogc3RvcCBtb3VzZSBldmVudHMgKi9cbi5kal9pZSAuZGlqaXRTcGxpdHRlckNvdmVyIHtcblx0YmFja2dyb3VuZDogd2hpdGU7XG5cdG9wYWNpdHk6IDA7XG59XG4uZGpfaWU2IC5kaWppdFNwbGl0dGVyQ292ZXIsXG4uZGpfaWU3IC5kaWppdFNwbGl0dGVyQ292ZXIsXG4uZGpfaWU4IC5kaWppdFNwbGl0dGVyQ292ZXIge1xuXHRmaWx0ZXI6IGFscGhhKG9wYWNpdHk9MCk7XG59XG5cbi5kaWppdFNwbGl0dGVySCB7XG5cdGhlaWdodDogN3B4O1xuXHRib3JkZXItdG9wOjFweDtcblx0Ym9yZGVyLWJvdHRvbToxcHg7XG5cdGN1cnNvcjogcm93LXJlc2l6ZTtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cbi5kaWppdFNwbGl0dGVyViB7XG5cdHdpZHRoOiA3cHg7XG5cdGJvcmRlci1sZWZ0OjFweDtcblx0Ym9yZGVyLXJpZ2h0OjFweDtcblx0Y3Vyc29yOiBjb2wtcmVzaXplO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0U3BsaXRDb250YWluZXIge1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uZGlqaXRTcGxpdFBhbmUge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJILFxuLmRpaml0U3BsaXRDb250YWluZXJTaXplclYge1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0Zm9udC1zaXplOiAxcHg7XG5cdGJhY2tncm91bmQtY29sb3I6IFRocmVlREZhY2U7XG5cdGJvcmRlcjogMXB4IHNvbGlkO1xuXHRib3JkZXItY29sb3I6IFRocmVlREhpZ2hsaWdodCBUaHJlZURTaGFkb3cgVGhyZWVEU2hhZG93IFRocmVlREhpZ2hsaWdodDtcblx0bWFyZ2luOiAwO1xufVxuXG4uZGlqaXRTcGxpdENvbnRhaW5lclNpemVySCAudGh1bWIsIC5kaWppdFNwbGl0dGVyViAuZGlqaXRTcGxpdHRlclRodW1iIHtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHRwb3NpdGlvbjphYnNvbHV0ZTtcblx0dG9wOjQ5JTtcbn1cblxuLmRpaml0U3BsaXRDb250YWluZXJTaXplclYgLnRodW1iLCAuZGlqaXRTcGxpdHRlckggLmRpaml0U3BsaXR0ZXJUaHVtYiB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHRsZWZ0OjQ5JTtcbn1cblxuLmRpaml0U3BsaXR0ZXJTaGFkb3csXG4uZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplckgsXG4uZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplclYge1xuXHRmb250LXNpemU6IDFweDtcblx0YmFja2dyb3VuZC1jb2xvcjogVGhyZWVEU2hhZG93O1xuXHQtbW96LW9wYWNpdHk6IDAuNTtcblx0b3BhY2l0eTogMC41O1xuXHRmaWx0ZXI6IEFscGhhKE9wYWNpdHk9NTApO1xuXHRtYXJnaW46IDA7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJILCAuZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplckgge1xuXHRjdXJzb3I6IGNvbC1yZXNpemU7XG59XG5cbi5kaWppdFNwbGl0Q29udGFpbmVyU2l6ZXJWLCAuZGlqaXRTcGxpdENvbnRhaW5lclZpcnR1YWxTaXplclYge1xuXHRjdXJzb3I6IHJvdy1yZXNpemU7XG59XG5cbi5kal9hMTF5IC5kaWppdFNwbGl0dGVySCB7XG5cdGJvcmRlci10b3A6MXB4IHNvbGlkICNkM2QzZDMgIWltcG9ydGFudDtcblx0Ym9yZGVyLWJvdHRvbToxcHggc29saWQgI2QzZDNkMyAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0U3BsaXR0ZXJWIHtcblx0Ym9yZGVyLWxlZnQ6MXB4IHNvbGlkICNkM2QzZDMgIWltcG9ydGFudDtcblx0Ym9yZGVyLXJpZ2h0OjFweCBzb2xpZCAjZDNkM2QzICFpbXBvcnRhbnQ7XG59XG5cbi8qIENvbnRlbnRQYW5lICovXG5cbi5kaWppdENvbnRlbnRQYW5lIHtcblx0ZGlzcGxheTogYmxvY2s7XG5cdG92ZXJmbG93OiBhdXRvO1x0LyogaWYgd2UgZG9uJ3QgaGF2ZSB0aGlzIChvciBvdmVyZmxvdzpoaWRkZW4pLCB0aGVuIFdpZGdldC5yZXNpemVUbygpIGRvZXNuJ3QgbWFrZSBzZW5zZSBmb3IgQ29udGVudFBhbmUgKi9cblx0LXdlYmtpdC1vdmVyZmxvdy1zY3JvbGxpbmc6IHRvdWNoO1xufVxuXG4uZGlqaXRDb250ZW50UGFuZVNpbmdsZUNoaWxkIHtcblx0Lypcblx0ICogaWYgdGhlIENvbnRlbnRQYW5lIGhvbGRzIGEgc2luZ2xlIGxheW91dCB3aWRnZXQgY2hpbGQgd2hpY2ggaXMgYmVpbmcgc2l6ZWQgdG8gbWF0Y2ggdGhlIGNvbnRlbnQgcGFuZSxcblx0ICogdGhlbiB0aGUgQ29udGVudFBhbmUgc2hvdWxkIG5ldmVyIGdldCBhIHNjcm9sbGJhciAoYnV0IGl0IGRvZXMgZHVlIHRvIGJyb3dzZXIgYnVncywgc2VlICM5NDQ5XG5cdCAqL1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuXG4uZGlqaXRDb250ZW50UGFuZUxvYWRpbmcgLmRpaml0SWNvbkxvYWRpbmcsXG4uZGlqaXRDb250ZW50UGFuZUVycm9yIC5kaWppdEljb25FcnJvciB7XG5cdG1hcmdpbi1yaWdodDogOXB4O1xufVxuXG4vKiBUaXRsZVBhbmUgYW5kIEZpZWxkc2V0ICovXG5cbi5kaWppdFRpdGxlUGFuZSB7XG5cdGRpc3BsYXk6IGJsb2NrO1xuXHRvdmVyZmxvdzogaGlkZGVuO1xufVxuLmRpaml0RmllbGRzZXQge1xuXHRib3JkZXI6IDFweCBzb2xpZCBncmF5O1xufVxuLmRpaml0VGl0bGVQYW5lVGl0bGUsIC5kaWppdEZpZWxkc2V0VGl0bGUge1xuXHRjdXJzb3I6IHBvaW50ZXI7XG5cdC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG4uZGlqaXRUaXRsZVBhbmVUaXRsZUZpeGVkT3BlbiwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZENsb3NlZCxcbi5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZE9wZW4sIC5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZENsb3NlZCB7XG5cdC8qIFRpdGxlUGFuZSBvciBGaWVsZHNldCB0aGF0IGNhbm5vdCBiZSB0b2dnbGVkICovXG5cdGN1cnNvcjogZGVmYXVsdDtcbn1cbi5kaWppdFRpdGxlUGFuZVRpdGxlICoge1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZUlubmVyLCAuZGlqaXRGaWVsZHNldCAuZGlqaXRBcnJvd05vZGVJbm5lciB7XG5cdC8qIG5vcm1hbGx5LCBoaWRlIGFycm93IHRleHQgaW4gZmF2b3Igb2YgaWNvbiAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRqX2ExMXkgLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZUlubmVyLCAuZGpfYTExeSAuZGlqaXRGaWVsZHNldCAuZGlqaXRBcnJvd05vZGVJbm5lciB7XG5cdC8qIC4uLiBleGNlcHQgaW4gYTExeSBtb2RlLCB0aGVuIHNob3cgdGV4dCBhcnJvdyAqL1xuXHRkaXNwbGF5OiBpbmxpbmU7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7XHRcdC8qIGJlY2F1c2UgLSBhbmQgKyBhcmUgZGlmZmVyZW50IHdpZHRocyAqL1xufVxuLmRqX2ExMXkgLmRpaml0VGl0bGVQYW5lIC5kaWppdEFycm93Tm9kZSwgLmRqX2ExMXkgLmRpaml0RmllbGRzZXQgLmRpaml0QXJyb3dOb2RlIHtcblx0LyogLi4uIGFuZCBoaWRlIGljb24gKFRPRE86IGp1c3QgcG9pbnQgZGlqaXRJY29uIGNsYXNzIG9uIHRoZSBpY29uLCBhbmQgaXQgaGlkZXMgYXV0b21hdGljYWxseSkgKi9cblx0ZGlzcGxheTogbm9uZTtcbn1cbi5kaWppdFRpdGxlUGFuZVRpdGxlRml4ZWRPcGVuIC5kaWppdEFycm93Tm9kZSwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZE9wZW4gLmRpaml0QXJyb3dOb2RlSW5uZXIsXG4uZGlqaXRUaXRsZVBhbmVUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZSwgLmRpaml0VGl0bGVQYW5lVGl0bGVGaXhlZENsb3NlZCAuZGlqaXRBcnJvd05vZGVJbm5lcixcbi5kaWppdEZpZWxkc2V0VGl0bGVGaXhlZE9wZW4gLmRpaml0QXJyb3dOb2RlLCAuZGlqaXRGaWVsZHNldFRpdGxlRml4ZWRPcGVuIC5kaWppdEFycm93Tm9kZUlubmVyLFxuLmRpaml0RmllbGRzZXRUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZSwgLmRpaml0RmllbGRzZXRUaXRsZUZpeGVkQ2xvc2VkIC5kaWppdEFycm93Tm9kZUlubmVyIHtcblx0LyogZG9uJ3Qgc2hvdyB0aGUgb3BlbiBjbG9zZSBpY29uIG9yIHRleHQgYXJyb3c7IGl0IG1ha2VzIHRoZSB1c2VyIHRoaW5rIHRoZSBwYW5lIGlzIGNsb3NhYmxlICovXG5cdGRpc3BsYXk6IG5vbmUgIWltcG9ydGFudDtcdC8qICFpbXBvcnRhbnQgdG8gb3ZlcnJpZGUgYWJvdmUgYTExeSBydWxlcyB0byBzaG93IHRleHQgYXJyb3cgKi9cbn1cblxuLmRqX2llNiAuZGlqaXRUaXRsZVBhbmVDb250ZW50T3V0ZXIsXG4uZGpfaWU2IC5kaWppdFRpdGxlUGFuZSAuZGlqaXRUaXRsZVBhbmVUaXRsZSB7XG5cdC8qIGZvcmNlIGhhc0xheW91dCB0byBlbnN1cmUgYm9yZGVycyBldGMsIHNob3cgdXAgKi9cblx0em9vbTogMTtcbn1cblxuLyogQ29sb3IgUGFsZXR0ZVxuICogU2l6ZXMgZGVzaWduZWQgc28gdGhhdCB0YWJsZSBjZWxsIHBvc2l0aW9ucyBtYXRjaCBpY29ucyBpbiB1bmRlcmx5aW5nIGltYWdlLFxuICogd2hpY2ggYXBwZWFyIGF0IDIweDIwIGludGVydmFscy5cbiAqL1xuXG4uZGlqaXRDb2xvclBhbGV0dGUge1xuXHRib3JkZXI6IDFweCBzb2xpZCAjOTk5O1xuXHRiYWNrZ3JvdW5kOiAjZmZmO1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG59XG5cbi5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUge1xuXHQvKiBUYWJsZSB0aGF0IGhvbGRzIHRoZSBwYWxldHRlIGNlbGxzLCBhbmQgb3ZlcmxheXMgaW1hZ2UgZmlsZSB3aXRoIGNvbG9yIHN3YXRjaGVzLlxuXHQgKiBwYWRkaW5nL21hcmdpbiB0byBhbGlnbiB0YWJsZSB3aXRoIGltYWdlLlxuXHQgKi9cblx0cGFkZGluZzogMnB4IDNweCAzcHggM3B4O1xuXHRwb3NpdGlvbjogcmVsYXRpdmU7XG5cdG92ZXJmbG93OiBoaWRkZW47XG5cdG91dGxpbmU6IDA7XG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG59XG4uZGpfaWU2IC5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUsXG4uZGpfaWU3IC5kaWppdENvbG9yUGFsZXR0ZSAuZGlqaXRQYWxldHRlVGFibGUsXG4uZGpfaWVxdWlya3MgLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVUYWJsZSB7XG5cdC8qIHVzaW5nIHBhZGRpbmcgYWJvdmUgc28gdGhhdCBmb2N1cyBib3JkZXIgaXNuJ3QgY3V0b2ZmIG9uIG1vei93ZWJraXQsXG5cdCAqIGJ1dCB1c2luZyBtYXJnaW4gb24gSUUgYmVjYXVzZSBwYWRkaW5nIGRvZXNuJ3Qgc2VlbSB0byB3b3JrXG5cdCAqL1xuXHRwYWRkaW5nOiAwO1xuXHRtYXJnaW46IDJweCAzcHggM3B4IDNweDtcbn1cblxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVDZWxsIHtcblx0LyogPHRkPiBpbiB0aGUgPHRhYmxlPiAqL1xuXHRmb250LXNpemU6IDFweDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcblx0dGV4dC1hbGlnbjogY2VudGVyO1xuXHRiYWNrZ3JvdW5kOiBub25lO1xufVxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVJbWcge1xuXHQvKiBDYWxsZWQgZGlqaXRQYWxldHRlSW1nIGZvciBiYWNrLWNvbXBhdCwgdGhpcyBhY3R1YWxseSB3cmFwcyB0aGUgY29sb3Igc3dhdGNoIHdpdGggYSBib3JkZXIgYW5kIHBhZGRpbmcgKi9cblx0cGFkZGluZzogMXB4O1x0XHQvKiB3aGl0ZSBhcmVhIGJldHdlZW4gZ3JheSBib3JkZXIgYW5kIGNvbG9yIHN3YXRjaCAqL1xuXHRib3JkZXI6IDFweCBzb2xpZCAjOTk5O1xuXHRtYXJnaW46IDJweCAxcHg7XG5cdGN1cnNvcjogZGVmYXVsdDtcblx0Zm9udC1zaXplOiAxcHg7XHRcdC8qIHByZXZlbnQgPHNwYW4+IGZyb20gZ2V0dGluZyBiaWdnZXIganVzdCB0byBob2xkIGEgY2hhcmFjdGVyICovXG59XG4uZGpfZ2Vja28gLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVJbWcge1xuXHRwYWRkaW5nLWJvdHRvbTogMDtcdC8qIHdvcmthcm91bmQgcmVuZGVyaW5nIGdsaXRjaCBvbiBGRiwgaXQgYWRkcyBhbiBleHRyYSBwaXhlbCBhdCB0aGUgYm90dG9tICovXG59XG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0Q29sb3JQYWxldHRlU3dhdGNoIHtcblx0LyogdGhlIGFjdHVhbCBwYXJ0IHdoZXJlIHRoZSBjb2xvciBpcyAqL1xuXHR3aWR0aDogMTRweDtcblx0aGVpZ2h0OiAxMnB4O1xufVxuLmRpaml0UGFsZXR0ZVRhYmxlIHRkIHtcblx0XHRwYWRkaW5nOiAwO1xufVxuLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVDZWxsOmhvdmVyIC5kaWppdFBhbGV0dGVJbWcge1xuXHQvKiBob3ZlcmVkIGNvbG9yIHN3YXRjaCAqL1xuXHRib3JkZXI6IDFweCBzb2xpZCAjMDAwO1xufVxuXG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZUNlbGw6YWN0aXZlIC5kaWppdFBhbGV0dGVJbWcsXG4uZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZVRhYmxlIC5kaWppdFBhbGV0dGVDZWxsU2VsZWN0ZWQgLmRpaml0UGFsZXR0ZUltZyB7XG5cdGJvcmRlcjogMnB4IHNvbGlkICMwMDA7XG5cdG1hcmdpbjogMXB4IDA7XHQvKiByZWR1Y2UgbWFyZ2luIHRvIGNvbXBlbnNhdGUgZm9yIGluY3JlYXNlZCBib3JkZXIgKi9cbn1cblxuXG4uZGpfYTExeSAuZGlqaXRDb2xvclBhbGV0dGUgLmRpaml0UGFsZXR0ZVRhYmxlLFxuLmRqX2ExMXkgLmRpaml0Q29sb3JQYWxldHRlIC5kaWppdFBhbGV0dGVUYWJsZSAqIHtcblx0LyogdGFibGUgY2VsbHMgYXJlIHRvIGNhdGNoIGV2ZW50cywgYnV0IHRoZSBzd2F0Y2hlcyBhcmUgaW4gdGhlIFBhbGV0dGVJbWcgYmVoaW5kIHRoZSB0YWJsZSAqL1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4vKiBBY2NvcmRpb25Db250YWluZXIgKi9cblxuLmRpaml0QWNjb3JkaW9uQ29udGFpbmVyIHtcblx0Ym9yZGVyOjFweCBzb2xpZCAjYjdiN2I3O1xuXHRib3JkZXItdG9wOjAgIWltcG9ydGFudDtcbn1cbi5kaWppdEFjY29yZGlvblRpdGxlIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0QWNjb3JkaW9uVGl0bGVTZWxlY3RlZCB7XG5cdGN1cnNvcjogZGVmYXVsdDtcbn1cblxuLyogaW1hZ2VzIG9mZiwgaGlnaC1jb250cmFzdCBtb2RlIHN0eWxlcyAqL1xuLmRpaml0QWNjb3JkaW9uVGl0bGUgLmFycm93VGV4dFVwLFxuLmRpaml0QWNjb3JkaW9uVGl0bGUgLmFycm93VGV4dERvd24ge1xuXHRkaXNwbGF5OiBub25lO1xuXHRmb250LXNpemU6IDAuNjVlbTtcblx0Zm9udC13ZWlnaHQ6IG5vcm1hbCAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZSAuYXJyb3dUZXh0VXAsXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZVNlbGVjdGVkIC5hcnJvd1RleHREb3duIHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGpfYTExeSAuZGlqaXRBY2NvcmRpb25UaXRsZVNlbGVjdGVkIC5hcnJvd1RleHRVcCB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cbi5kaWppdEFjY29yZGlvbkNoaWxkV3JhcHBlciB7XG5cdC8qIHRoaXMgaXMgdGhlIG5vZGUgd2hvc2UgaGVpZ2h0IGlzIGFkanVzdGVkICovXG5cdG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi8qIENhbGVuZGFyICovXG5cbi5kaWppdENhbGVuZGFyQ29udGFpbmVyIHRhYmxlIHtcblx0d2lkdGg6IGF1dG87XHQvKiBpbiBjYXNlIHVzZXIgaGFzIHNwZWNpZmllZCBhIHdpZHRoIGZvciB0aGUgVEFCTEUgbm9kZXMsIHNlZSAjMTA1NTMgKi9cblx0Y2xlYXI6IGJvdGg7ICAgIC8qIGNsZWFyIG1hcmdpbiBjcmVhdGVkIGZvciBsZWZ0L3JpZ2h0IG1vbnRoIGFycm93czsgbmVlZGVkIG9uIElFMTAgZm9yIENhbGVuZGFyTGl0ZSAqL1xufVxuLmRpaml0Q2FsZW5kYXJDb250YWluZXIgdGgsIC5kaWppdENhbGVuZGFyQ29udGFpbmVyIHRkIHtcblx0cGFkZGluZzogMDtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cblxuLmRpaml0Q2FsZW5kYXJNb250aENvbnRhaW5lciB7XG5cdHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5kaWppdENhbGVuZGFyRGVjcmVtZW50QXJyb3cge1xuXHRmbG9hdDogbGVmdDtcbn1cbi5kaWppdENhbGVuZGFySW5jcmVtZW50QXJyb3cge1xuXHRmbG9hdDogcmlnaHQ7XG59XG5cbi5kaWppdENhbGVuZGFyWWVhckxhYmVsIHtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwOyAgICAvKiBtYWtlIHN1cmUgcHJldmlvdXMsIGN1cnJlbnQsIGFuZCBuZXh0IHllYXIgYXBwZWFyIG9uIHNhbWUgcm93ICovXG59XG5cbi5kaWppdENhbGVuZGFyTmV4dFllYXIge1xuXHRtYXJnaW46MCAwIDAgMC41NWVtO1xufVxuXG4uZGlqaXRDYWxlbmRhclByZXZpb3VzWWVhciB7XG5cdG1hcmdpbjowIDAuNTVlbSAwIDA7XG59XG5cbi5kaWppdENhbGVuZGFySW5jcmVtZW50Q29udHJvbCB7XG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kaWppdENhbGVuZGFySW5jcmVtZW50Q29udHJvbCxcbi5kaWppdENhbGVuZGFyRGF0ZVRlbXBsYXRlLFxuLmRpaml0Q2FsZW5kYXJNb250aExhYmVsLFxuLmRpaml0Q2FsZW5kYXJQcmV2aW91c1llYXIsXG4uZGlqaXRDYWxlbmRhck5leHRZZWFyIHtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGlqaXRDYWxlbmRhckRpc2FibGVkRGF0ZSB7XG5cdGNvbG9yOiBncmF5O1xuXHR0ZXh0LWRlY29yYXRpb246IGxpbmUtdGhyb3VnaDtcblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4uZGlqaXRTcGFjZXIge1xuXHQvKiBkb24ndCBkaXNwbGF5IGl0LCBidXQgbWFrZSBpdCBhZmZlY3QgdGhlIHdpZHRoICovXG4gIFx0cG9zaXRpb246IHJlbGF0aXZlO1xuICBcdGhlaWdodDogMXB4O1xuICBcdG92ZXJmbG93OiBoaWRkZW47XG4gIFx0dmlzaWJpbGl0eTogaGlkZGVuO1xufVxuXG4vKiBTdHlsaW5nIGZvciBtb250aCBkcm9wIGRvd24gbGlzdCAqL1xuXG4uZGlqaXRDYWxlbmRhck1vbnRoTWVudSAuZGlqaXRDYWxlbmRhck1vbnRoTGFiZWwge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcbn1cblxuLyogTWVudSAqL1xuXG4uZGlqaXRNZW51IHtcblx0Ym9yZGVyOjFweCBzb2xpZCBibGFjaztcblx0YmFja2dyb3VuZC1jb2xvcjp3aGl0ZTtcbn1cbi5kaWppdE1lbnVUYWJsZSB7XG5cdGJvcmRlci1jb2xsYXBzZTpjb2xsYXBzZTtcblx0Ym9yZGVyLXdpZHRoOjA7XG5cdGJhY2tncm91bmQtY29sb3I6d2hpdGU7XG59XG5cbi8qIHdvcmthcm91bmQgZm9yIHdlYmtpdCBidWcgIzg0MjcsIHJlbW92ZSB0aGlzIHdoZW4gaXQgaXMgZml4ZWQgdXBzdHJlYW0gKi9cbi5kal93ZWJraXQgLmRpaml0TWVudVRhYmxlIHRkW2NvbHNwYW49XCIyXCJde1xuXHRib3JkZXItcmlnaHQ6aGlkZGVuO1xufVxuXG4uZGlqaXRNZW51SXRlbSB7XG5cdHRleHQtYWxpZ246IGxlZnQ7XG5cdHdoaXRlLXNwYWNlOiBub3dyYXA7XG5cdHBhZGRpbmc6LjFlbSAuMmVtO1xuXHRjdXJzb3I6cG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLypcbk5vIG5lZWQgdG8gc2hvdyBhIGZvY3VzIGJvcmRlciBzaW5jZSBpdCdzIG9idmlvdXMgZnJvbSB0aGUgc2hhZGluZywgYW5kIHRoZXJlJ3MgYSAuZGpfYTExeSAuZGlqaXRNZW51SXRlbVNlbGVjdGVkXG5ydWxlIGJlbG93IHRoYXQgaGFuZGxlcyB0aGUgaGlnaCBjb250cmFzdCBjYXNlIHdoZW4gdGhlcmUncyBubyBzaGFkaW5nLlxuSGlkaW5nIHRoZSBmb2N1cyBib3JkZXIgYWxzbyB3b3JrcyBhcm91bmQgd2Via2l0IGJ1ZyBodHRwczovL2NvZGUuZ29vZ2xlLmNvbS9wL2Nocm9taXVtL2lzc3Vlcy9kZXRhaWw/aWQ9MTI1Nzc5LlxuKi9cbi5kaWppdE1lbnVJdGVtOmZvY3VzIHtcblx0b3V0bGluZTogbm9uZVxufVxuXG4uZGlqaXRNZW51UGFzc2l2ZSAuZGlqaXRNZW51SXRlbUhvdmVyLFxuLmRpaml0TWVudUl0ZW1TZWxlY3RlZCB7XG5cdC8qXG5cdCAqIGRpaml0TWVudUl0ZW1Ib3ZlciByZWZlcnMgdG8gYWN0dWFsIG1vdXNlIG92ZXJcblx0ICogZGlqaXRNZW51SXRlbVNlbGVjdGVkIGlzIHVzZWQgYWZ0ZXIgYSBtZW51IGhhcyBiZWVuIFwiYWN0aXZhdGVkXCIgYnlcblx0ICogY2xpY2tpbmcgaXQsIHRhYmJpbmcgaW50byBpdCwgb3IgYmVpbmcgb3BlbmVkIGZyb20gYSBwYXJlbnQgbWVudSxcblx0ICogYW5kIGRlbm90ZXMgdGhhdCB0aGUgbWVudSBpdGVtIGhhcyBmb2N1cyBvciB0aGF0IGZvY3VzIGlzIG9uIGEgY2hpbGRcblx0ICogbWVudVxuXHQgKi9cblx0YmFja2dyb3VuZC1jb2xvcjpibGFjaztcblx0Y29sb3I6d2hpdGU7XG59XG5cbi5kaWppdE1lbnVJdGVtSWNvbiwgLmRpaml0TWVudUV4cGFuZCB7XG5cdGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG59XG5cbi5kaWppdE1lbnVJdGVtRGlzYWJsZWQgKiB7XG5cdC8qIGZvciBhIGRpc2FibGVkIG1lbnUgaXRlbSwganVzdCBzZXQgaXQgdG8gbW9zdGx5IHRyYW5zcGFyZW50ICovXG5cdG9wYWNpdHk6MC41O1xuXHRjdXJzb3I6ZGVmYXVsdDtcbn1cbi5kal9pZSAuZGpfYTExeSAuZGlqaXRNZW51SXRlbURpc2FibGVkLFxuLmRqX2llIC5kal9hMTF5IC5kaWppdE1lbnVJdGVtRGlzYWJsZWQgKixcbi5kal9pZSAuZGlqaXRNZW51SXRlbURpc2FibGVkICoge1xuXHRjb2xvcjogZ3JheTtcblx0ZmlsdGVyOiBhbHBoYShvcGFjaXR5PTM1KTtcbn1cblxuLmRpaml0TWVudUl0ZW1MYWJlbCB7XG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi5kal9hMTF5IC5kaWppdE1lbnVJdGVtU2VsZWN0ZWQge1xuXHRib3JkZXI6IDFweCBkb3R0ZWQgYmxhY2sgIWltcG9ydGFudDtcdC8qIGZvciAyLjAgdXNlIG91dGxpbmUgaW5zdGVhZCwgdG8gcHJldmVudCBqaXR0ZXIgKi9cbn1cblxuLmRqX2ExMXkgLmRpaml0TWVudUl0ZW1TZWxlY3RlZCAuZGlqaXRNZW51SXRlbUxhYmVsIHtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG59XG4uZGpfaWU4IC5kal9hMTF5IC5kaWppdE1lbnVJdGVtTGFiZWwge1xuXHRwb3NpdGlvbjpzdGF0aWM7XG59XG5cbi5kaWppdE1lbnVFeHBhbmRBMTF5IHtcblx0ZGlzcGxheTogbm9uZTtcbn1cbi5kal9hMTF5IC5kaWppdE1lbnVFeHBhbmRBMTF5IHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGlqaXRNZW51U2VwYXJhdG9yIHRkIHtcblx0Ym9yZGVyOiAwO1xuXHRwYWRkaW5nOiAwO1xufVxuXG4vKiBzZXBhcmF0b3IgY2FuIGJlIHR3byBwaXhlbHMgLS0gc2V0IGJvcmRlciBvZiBlaXRoZXIgb25lIHRvIDAgdG8gaGF2ZSBvbmx5IG9uZSAqL1xuLmRpaml0TWVudVNlcGFyYXRvclRvcCB7XG5cdGhlaWdodDogNTAlO1xuXHRtYXJnaW46IDA7XG5cdG1hcmdpbi10b3A6M3B4O1xuXHRmb250LXNpemU6IDFweDtcbn1cblxuLmRpaml0TWVudVNlcGFyYXRvckJvdHRvbSB7XG5cdGhlaWdodDogNTAlO1xuXHRtYXJnaW46IDA7XG5cdG1hcmdpbi1ib3R0b206M3B4O1xuXHRmb250LXNpemU6IDFweDtcbn1cblxuLyogQ2hlY2tlZE1lbnVJdGVtIGFuZCBSYWRpb01lbnVJdGVtICovXG4uZGlqaXRNZW51SXRlbUljb25DaGFyIHtcblx0ZGlzcGxheTogbm9uZTtcdFx0LyogZG9uJ3QgZGlzcGxheSBleGNlcHQgaW4gaGlnaCBjb250cmFzdCBtb2RlICovXG5cdHZpc2liaWxpdHk6IGhpZGRlbjtcdC8qIGZvciBoaWdoIGNvbnRyYXN0IG1vZGUgd2hlbiBtZW51aXRlbSBpcyB1bmNoZWNrZWQ6IGxlYXZlIHNwYWNlIGZvciB3aGVuIGl0IGlzIGNoZWNrZWQgKi9cbn1cbi5kal9hMTF5IC5kaWppdE1lbnVJdGVtSWNvbkNoYXIge1xuXHRkaXNwbGF5OiBpbmxpbmU7XHQvKiBkaXNwbGF5IGNoYXJhY3RlciBpbiBoaWdoIGNvbnRyYXN0IG1vZGUsIHNpbmNlIGljb24gZG9lc24ndCBzaG93ICovXG59XG4uZGlqaXRDaGVja2VkTWVudUl0ZW1DaGVja2VkIC5kaWppdE1lbnVJdGVtSWNvbkNoYXIsXG4uZGlqaXRSYWRpb01lbnVJdGVtQ2hlY2tlZCAuZGlqaXRNZW51SXRlbUljb25DaGFyIHtcblx0dmlzaWJpbGl0eTogdmlzaWJsZTsgLyogbWVudWl0ZW0gaXMgY2hlY2tlZCAqL1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdE1lbnVCYXIgLmRpaml0TWVudUl0ZW0ge1xuXHQvKiBzbyBib3R0b20gYm9yZGVyIG9mIE1lbnVCYXIgYXBwZWFycyBvbiBJRTcgaW4gaGlnaC1jb250cmFzdCBtb2RlICovXG5cdG1hcmdpbjogMDtcbn1cblxuLyogU3RhY2tDb250YWluZXIgKi9cblxuLmRpaml0U3RhY2tDb250cm9sbGVyIC5kaWppdFRvZ2dsZUJ1dHRvbkNoZWNrZWQgKiB7XG5cdGN1cnNvcjogZGVmYXVsdDtcdC8qIGJlY2F1c2UgcHJlc3NpbmcgaXQgaGFzIG5vIGVmZmVjdCAqL1xufVxuXG4vKioqXG5UYWJDb250YWluZXJcblxuTWFpbiBjbGFzcyBoaWVyYXJjaHk6XG5cbi5kaWppdFRhYkNvbnRhaW5lciAtIHRoZSB3aG9sZSBUYWJDb250YWluZXJcbiAgIC5kaWppdFRhYkNvbnRyb2xsZXIgLyAuZGlqaXRUYWJMaXN0Q29udGFpbmVyLXRvcCAtIHdyYXBwZXIgZm9yIHRhYiBidXR0b25zLCBzY3JvbGwgYnV0dG9uc1xuXHQgLmRpaml0VGFiTGlzdFdyYXBwZXIgLyAuZGlqaXRUYWJDb250YWluZXJUb3BTdHJpcCAtIG91dGVyIHdyYXBwZXIgZm9yIHRhYiBidXR0b25zIChub3JtYWwgd2lkdGgpXG5cdFx0Lm5vd3JhcFRhYlN0cmlwIC8gLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgLSBpbm5lciB3cmFwcGVyIGZvciB0YWIgYnV0dG9ucyAoNTBLIHdpZHRoKVxuICAgLmRpaml0VGFiUGFuZVdyYXBwZXIgLSB3cmFwcGVyIGZvciBjb250ZW50IHBhbmVzLCBoYXMgYWxsIGJvcmRlcnMgZXhjZXB0IHRoZSBvbmUgYmV0d2VlbiBjb250ZW50IGFuZCB0YWJzXG4qKiovXG5cbi5kaWppdFRhYkNvbnRhaW5lciB7XG4gICAgei1pbmRleDogMDsgLyogc28gei1pbmRleCBzZXR0aW5ncyBiZWxvdyBoYXZlIG5vIGVmZmVjdCBvdXRzaWRlIG9mIHRoZSBUYWJDb250YWluZXIgKi9cbiAgICBvdmVyZmxvdzogdmlzaWJsZTsgLyogcHJldmVudCBvZmYtYnktb25lLXBpeGVsIGVycm9ycyBmcm9tIGhpZGluZyBib3R0b20gYm9yZGVyIChvcHBvc2l0ZSB0YWIgbGFiZWxzKSAqL1xufVxuLmRqX2llNiAuZGlqaXRUYWJDb250YWluZXIge1xuICAgIC8qIHdvcmthcm91bmQgSUU2IHByb2JsZW0gd2hlbiB0YWxsIGNvbnRlbnQgb3ZlcmZsb3dzIFRhYkNvbnRhaW5lciwgc2VlIGVkaXRvci90ZXN0X0Z1bGxTY3JlZW4uaHRtbCAqL1xuICAgb3ZlcmZsb3c6IGhpZGRlbjtcblxufVxuLmRpaml0VGFiQ29udGFpbmVyTm9MYXlvdXQge1xuXHR3aWR0aDogMTAwJTtcdC8qIG90aGVyd2lzZSBTY3JvbGxpbmdUYWJDb250cm9sbGVyIGdvZXMgdG8gNTBLIHBpeGVscyB3aWRlICovXG59XG5cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzLFxuLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMsXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMsXG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIHtcbiAgICB6LWluZGV4OiAxO1xuXHRvdmVyZmxvdzogdmlzaWJsZSAhaW1wb3J0YW50OyAgLyogc28gdGFicyBjYW4gY292ZXIgdXAgYm9yZGVyIGFkamFjZW50IHRvIGNvbnRhaW5lciAqL1xufVxuXG4uZGlqaXRUYWJDb250cm9sbGVyIHtcbiAgICB6LWluZGV4OiAxO1xufVxuLmRpaml0VGFiQ29udGFpbmVyQm90dG9tLWNvbnRhaW5lcixcbi5kaWppdFRhYkNvbnRhaW5lclRvcC1jb250YWluZXIsXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LWNvbnRhaW5lcixcbi5kaWppdFRhYkNvbnRhaW5lclJpZ2h0LWNvbnRhaW5lciB7XG5cdHotaW5kZXg6MDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcblx0Ym9yZGVyOiAxcHggc29saWQgYmxhY2s7XG59XG4ubm93cmFwVGFiU3RyaXAge1xuXHR3aWR0aDogNTAwMDBweDtcblx0ZGlzcGxheTogYmxvY2s7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0OyAgLyoganVzdCBpbiBjYXNlIGFuY2VzdG9yIGhhcyBub24tc3RhbmRhcmQgc2V0dGluZyAqL1xuICAgIHotaW5kZXg6IDE7XG59XG4uZGlqaXRUYWJMaXN0V3JhcHBlciB7XG5cdG92ZXJmbG93OiBoaWRkZW47XG4gICAgei1pbmRleDogMTtcbn1cblxuLmRqX2ExMXkgLnRhYlN0cmlwQnV0dG9uIGltZyB7XG5cdC8qIGhpZGUgdGhlIGljb25zIChvciByYXRoZXIgdGhlIGVtcHR5IHNwYWNlIHdoZXJlIHRoZXkgbm9ybWFsbHkgYXBwZWFyKSBiZWNhdXNlIHRleHQgd2lsbCBhcHBlYXIgaW5zdGVhZCAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJUb3AtdGFicyB7XG5cdGJvcmRlci1ib3R0b206IDFweCBzb2xpZCBibGFjaztcbn1cbi5kaWppdFRhYkNvbnRhaW5lclRvcC1jb250YWluZXIge1xuXHRib3JkZXItdG9wOiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMge1xuXHRib3JkZXItcmlnaHQ6IDFweCBzb2xpZCBibGFjaztcblx0ZmxvYXQ6IGxlZnQ7ICAgIC8qIG5lZWRlZCBmb3IgSUU3IFJUTCBtb2RlICovXG59XG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LWNvbnRhaW5lciB7XG5cdGJvcmRlci1sZWZ0OiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJCb3R0b20tdGFicyB7XG5cdGJvcmRlci10b3A6IDFweCBzb2xpZCBibGFjaztcbn1cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS1jb250YWluZXIge1xuXHRib3JkZXItYm90dG9tOiAwO1xufVxuXG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIHtcblx0Ym9yZGVyLWxlZnQ6IDFweCBzb2xpZCBibGFjaztcblx0ZmxvYXQ6IGxlZnQ7ICAgIC8qIG5lZWRlZCBmb3IgSUU3IFJUTCBtb2RlICovXG59XG4uZGlqaXRUYWJDb250YWluZXJSaWdodC1jb250YWluZXIge1xuXHRib3JkZXItcmlnaHQ6IDA7XG59XG5cbmRpdi5kaWppdFRhYkRpc2FibGVkLCAuZGpfaWUgZGl2LmRpaml0VGFiRGlzYWJsZWQge1xuXHRjdXJzb3I6IGF1dG87XG59XG5cbi5kaWppdFRhYiB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRjdXJzb3I6cG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcblx0d2hpdGUtc3BhY2U6bm93cmFwO1xuXHR6LWluZGV4OjM7XG59XG4uZGlqaXRUYWIgKiB7XG5cdC8qIG1ha2UgdGFiIGljb25zIGFuZCBjbG9zZSBpY29uIGxpbmUgdXAgdy90ZXh0ICovXG5cdHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG4uZGlqaXRUYWJDaGVja2VkIHtcblx0Y3Vyc29yOiBkZWZhdWx0O1x0LyogYmVjYXVzZSBjbGlja2luZyB3aWxsIGhhdmUgbm8gZWZmZWN0ICovXG59XG5cbi5kaWppdFRhYkNvbnRhaW5lclRvcC10YWJzIC5kaWppdFRhYiB7XG5cdHRvcDogMXB4O1x0LyogdG8gb3ZlcmxhcCBib3JkZXIgb24gLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgKi9cbn1cbi5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzIC5kaWppdFRhYiB7XG5cdHRvcDogLTFweDtcdC8qIHRvIG92ZXJsYXAgYm9yZGVyIG9uIC5kaWppdFRhYkNvbnRhaW5lckJvdHRvbS10YWJzICovXG59XG4uZGlqaXRUYWJDb250YWluZXJMZWZ0LXRhYnMgLmRpaml0VGFiIHtcblx0bGVmdDogMXB4O1x0LyogdG8gb3ZlcmxhcCBib3JkZXIgb24gLmRpaml0VGFiQ29udGFpbmVyTGVmdC10YWJzICovXG59XG4uZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzIC5kaWppdFRhYiB7XG5cdGxlZnQ6IC0xcHg7XHQvKiB0byBvdmVybGFwIGJvcmRlciBvbiAuZGlqaXRUYWJDb250YWluZXJSaWdodC10YWJzICovXG59XG5cblxuLmRpaml0VGFiQ29udGFpbmVyVG9wLXRhYnMgLmRpaml0VGFiLFxuLmRpaml0VGFiQ29udGFpbmVyQm90dG9tLXRhYnMgLmRpaml0VGFiIHtcblx0LyogSW5saW5lLWJsb2NrICovXG5cdGRpc3BsYXk6aW5saW5lLWJsb2NrO1x0XHRcdC8qIHdlYmtpdCBhbmQgRkYzICovXG5cdCN6b29tOiAxOyAvKiBzZXQgaGFzTGF5b3V0OnRydWUgdG8gbWltaWMgaW5saW5lLWJsb2NrICovXG5cdCNkaXNwbGF5OmlubGluZTsgLyogZG9uJ3QgdXNlIC5kal9pZSBzaW5jZSB0aGF0IGluY3JlYXNlcyB0aGUgcHJpb3JpdHkgKi9cbn1cblxuLnRhYlN0cmlwQnV0dG9uIHtcblx0ei1pbmRleDogMTI7XG59XG5cbi5kaWppdFRhYkJ1dHRvbkRpc2FibGVkIC50YWJTdHJpcEJ1dHRvbiB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cblxuLmRpaml0VGFiQ2xvc2VCdXR0b24ge1xuXHRtYXJnaW4tbGVmdDogMWVtO1xufVxuXG4uZGlqaXRUYWJDbG9zZVRleHQge1xuXHRkaXNwbGF5Om5vbmU7XG59XG5cbi5kaWppdFRhYiAudGFiTGFiZWwge1xuXHQvKiBtYWtlIHN1cmUgdGFicyB3L2Nsb3NlIGJ1dHRvbiBhbmQgdy9vdXQgY2xvc2UgYnV0dG9uIGFyZSBzYW1lIGhlaWdodCwgZXZlbiB3L3NtYWxsICg8MTVweCkgZm9udC5cblx0ICogYXNzdW1lcyA8PTE1cHggaGVpZ2h0IGZvciBjbG9zZSBidXR0b24gaWNvbi5cblx0ICovXG5cdG1pbi1oZWlnaHQ6IDE1cHg7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cbi5kaWppdE5vSWNvbiB7XG5cdC8qIGFwcGxpZWQgdG8gPGltZz4vPHNwYW4+IG5vZGUgd2hlbiB0aGVyZSBpcyBubyBpY29uIHNwZWNpZmllZCAqL1xuXHRkaXNwbGF5OiBub25lO1xufVxuLmRqX2llNiAuZGlqaXRUYWIgLmRpaml0Tm9JY29uIHtcblx0LyogYmVjYXVzZSBtaW4taGVpZ2h0IChvbiAudGFiTGFiZWwsIGFib3ZlKSBkb2Vzbid0IHdvcmsgb24gSUU2ICovXG5cdGRpc3BsYXk6IGlubGluZTtcblx0aGVpZ2h0OiAxNXB4O1xuXHR3aWR0aDogMXB4O1xufVxuXG4vKiBpbWFnZXMgb2ZmLCBoaWdoLWNvbnRyYXN0IG1vZGUgc3R5bGVzICovXG5cbi5kal9hMTF5IC5kaWppdFRhYkNsb3NlQnV0dG9uIHtcblx0YmFja2dyb3VuZC1pbWFnZTogbm9uZSAhaW1wb3J0YW50O1xuXHR3aWR0aDogYXV0byAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6IGF1dG8gIWltcG9ydGFudDtcbn1cblxuLmRqX2ExMXkgLmRpaml0VGFiQ2xvc2VUZXh0IHtcblx0ZGlzcGxheTogaW5saW5lO1xufVxuXG4uZGlqaXRUYWJQYW5lLFxuLmRpaml0U3RhY2tDb250YWluZXItY2hpbGQsXG4uZGlqaXRBY2NvcmRpb25Db250YWluZXItY2hpbGQge1xuXHQvKiBjaGlsZHJlbiBvZiBUYWJDb250YWluZXIsIFN0YWNrQ29udGFpbmVyLCBhbmQgQWNjb3JkaW9uQ29udGFpbmVyIHNob3VsZG4ndCBoYXZlIGJvcmRlcnNcblx0ICogYi9jIGEgYm9yZGVyIGlzIGFscmVhZHkgdGhlcmUgZnJvbSB0aGUgVGFiQ29udGFpbmVyL1N0YWNrQ29udGFpbmVyL0FjY29yZGlvbkNvbnRhaW5lciBpdHNlbGYuXG5cdCAqL1xuICAgIGJvcmRlcjogbm9uZSAhaW1wb3J0YW50O1xufVxuXG4vKiBJbmxpbmVFZGl0Qm94ICovXG4uZGlqaXRJbmxpbmVFZGl0Qm94RGlzcGxheU1vZGUge1xuXHRib3JkZXI6IDFweCBzb2xpZCB0cmFuc3BhcmVudDtcdC8qIHNvIGtleWxpbmUgKGJvcmRlcikgb24gaG92ZXIgY2FuIGFwcGVhciB3aXRob3V0IHNjcmVlbiBqdW1wICovXG5cdGN1cnNvcjogdGV4dDtcbn1cblxuLmRqX2ExMXkgLmRpaml0SW5saW5lRWRpdEJveERpc3BsYXlNb2RlLFxuLmRqX2llNiAuZGlqaXRJbmxpbmVFZGl0Qm94RGlzcGxheU1vZGUge1xuXHQvKiBleGNlcHQgdGhhdCBJRTYgZG9lc24ndCBzdXBwb3J0IHRyYW5zcGFyZW50IGJvcmRlcnMsIG5vciBkb2VzIGhpZ2ggY29udHJhc3QgbW9kZSAqL1xuXHRib3JkZXI6IG5vbmU7XG59XG5cbi5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZUhvdmVyLFxuLmRqX2ExMXkgLmRpaml0SW5saW5lRWRpdEJveERpc3BsYXlNb2RlSG92ZXIsXG4uZGpfaWU2IC5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZUhvdmVyIHtcblx0LyogQW4gSW5saW5lRWRpdEJveCBpbiB2aWV3IG1vZGUgKGNsaWNrIHRoaXMgdG8gZWRpdCB0aGUgdGV4dCkgKi9cblx0YmFja2dyb3VuZC1jb2xvcjogI2UyZWJmMjtcblx0Ym9yZGVyOiBzb2xpZCAxcHggYmxhY2s7XG59XG5cbi5kaWppdElubGluZUVkaXRCb3hEaXNwbGF5TW9kZURpc2FibGVkIHtcblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4vKiBUcmVlICovXG4uZGlqaXRUcmVlIHtcblx0b3ZlcmZsb3c6IGF1dG87XHQvKiBmb3Igc2Nyb2xsYmFycyB3aGVuIFRyZWUgaGFzIGEgaGVpZ2h0IHNldHRpbmcsIGFuZCB0byBwcmV2ZW50IHdyYXBwaW5nIGFyb3VuZCBmbG9hdCBlbGVtZW50cywgc2VlICMxMTQ5MSAqL1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uZGlqaXRUcmVlQ29udGFpbmVyIHtcblx0ZmxvYXQ6IGxlZnQ7XHQvKiBmb3IgY29ycmVjdCBoaWdobGlnaHRpbmcgZHVyaW5nIGhvcml6b250YWwgc2Nyb2xsLCBzZWUgIzE2MTMyICovXG59XG5cbi5kaWppdFRyZWVJbmRlbnQge1xuXHQvKiBhbW91bnQgdG8gaW5kZW50IGVhY2ggdHJlZSBub2RlIChyZWxhdGl2ZSB0byBwYXJlbnQgbm9kZSkgKi9cblx0d2lkdGg6IDE5cHg7XG59XG5cbi5kaWppdFRyZWVSb3csIC5kaWppdFRyZWVDb250ZW50IHtcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcbn1cblxuLmRqX2llIC5kaWppdFRyZWVMYWJlbDpmb2N1cyB7XG5cdC8qIHdvcmthcm91bmQgSUU5IGJlaGF2aW9yIHdoZXJlIGRvd24gYXJyb3dpbmcgdGhyb3VnaCBUcmVlTm9kZXMgZG9lc24ndCBzaG93IGZvY3VzIG91dGxpbmUgKi9cblx0b3V0bGluZTogMXB4IGRvdHRlZCBibGFjaztcbn1cblxuLmRpaml0VHJlZVJvdyBpbWcge1xuXHQvKiBtYWtlIHRoZSBleHBhbmRvIGFuZCBmb2xkZXIgaWNvbnMgbGluZSB1cCB3aXRoIHRoZSBsYWJlbCAqL1xuXHR2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuXG4uZGlqaXRUcmVlQ29udGVudCB7XG4gICAgY3Vyc29yOiBkZWZhdWx0O1xufVxuXG4uZGlqaXRFeHBhbmRvVGV4dCB7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cbi5kal9hMTF5IC5kaWppdEV4cGFuZG9UZXh0IHtcblx0ZGlzcGxheTogaW5saW5lO1xuXHRwYWRkaW5nLWxlZnQ6IDEwcHg7XG5cdHBhZGRpbmctcmlnaHQ6IDEwcHg7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG5cdGJvcmRlci13aWR0aDogdGhpbjtcblx0Y3Vyc29yOiBwb2ludGVyO1xufVxuXG4uZGlqaXRUcmVlTGFiZWwge1xuXHRtYXJnaW46IDAgNHB4O1xufVxuXG4vKiBEaWFsb2cgKi9cblxuLmRpaml0RGlhbG9nIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHR6LWluZGV4OiA5OTk7XG5cdG92ZXJmbG93OiBoaWRkZW47XHQvKiBvdmVycmlkZSBvdmVyZmxvdzogYXV0bzsgZnJvbSBDb250ZW50UGFuZSB0byBtYWtlIGRyYWdnaW5nIHNtb290aGVyICovXG59XG5cbi5kaWppdERpYWxvZ1RpdGxlQmFyIHtcblx0Y3Vyc29yOiBtb3ZlO1xufVxuLmRpaml0RGlhbG9nRml4ZWQgLmRpaml0RGlhbG9nVGl0bGVCYXIge1xuXHRjdXJzb3I6ZGVmYXVsdDtcbn1cbi5kaWppdERpYWxvZ0Nsb3NlSWNvbiB7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cbi5kaWppdERpYWxvZ1BhbmVDb250ZW50IHtcblx0LXdlYmtpdC1vdmVyZmxvdy1zY3JvbGxpbmc6IHRvdWNoO1xufVxuLmRpaml0RGlhbG9nVW5kZXJsYXlXcmFwcGVyIHtcblx0cG9zaXRpb246IGFic29sdXRlO1xuXHRsZWZ0OiAwO1xuXHR0b3A6IDA7XG5cdHotaW5kZXg6IDk5ODtcblx0ZGlzcGxheTogbm9uZTtcblx0YmFja2dyb3VuZDogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbn1cblxuLmRpaml0RGlhbG9nVW5kZXJsYXkge1xuXHRiYWNrZ3JvdW5kOiAjZWVlO1xuXHRvcGFjaXR5OiAwLjU7XG59XG5cbi5kal9pZSAuZGlqaXREaWFsb2dVbmRlcmxheSB7XG5cdGZpbHRlcjogYWxwaGEob3BhY2l0eT01MCk7XG59XG5cbi8qIGltYWdlcyBvZmYsIGhpZ2gtY29udHJhc3QgbW9kZSBzdHlsZXMgKi9cbi5kal9hMTF5IC5kaWppdFNwaW5uZXJCdXR0b25Db250YWluZXIsXG4uZGpfYTExeSAuZGlqaXREaWFsb2cge1xuXHRvcGFjaXR5OiAxICFpbXBvcnRhbnQ7XG5cdGJhY2tncm91bmQtY29sb3I6IHdoaXRlICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdERpYWxvZyAuY2xvc2VUZXh0IHtcblx0ZGlzcGxheTpub25lO1xuXHQvKiBmb3IgdGhlIG9uaG92ZXIgYm9yZGVyIGluIGhpZ2ggY29udHJhc3Qgb24gSUU6ICovXG5cdHBvc2l0aW9uOmFic29sdXRlO1xufVxuXG4uZGpfYTExeSAuZGlqaXREaWFsb2cgLmNsb3NlVGV4dCB7XG5cdGRpc3BsYXk6aW5saW5lO1xufVxuXG4vKiBTbGlkZXIgKi9cblxuLmRpaml0U2xpZGVyTW92ZWFibGUge1xuXHR6LWluZGV4Ojk5O1xuXHRwb3NpdGlvbjphYnNvbHV0ZSAhaW1wb3J0YW50O1xuXHRkaXNwbGF5OmJsb2NrO1xuXHR2ZXJ0aWNhbC1hbGlnbjptaWRkbGU7XG59XG5cbi5kaWppdFNsaWRlck1vdmVhYmxlSCB7XG5cdHJpZ2h0OjA7XG59XG4uZGlqaXRTbGlkZXJNb3ZlYWJsZVYge1xuXHRyaWdodDo1MCU7XG59XG5cbi5kal9hMTF5IGRpdi5kaWppdFNsaWRlckltYWdlSGFuZGxlLFxuLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRtYXJnaW46MDtcblx0cGFkZGluZzowO1xuXHRwb3NpdGlvbjpyZWxhdGl2ZSAhaW1wb3J0YW50O1xuXHRib3JkZXI6OHB4IHNvbGlkIGdyYXk7XG5cdHdpZHRoOjA7XG5cdGhlaWdodDowO1xuXHRjdXJzb3I6IHBvaW50ZXI7XG5cdC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG4uZGpfaWVxdWlya3MgLmRqX2ExMXkgLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRmb250LXNpemU6IDA7XG59XG4uZGpfaWU3IC5kaWppdFNsaWRlckltYWdlSGFuZGxlIHtcblx0b3ZlcmZsb3c6IGhpZGRlbjsgLyogSUU3IHdvcmthcm91bmQgdG8gbWFrZSBzbGlkZXIgaGFuZGxlIFZJU0lCTEUgaW4gbm9uLWExMXkgbW9kZSAqL1xufVxuLmRqX2llNyAuZGpfYTExeSAuZGlqaXRTbGlkZXJJbWFnZUhhbmRsZSB7XG5cdG92ZXJmbG93OiB2aXNpYmxlOyAvKiBJRTcgd29ya2Fyb3VuZCB0byBtYWtlIHNsaWRlciBoYW5kbGUgVklTSUJMRSBpbiBhMTF5IG1vZGUgKi9cbn1cbi5kal9hMTF5IC5kaWppdFNsaWRlckZvY3VzZWQgLmRpaml0U2xpZGVySW1hZ2VIYW5kbGUge1xuXHRib3JkZXI6NHB4IHNvbGlkICMwMDA7XG5cdGhlaWdodDo4cHg7XG5cdHdpZHRoOjhweDtcbn1cblxuLmRpaml0U2xpZGVySW1hZ2VIYW5kbGVWIHtcblx0dG9wOi04cHg7XG5cdHJpZ2h0OiAtNTAlO1xufVxuXG4uZGlqaXRTbGlkZXJJbWFnZUhhbmRsZUgge1xuXHRsZWZ0OjUwJTtcblx0dG9wOi01cHg7XG5cdHZlcnRpY2FsLWFsaWduOnRvcDtcbn1cblxuLmRpaml0U2xpZGVyQmFyIHtcblx0Ym9yZGVyLXN0eWxlOnNvbGlkO1xuXHRib3JkZXItY29sb3I6YmxhY2s7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLmRpaml0U2xpZGVyQmFyQ29udGFpbmVyViB7XG5cdHBvc2l0aW9uOnJlbGF0aXZlO1xuXHRoZWlnaHQ6MTAwJTtcblx0ei1pbmRleDoxO1xufVxuXG4uZGlqaXRTbGlkZXJCYXJDb250YWluZXJIIHtcblx0cG9zaXRpb246cmVsYXRpdmU7XG5cdHotaW5kZXg6MTtcbn1cblxuLmRpaml0U2xpZGVyQmFySCB7XG5cdGhlaWdodDo0cHg7XG5cdGJvcmRlci13aWR0aDoxcHggMDtcbn1cblxuLmRpaml0U2xpZGVyQmFyViB7XG5cdHdpZHRoOjRweDtcblx0Ym9yZGVyLXdpZHRoOjAgMXB4O1xufVxuXG4uZGlqaXRTbGlkZXJQcm9ncmVzc0JhciB7XG5cdGJhY2tncm91bmQtY29sb3I6cmVkO1xuXHR6LWluZGV4OjE7XG59XG5cbi5kaWppdFNsaWRlclByb2dyZXNzQmFyViB7XG5cdHBvc2l0aW9uOnN0YXRpYyAhaW1wb3J0YW50O1xuXHRoZWlnaHQ6MDtcblx0dmVydGljYWwtYWxpZ246dG9wO1xuXHR0ZXh0LWFsaWduOmxlZnQ7XG59XG5cbi5kaWppdFNsaWRlclByb2dyZXNzQmFySCB7XG5cdHBvc2l0aW9uOmFic29sdXRlICFpbXBvcnRhbnQ7XG5cdHdpZHRoOjA7XG5cdHZlcnRpY2FsLWFsaWduOm1pZGRsZTtcblx0b3ZlcmZsb3c6dmlzaWJsZTtcbn1cblxuLmRpaml0U2xpZGVyUmVtYWluaW5nQmFyIHtcblx0b3ZlcmZsb3c6aGlkZGVuO1xuXHRiYWNrZ3JvdW5kLWNvbG9yOnRyYW5zcGFyZW50O1xuXHR6LWluZGV4OjE7XG59XG5cbi5kaWppdFNsaWRlclJlbWFpbmluZ0JhclYge1xuXHRoZWlnaHQ6MTAwJTtcblx0dGV4dC1hbGlnbjpsZWZ0O1xufVxuXG4uZGlqaXRTbGlkZXJSZW1haW5pbmdCYXJIIHtcblx0d2lkdGg6MTAwJSAhaW1wb3J0YW50O1xufVxuXG4vKiB0aGUgc2xpZGVyIGJ1bXBlciBpcyB0aGUgc3BhY2UgY29uc3VtZWQgYnkgdGhlIHNsaWRlciBoYW5kbGUgd2hlbiBpdCBoYW5ncyBvdmVyIGFuIGVkZ2UgKi9cbi5kaWppdFNsaWRlckJ1bXBlciB7XG5cdG92ZXJmbG93OmhpZGRlbjtcblx0ei1pbmRleDoxO1xufVxuXG4uZGlqaXRTbGlkZXJCdW1wZXJWIHtcblx0d2lkdGg6NHB4O1xuXHRoZWlnaHQ6OHB4O1xuXHRib3JkZXItd2lkdGg6MCAxcHg7XG59XG5cbi5kaWppdFNsaWRlckJ1bXBlckgge1xuXHR3aWR0aDo4cHg7XG5cdGhlaWdodDo0cHg7XG5cdGJvcmRlci13aWR0aDoxcHggMDtcbn1cblxuLmRpaml0U2xpZGVyQm90dG9tQnVtcGVyLFxuLmRpaml0U2xpZGVyTGVmdEJ1bXBlciB7XG5cdGJhY2tncm91bmQtY29sb3I6cmVkO1xufVxuXG4uZGlqaXRTbGlkZXJUb3BCdW1wZXIsXG4uZGlqaXRTbGlkZXJSaWdodEJ1bXBlciB7XG5cdGJhY2tncm91bmQtY29sb3I6dHJhbnNwYXJlbnQ7XG59XG5cbi5kaWppdFNsaWRlckRlY29yYXRpb24ge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvbkMsXG4uZGlqaXRTbGlkZXJEZWNvcmF0aW9uViB7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTsgLyogbmVlZGVkIGZvciBJRStxdWlya3MrUlRMK3ZlcnRpY2FsIChyZW5kZXJpbmcgYnVnKSBidXQgYWRkIGV2ZXJ5d2hlcmUgZm9yIGN1c3RvbSBzdHlsaW5nIGNvbnNpc3RlbmN5IGJ1dCB0aGlzIG1lc3NlcyB1cCBJRSBob3Jpem9udGFsIHNsaWRlcnMgKi9cbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvbkgge1xuXHR3aWR0aDogMTAwJTtcbn1cblxuLmRpaml0U2xpZGVyRGVjb3JhdGlvblYge1xuXHRoZWlnaHQ6IDEwMCU7XG5cdHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi5kaWppdFNsaWRlckJ1dHRvbiB7XG5cdGZvbnQtZmFtaWx5Om1vbm9zcGFjZTtcblx0bWFyZ2luOjA7XG5cdHBhZGRpbmc6MDtcblx0ZGlzcGxheTpibG9jaztcbn1cblxuLmRqX2ExMXkgLmRpaml0U2xpZGVyQnV0dG9uSW5uZXIge1xuXHR2aXNpYmlsaXR5OnZpc2libGUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0U2xpZGVyQnV0dG9uQ29udGFpbmVyIHtcblx0dGV4dC1hbGlnbjpjZW50ZXI7XG5cdGhlaWdodDowO1x0LyogPz8/ICovXG59XG4uZGlqaXRTbGlkZXJCdXR0b25Db250YWluZXIgKiB7XG5cdGN1cnNvcjogcG9pbnRlcjtcblx0LXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuLmRpaml0U2xpZGVyIC5kaWppdEJ1dHRvbk5vZGUge1xuXHRwYWRkaW5nOjA7XG5cdGRpc3BsYXk6YmxvY2s7XG59XG5cbi5kaWppdFJ1bGVDb250YWluZXIge1xuXHRwb3NpdGlvbjpyZWxhdGl2ZTtcblx0b3ZlcmZsb3c6dmlzaWJsZTtcbn1cblxuLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRoZWlnaHQ6MTAwJTtcblx0bGluZS1oZWlnaHQ6MDtcblx0ZmxvYXQ6bGVmdDtcblx0dGV4dC1hbGlnbjpsZWZ0O1xufVxuXG4uZGpfb3BlcmEgLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRsaW5lLWhlaWdodDoyJTtcbn1cblxuLmRqX2llIC5kaWppdFJ1bGVDb250YWluZXJWIHtcblx0bGluZS1oZWlnaHQ6bm9ybWFsO1xufVxuXG4uZGpfZ2Vja28gLmRpaml0UnVsZUNvbnRhaW5lclYge1xuXHRtYXJnaW46MCAwIDFweCAwOyAvKiBtb3ppbGxhIGJ1ZyB3b3JrYXJvdW5kIGZvciBmbG9hdDpsZWZ0LGhlaWdodDoxMDAlIGJsb2NrIGVsZW1lbnRzICovXG59XG5cbi5kaWppdFJ1bGVNYXJrIHtcblx0cG9zaXRpb246YWJzb2x1dGU7XG5cdGJvcmRlcjoxcHggc29saWQgYmxhY2s7XG5cdGxpbmUtaGVpZ2h0OjA7XG5cdGhlaWdodDoxMDAlO1xufVxuXG4uZGlqaXRSdWxlTWFya0gge1xuXHR3aWR0aDowO1xuXHRib3JkZXItdG9wLXdpZHRoOjAgIWltcG9ydGFudDtcblx0Ym9yZGVyLWJvdHRvbS13aWR0aDowICFpbXBvcnRhbnQ7XG5cdGJvcmRlci1sZWZ0LXdpZHRoOjAgIWltcG9ydGFudDtcbn1cblxuLmRpaml0UnVsZUxhYmVsQ29udGFpbmVyIHtcblx0cG9zaXRpb246YWJzb2x1dGU7XG59XG5cbi5kaWppdFJ1bGVMYWJlbENvbnRhaW5lckgge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0ZGlzcGxheTppbmxpbmUtYmxvY2s7XG59XG5cbi5kaWppdFJ1bGVMYWJlbEgge1xuXHRwb3NpdGlvbjpyZWxhdGl2ZTtcblx0bGVmdDotNTAlO1xufVxuXG4uZGlqaXRSdWxlTGFiZWxWIHtcblx0Lyogc28gdGhhdCBsb25nIGxhYmVscyBkb24ndCBvdmVyZmxvdyB0byBtdWx0aXBsZSByb3dzLCBvciBvdmVyd3JpdGUgc2xpZGVyIGl0c2VsZiAqL1xuXHR0ZXh0LW92ZXJmbG93OiBlbGxpcHNpcztcblx0d2hpdGUtc3BhY2U6IG5vd3JhcDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLmRpaml0UnVsZU1hcmtWIHtcblx0aGVpZ2h0OjA7XG5cdGJvcmRlci1yaWdodC13aWR0aDowICFpbXBvcnRhbnQ7XG5cdGJvcmRlci1ib3R0b20td2lkdGg6MCAhaW1wb3J0YW50O1xuXHRib3JkZXItbGVmdC13aWR0aDowICFpbXBvcnRhbnQ7XG5cdHdpZHRoOjEwMCU7XG5cdGxlZnQ6MDtcbn1cblxuLmRqX2llIC5kaWppdFJ1bGVMYWJlbENvbnRhaW5lclYge1xuXHRtYXJnaW4tdG9wOi0uNTVlbTtcbn1cblxuLmRqX2ExMXkgLmRpaml0U2xpZGVyUmVhZE9ubHksXG4uZGpfYTExeSAuZGlqaXRTbGlkZXJEaXNhYmxlZCB7XG5cdG9wYWNpdHk6MC42O1xufVxuLmRqX2llIC5kal9hMTF5IC5kaWppdFNsaWRlclJlYWRPbmx5IC5kaWppdFNsaWRlckJhcixcbi5kal9pZSAuZGpfYTExeSAuZGlqaXRTbGlkZXJEaXNhYmxlZCAuZGlqaXRTbGlkZXJCYXIge1xuXHRmaWx0ZXI6IGFscGhhKG9wYWNpdHk9NDApO1xufVxuXG4vKiArIGFuZCAtIFNsaWRlciBidXR0b25zOiBvdmVycmlkZSB0aGVtZSBzZXR0aW5ncyB0byBkaXNwbGF5IGljb25zICovXG4uZGpfYTExeSAuZGlqaXRTbGlkZXIgLmRpaml0U2xpZGVyQnV0dG9uQ29udGFpbmVyIGRpdiB7XG5cdGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7IC8qIG90aGVyd2lzZSBoeXBoZW4gaXMgbGFyZ2VyIGFuZCBtb3JlIHZlcnRpY2FsbHkgY2VudGVyZWQgKi9cblx0Zm9udC1zaXplOiAxZW07XG5cdGxpbmUtaGVpZ2h0OiAxZW07XG5cdGhlaWdodDogYXV0bztcblx0d2lkdGg6IGF1dG87XG5cdG1hcmdpbjogMCA0cHg7XG59XG5cbi8qIEljb24tb25seSBidXR0b25zIChvZnRlbiBpbiB0b29sYmFycykgc3RpbGwgZGlzcGxheSB0aGUgdGV4dCBpbiBoaWdoLWNvbnRyYXN0IG1vZGUgKi9cbi5kal9hMTF5IC5kaWppdEJ1dHRvbkNvbnRlbnRzIC5kaWppdEJ1dHRvblRleHQsXG4uZGpfYTExeSAuZGlqaXRUYWIgLnRhYkxhYmVsIHtcblx0ZGlzcGxheTogaW5saW5lICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uVGV4dCB7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jayAhaW1wb3J0YW50O1xufVxuXG4vKiBUZXh0QXJlYSwgU2ltcGxlVGV4dEFyZWEgKi9cbi5kaWppdFRleHRBcmVhIHtcblx0d2lkdGg6MTAwJTtcblx0b3ZlcmZsb3cteTogYXV0bztcdC8qIHcvb3V0IHRoaXMgSUUncyBTaW1wbGVUZXh0QXJlYSBnb2VzIHRvIG92ZXJmbG93OiBzY3JvbGwgKi9cbn1cbi5kaWppdFRleHRBcmVhW2NvbHNdIHtcblx0d2lkdGg6YXV0bzsgLyogU2ltcGxlVGV4dEFyZWEgY29scyAqL1xufVxuLmRqX2llIC5kaWppdFRleHRBcmVhQ29scyB7XG5cdHdpZHRoOmF1dG87XG59XG5cbi5kaWppdEV4cGFuZGluZ1RleHRBcmVhIHtcblx0LyogZm9yIGF1dG8gZXhhbmRpbmcgdGV4dGFyZWEgKGNhbGxlZCBUZXh0YXJlYSBjdXJyZW50bHksIHJlbmFtZSBmb3IgMi4wKSBkb24ndCB3YW50IHRvIGRpc3BsYXkgdGhlIGdyaXAgdG8gcmVzaXplICovXG5cdHJlc2l6ZTogbm9uZTtcbn1cblxuXG4vKiBUb29sYmFyXG4gKiBOb3RlIHRoYXQgb3RoZXIgdG9vbGJhciBydWxlcyAoZm9yIG9iamVjdHMgaW4gdG9vbGJhcnMpIGFyZSBzY2F0dGVyZWQgdGhyb3VnaG91dCB0aGlzIGZpbGUuXG4gKi9cblxuLmRpaml0VG9vbGJhclNlcGFyYXRvciB7XG5cdGhlaWdodDogMThweDtcblx0d2lkdGg6IDVweDtcblx0cGFkZGluZzogMCAxcHg7XG5cdG1hcmdpbjogMDtcbn1cblxuLyogRWRpdG9yICovXG4uZGlqaXRJRUZpeGVkVG9vbGJhciB7XG5cdHBvc2l0aW9uOmFic29sdXRlO1xuXHQvKiB0b3A6MDsgKi9cblx0dG9wOiBleHByZXNzaW9uKGV2YWwoKGRvY3VtZW50LmRvY3VtZW50RWxlbWVudHx8ZG9jdW1lbnQuYm9keSkuc2Nyb2xsVG9wKSk7XG59XG5cbi5kaWppdEVkaXRvciB7XG5cdGRpc3BsYXk6IGJsb2NrO1x0LyogcHJldmVudHMgZ2xpdGNoIG9uIEZGIHdpdGggSW5saW5lRWRpdEJveCwgc2VlICM4NDA0ICovXG59XG5cbi5kaWppdEVkaXRvckRpc2FibGVkLFxuLmRpaml0RWRpdG9yUmVhZE9ubHkge1xuXHRjb2xvcjogZ3JheTtcbn1cblxuLyogVGltZVBpY2tlciAqL1xuXG4uZGlqaXRUaW1lUGlja2VyIHtcblx0YmFja2dyb3VuZC1jb2xvcjogd2hpdGU7XG59XG4uZGlqaXRUaW1lUGlja2VySXRlbSB7XG5cdGN1cnNvcjpwb2ludGVyO1xuXHQtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuLmRpaml0VGltZVBpY2tlckl0ZW1Ib3ZlciB7XG5cdGJhY2tncm91bmQtY29sb3I6Z3JheTtcblx0Y29sb3I6d2hpdGU7XG59XG4uZGlqaXRUaW1lUGlja2VySXRlbVNlbGVjdGVkIHtcblx0Zm9udC13ZWlnaHQ6Ym9sZDtcblx0Y29sb3I6IzMzMztcblx0YmFja2dyb3VuZC1jb2xvcjojYjdjZGVlO1xufVxuLmRpaml0VGltZVBpY2tlckl0ZW1EaXNhYmxlZCB7XG5cdGNvbG9yOmdyYXk7XG5cdHRleHQtZGVjb3JhdGlvbjpsaW5lLXRocm91Z2g7XG59XG5cbi5kaWppdFRpbWVQaWNrZXJJdGVtSW5uZXIge1xuXHR0ZXh0LWFsaWduOmNlbnRlcjtcblx0Ym9yZGVyOjA7XG5cdHBhZGRpbmc6MnB4IDhweCAycHggOHB4O1xufVxuXG4uZGlqaXRUaW1lUGlja2VyVGljayxcbi5kaWppdFRpbWVQaWNrZXJNYXJrZXIge1xuXHRib3JkZXItYm90dG9tOjFweCBzb2xpZCBncmF5O1xufVxuXG4uZGlqaXRUaW1lUGlja2VyIC5kaWppdERvd25BcnJvd0J1dHRvbiB7XG5cdGJvcmRlci10b3A6IG5vbmUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0VGltZVBpY2tlclRpY2sge1xuXHRjb2xvcjojQ0NDO1xufVxuXG4uZGlqaXRUaW1lUGlja2VyTWFya2VyIHtcblx0Y29sb3I6YmxhY2s7XG5cdGJhY2tncm91bmQtY29sb3I6I0NDQztcbn1cblxuLmRqX2ExMXkgLmRpaml0VGltZVBpY2tlckl0ZW1TZWxlY3RlZCAuZGlqaXRUaW1lUGlja2VySXRlbUlubmVyIHtcblx0Ym9yZGVyOiBzb2xpZCA0cHggYmxhY2s7XG59XG4uZGpfYTExeSAuZGlqaXRUaW1lUGlja2VySXRlbUhvdmVyIC5kaWppdFRpbWVQaWNrZXJJdGVtSW5uZXIge1xuXHRib3JkZXI6IGRhc2hlZCA0cHggYmxhY2s7XG59XG5cblxuLmRpaml0VG9nZ2xlQnV0dG9uSWNvbkNoYXIge1xuXHQvKiBjaGFyYWN0ZXIgKGluc3RlYWQgb2YgaWNvbikgdG8gc2hvdyB0aGF0IFRvZ2dsZUJ1dHRvbiBpcyBjaGVja2VkICovXG5cdGRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O1xufVxuLmRqX2ExMXkgLmRpaml0VG9nZ2xlQnV0dG9uIC5kaWppdFRvZ2dsZUJ1dHRvbkljb25DaGFyIHtcblx0ZGlzcGxheTppbmxpbmUgIWltcG9ydGFudDtcblx0dmlzaWJpbGl0eTpoaWRkZW47XG59XG4uZGpfaWU2IC5kaWppdFRvZ2dsZUJ1dHRvbkljb25DaGFyLCAuZGpfaWU2IC50YWJTdHJpcEJ1dHRvbiAuZGlqaXRCdXR0b25UZXh0IHtcblx0Zm9udC1mYW1pbHk6IFwiQXJpYWwgVW5pY29kZSBNU1wiO1x0Lyogb3RoZXJ3aXNlIHRoZSBhMTF5IGNoYXJhY3RlciAoY2hlY2ttYXJrLCBhcnJvdywgZXRjLikgYXBwZWFycyBhcyBhIGJveCAqL1xufVxuLmRqX2ExMXkgLmRpaml0VG9nZ2xlQnV0dG9uQ2hlY2tlZCAuZGlqaXRUb2dnbGVCdXR0b25JY29uQ2hhciB7XG5cdGRpc3BsYXk6IGlubGluZSAhaW1wb3J0YW50OyAvKiBJbiBoaWdoIGNvbnRyYXN0IG1vZGUsIGRpc3BsYXkgdGhlIGNoZWNrIHN5bWJvbCAqL1xuXHR2aXNpYmlsaXR5OnZpc2libGUgIWltcG9ydGFudDtcbn1cblxuLmRpaml0QXJyb3dCdXR0b25DaGFyIHtcblx0ZGlzcGxheTpub25lICFpbXBvcnRhbnQ7XG59XG4uZGpfYTExeSAuZGlqaXRBcnJvd0J1dHRvbkNoYXIge1xuXHRkaXNwbGF5OmlubGluZSAhaW1wb3J0YW50O1xufVxuXG4uZGpfYTExeSAuZGlqaXREcm9wRG93bkJ1dHRvbiAuZGlqaXRBcnJvd0J1dHRvbklubmVyLFxuLmRqX2ExMXkgLmRpaml0Q29tYm9CdXR0b24gLmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdGRpc3BsYXk6bm9uZSAhaW1wb3J0YW50O1xufVxuXG4vKiBTZWxlY3QgKi9cbi5kal9hMTF5IC5kaWppdFNlbGVjdCB7XG5cdGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGUgIWltcG9ydGFudDtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG5cdGJvcmRlci1zdHlsZTogc29saWQ7XG59XG4uZGpfaWUgLmRpaml0U2VsZWN0IHtcblx0dmVydGljYWwtYWxpZ246IG1pZGRsZTsgLyogU2V0IHRoaXMgYmFjayBmb3Igd2hhdCB3ZSBoYWNrIGluIGRpaml0IGlubGluZSAqL1xufVxuLmRqX2llNiAuZGlqaXRTZWxlY3QgLmRpaml0VmFsaWRhdGlvbkNvbnRhaW5lcixcbi5kal9pZTggLmRpaml0U2VsZWN0IC5kaWppdEJ1dHRvblRleHQge1xuXHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuLmRqX2llNiAuZGlqaXRUZXh0Qm94IC5kaWppdElucHV0Q29udGFpbmVyLFxuLmRqX2llcXVpcmtzIC5kaWppdFRleHRCb3ggLmRpaml0SW5wdXRDb250YWluZXIsXG4uZGpfaWU2IC5kaWppdFRleHRCb3ggLmRpaml0QXJyb3dCdXR0b25Jbm5lcixcbi5kal9pZTYgLmRpaml0U3Bpbm5lciAuZGlqaXRTcGlubmVyQnV0dG9uSW5uZXIsXG4uZGlqaXRTZWxlY3QgLmRpaml0U2VsZWN0TGFiZWwge1xuXHR2ZXJ0aWNhbC1hbGlnbjogYmFzZWxpbmU7XG59XG5cbi5kaWppdE51bWJlclRleHRCb3gge1xuXHR0ZXh0LWFsaWduOiBsZWZ0O1xuXHRkaXJlY3Rpb246IGx0cjtcbn1cblxuLmRpaml0TnVtYmVyVGV4dEJveCAuZGlqaXRJbnB1dElubmVyIHtcblx0dGV4dC1hbGlnbjogaW5oZXJpdDsgLyogaW5wdXQgKi9cbn1cblxuLmRpaml0TnVtYmVyVGV4dEJveCBpbnB1dC5kaWppdElucHV0SW5uZXIsXG4uZGlqaXRDdXJyZW5jeVRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRpaml0U3Bpbm5lciBpbnB1dC5kaWppdElucHV0SW5uZXIge1xuXHR0ZXh0LWFsaWduOiByaWdodDtcbn1cblxuLmRqX2llOCAuZGlqaXROdW1iZXJUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXROdW1iZXJUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lcixcbi5kal9pZTggLmRpaml0Q3VycmVuY3lUZXh0Qm94IGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXRDdXJyZW5jeVRleHRCb3ggaW5wdXQuZGlqaXRJbnB1dElubmVyLFxuLmRqX2llOCAuZGlqaXRTcGlubmVyIGlucHV0LmRpaml0SW5wdXRJbm5lciwgLmRqX2llOSAuZGlqaXRTcGlubmVyIGlucHV0LmRpaml0SW5wdXRJbm5lciB7XG5cdC8qIHdvcmthcm91bmQgYnVnIHdoZXJlIGNhcmV0IGludmlzaWJsZSBpbiBlbXB0eSB0ZXh0Ym94ZXMgKi9cblx0cGFkZGluZy1yaWdodDogMXB4ICFpbXBvcnRhbnQ7XG59XG5cbi5kaWppdFRvb2xiYXIgLmRpaml0U2VsZWN0IHtcblx0bWFyZ2luOiAwO1xufVxuLmRqX3dlYmtpdCAuZGlqaXRUb29sYmFyIC5kaWppdFNlbGVjdCB7XG5cdHBhZGRpbmctbGVmdDogMC4zZW07XG59XG4uZGlqaXRTZWxlY3QgLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHRwYWRkaW5nOiAwO1xuXHR3aGl0ZS1zcGFjZTogbm93cmFwO1xuXHR0ZXh0LWFsaWduOiBsZWZ0O1xuXHRib3JkZXItc3R5bGU6IG5vbmUgc29saWQgbm9uZSBub25lO1xuXHRib3JkZXItd2lkdGg6IDFweDtcbn1cbi5kaWppdFNlbGVjdEZpeGVkV2lkdGggLmRpaml0QnV0dG9uQ29udGVudHMge1xuXHR3aWR0aDogMTAwJTtcbn1cblxuLmRpaml0U2VsZWN0TWVudSAuZGlqaXRNZW51SXRlbUljb24ge1xuXHQvKiBhdm9pZCBibGFuayBhcmVhIGluIGxlZnQgc2lkZSBvZiBtZW51IChzaW5jZSB3ZSBoYXZlIG5vIGljb25zKSAqL1xuXHRkaXNwbGF5Om5vbmU7XG59XG4uZGpfaWU2IC5kaWppdFNlbGVjdE1lbnUgLmRpaml0TWVudUl0ZW1MYWJlbCxcbi5kal9pZTcgLmRpaml0U2VsZWN0TWVudSAuZGlqaXRNZW51SXRlbUxhYmVsIHtcblx0LyogU2V0IGJhY2sgdG8gc3RhdGljIGR1ZSB0byBidWcgaW4gaWU2L2llNyAtIFNlZSBCdWcgIzk2NTEgKi9cblx0cG9zaXRpb246IHN0YXRpYztcbn1cblxuLyogRml4IHRoZSBiYXNlbGluZSBvZiBvdXIgbGFiZWwgKGZvciBtdWx0aS1zaXplIGZvbnQgZWxlbWVudHMpICovXG4uZGlqaXRTZWxlY3RMYWJlbCAqXG57XG5cdHZlcnRpY2FsLWFsaWduOiBiYXNlbGluZTtcbn1cblxuLyogU3R5bGluZyBmb3IgdGhlIGN1cnJlbnRseS1zZWxlY3RlZCBvcHRpb24gKHJpY2ggdGV4dCBjYW4gbWVzcyB0aGlzIHVwKSAqL1xuLmRpaml0U2VsZWN0U2VsZWN0ZWRPcHRpb24gKiB7XG5cdGZvbnQtd2VpZ2h0OiBib2xkO1xufVxuXG4vKiBGaXggdGhlIHN0eWxpbmcgb2YgdGhlIGRyb3Bkb3duIG1lbnUgdG8gYmUgbW9yZSBjb21ib2JveC1saWtlICovXG4uZGlqaXRTZWxlY3RNZW51IHtcblx0Ym9yZGVyLXdpZHRoOiAxcHg7XG59XG5cbi8qIFVzZWQgaW4gY2FzZXMsIHN1Y2ggYXMgRnVsbFNjcmVlbiBwbHVnaW4sIHdoZW4gd2UgbmVlZCB0byBmb3JjZSBzdHVmZiB0byBzdGF0aWMgcG9zaXRpb25pbmcuICovXG4uZGlqaXRGb3JjZVN0YXRpYyB7XG5cdHBvc2l0aW9uOiBzdGF0aWMgIWltcG9ydGFudDtcbn1cblxuLyoqKiogRGlzYWJsZWQgY3Vyc29yICoqKioqL1xuLmRpaml0UmVhZE9ubHkgKixcbi5kaWppdERpc2FibGVkICosXG4uZGlqaXRSZWFkT25seSxcbi5kaWppdERpc2FibGVkIHtcblx0LyogYSByZWdpb24gdGhlIHVzZXIgd291bGQgYmUgYWJsZSB0byBjbGljayBvbiwgYnV0IGl0J3MgZGlzYWJsZWQgKi9cblx0Y3Vyc29yOiBkZWZhdWx0O1xufVxuXG4vKiBEcmFnIGFuZCBEcm9wICovXG4uZG9qb0RuZEl0ZW0ge1xuICAgIHBhZGRpbmc6IDJweDsgIC8qIHdpbGwgYmUgcmVwbGFjZWQgYnkgYm9yZGVyIGR1cmluZyBkcmFnIG92ZXIgKGRvam9EbmRJdGVtQmVmb3JlLCBkb2pvRG5kSXRlbUFmdGVyKSAqL1xuXG5cdC8qIFByZXZlbnQgbWFnbmlmeWluZy1nbGFzcyB0ZXh0IHNlbGVjdGlvbiBpY29uIHRvIGFwcGVhciBvbiBtb2JpbGUgd2Via2l0IGFzIGl0IGNhdXNlcyBhIHRvdWNob3V0IGV2ZW50ICovXG5cdC13ZWJraXQtdG91Y2gtY2FsbG91dDogbm9uZTtcblx0LXdlYmtpdC11c2VyLXNlbGVjdDogbm9uZTsgLyogRGlzYWJsZSBzZWxlY3Rpb24vQ29weSBvZiBVSVdlYlZpZXcgKi9cbn1cbi5kb2pvRG5kSG9yaXpvbnRhbCAuZG9qb0RuZEl0ZW0ge1xuICAgIC8qIG1ha2UgY29udGVudHMgb2YgaG9yaXpvbnRhbCBjb250YWluZXIgYmUgc2lkZSBieSBzaWRlLCByYXRoZXIgdGhhbiB2ZXJ0aWNhbCAqL1xuICAgICNkaXNwbGF5OiBpbmxpbmU7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4uZG9qb0RuZEl0ZW1CZWZvcmUsXG4uZG9qb0RuZEl0ZW1BZnRlciB7XG5cdGJvcmRlcjogMHB4IHNvbGlkICMzNjk7XG59XG4uZG9qb0RuZEl0ZW1CZWZvcmUge1xuICAgIGJvcmRlci13aWR0aDogMnB4IDAgMCAwO1xuICAgIHBhZGRpbmc6IDAgMnB4IDJweCAycHg7XG59XG4uZG9qb0RuZEl0ZW1BZnRlciB7XG4gICAgYm9yZGVyLXdpZHRoOiAwIDAgMnB4IDA7XG4gICAgcGFkZGluZzogMnB4IDJweCAwIDJweDtcbn1cbi5kb2pvRG5kSG9yaXpvbnRhbCAuZG9qb0RuZEl0ZW1CZWZvcmUge1xuICAgIGJvcmRlci13aWR0aDogMCAwIDAgMnB4O1xuICAgIHBhZGRpbmc6IDJweCAycHggMnB4IDA7XG59XG4uZG9qb0RuZEhvcml6b250YWwgLmRvam9EbmRJdGVtQWZ0ZXIge1xuICAgIGJvcmRlci13aWR0aDogMCAycHggMCAwO1xuICAgIHBhZGRpbmc6IDJweCAwIDJweCAycHg7XG59XG5cbi5kb2pvRG5kSXRlbU92ZXIge1xuXHRjdXJzb3I6cG9pbnRlcjtcbn1cbi5kal9nZWNrbyAuZGlqaXRBcnJvd0J1dHRvbklubmVyIElOUFVULFxuLmRqX2dlY2tvIElOUFVULmRpaml0QXJyb3dCdXR0b25Jbm5lciB7XG5cdC1tb3otdXNlci1mb2N1czppZ25vcmU7XG59XG4uZGlqaXRGb2N1c2VkIC5kaWppdE1lbnVJdGVtU2hvcnRjdXRLZXkge1xuXHR0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTtcbn1cbiIsIi8qIERpaml0IGN1c3RvbSBzdHlsaW5nICovXG4uZGlqaXRCb3JkZXJDb250YWluZXIge1xuICAgIGhlaWdodDogMzUwcHg7XG59XG4uZGlqaXRUb29sdGlwQ29udGFpbmVyIHtcbiAgICBiYWNrZ3JvdW5kOiAjZmZmO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNjY2M7XG4gICAgYm9yZGVyLXJhZGl1czogNnB4O1xufVxuLmRpaml0Q29udGVudFBhbmUge1xuICAgIGJveC1zaXppbmc6IGNvbnRlbnQtYm94O1xuICAgIG92ZXJmbG93OiBhdXRvICFpbXBvcnRhbnQ7IC8qIFdpZGdldHMgbGlrZSB0aGUgZGF0YSBncmlkIHBhc3MgdGhlaXIgc2Nyb2xsXG4gICAgb2Zmc2V0IHRvIHRoZSBwYXJlbnQgaWYgdGhlcmUgaXMgbm90IGVub3VnaCByb29tIHRvIGRpc3BsYXkgYSBzY3JvbGwgYmFyXG4gICAgaW4gdGhlIHdpZGdldCBpdHNlbGYsIHNvIGRvIG5vdCBoaWRlIHRoZSBvdmVyZmxvdy4gKi9cbn1cblxuLyogR2xvYmFsIEJvb3RzdHJhcCBjaGFuZ2VzICovXG5cbi8qIENsaWVudCBkZWZhdWx0cyBhbmQgaGVscGVycyAqL1xuLm14LWRhdGF2aWV3LWNvbnRlbnQsIC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcjpub3QoLm14LXNjcm9sbGNvbnRhaW5lci1uZXN0ZWQpLCAubXgtdGFiY29udGFpbmVyLWNvbnRlbnQsIC5teC1ncmlkLWNvbnRlbnQge1xuICAgIC13ZWJraXQtb3ZlcmZsb3ctc2Nyb2xsaW5nOiB0b3VjaDtcbn1cbmh0bWwsIGJvZHksICNjb250ZW50IHtcbiAgICBoZWlnaHQ6IDEwMCU7XG59XG4jY29udGVudCA+IC5teC1wYWdlIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBtaW4taGVpZ2h0OiAxMDAlO1xufVxuXG4ubXgtbGVmdC1hbGlnbmVkIHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LXJpZ2h0LWFsaWduZWQge1xuICAgIHRleHQtYWxpZ246IHJpZ2h0O1xufVxuLm14LWNlbnRlci1hbGlnbmVkIHtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG5cbi5teC10YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtdGFibGUgdGgsXG4ubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuLm14LXRhYmxlIHRoLm5vcGFkZGluZyxcbi5teC10YWJsZSB0ZC5ub3BhZGRpbmcge1xuXHRwYWRkaW5nOiAwO1xufVxuXG4ubXgtb2Zmc2NyZWVuIHtcbiAgICAvKiBXaGVuIHBvc2l0aW9uIHJlbGF0aXZlIGlzIG5vdCBzZXQgSUUgZG9lc24ndCBwcm9wZXJseSByZW5kZXIgd2hlbiB0aGlzIGNsYXNzIGlzIHJlbW92ZWRcbiAgICAgKiB3aXRoIHRoZSBlZmZlY3QgdGhhdCBlbGVtZW50cyBhcmUgbm90IGRpc3BsYXllZCBvciBhcmUgbm90IGNsaWNrYWJsZS5cbiAgICAqL1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDA7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLm14LWllLWV2ZW50LXNoaWVsZCB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICBsZWZ0OiAwO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICB6LWluZGV4OiAtMTtcbn1cblxuLm14LXN3aXBlLW5hdmlnYXRpb24tcHJvZ3Jlc3Mge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBoZWlnaHQ6IDU0cHg7XG4gICAgd2lkdGg6IDU0cHg7XG4gICAgdG9wOiBjYWxjKDUwJSAtIDI3cHgpO1xuICAgIGxlZnQ6IGNhbGMoNTAlIC0gMjdweCk7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaE5nQTJBUE1BQVAvLy93QUFBSGg0ZUJ3Y0hBNE9EdGpZMkZSVVZOemMzTVRFeEVoSVNJcUtpZ0FBQUFBQUFBQUFBQUFBQUFBQUFDSDVCQWtLQUFBQUlmNGFRM0psWVhSbFpDQjNhWFJvSUdGcVlYaHNiMkZrTG1sdVptOEFJZjhMVGtWVVUwTkJVRVV5TGpBREFRQUFBQ3dBQUFBQU5nQTJBQUFFeXhESVNhdTlPT3ZOdS85Z0tJNWt5U0VKUVNTSTZVcUtLaFBLV3lMejNOcGltcXNKbnVnM0U0YUlNaVBJOXdzcVBUamlUbGt3cUF3RlRDeFhleFlHczBIMmdnSk9MWUxCUURDeTVnd213WXg5SkpyQXNzSFFYc0tyOUNGdU0zQWxjakowSUFkK0JBTUhMbWxySkFkdUJvNVBsNWlabXB1Y25aNmZjV3FJbUpDamFIT1poaXFtRkl1QWw2NFpzWml6RjZvRXJFSzN1Uk9sbTc2Z3djTER4TVhHeDhYQWo2SWt1NCtvSXJVazBoL1UwV0Vqem5IUUlzcWhrY2pCM3NuY3hkYkM1K0xseWN6aDdrOFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRNRU1oSnE3MDQ2ODI3LzJBb2ptUnBubVZoRUlSUm9HY3hzT3p3d3VSS3N3Wk83anZmQ0VnVGluUzduaEYwbU5FR2h3c2l3VW9nbHBTRHpoQzFLSWlLa1dBd0VKZ1FSTllWSk5pWlNkUjBJdVNzbGRKRlVKMHd1T01KSVcwMGJ5TnhSSE9CWklRamFHbHJXQnhmUUdHUUhsTlZqNVdhbTV5ZG5wOUxZMldib29zV2dpeW1RcWdFcWhON2ZaQ3dHYk95TzdFWHJLNDR1aHFscElxZ3dzUEV4Y2JIeU1lL0tNc2l2U2JQZExjbnRkSlAxTlBPYmlmUmlhUE13Y25DemNyYnlOWEc2TVhkeHVUaTd6NFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRPRU1oSnE3MDQ2ODI3LzJBb2ptUnBubWlxQXNJd0NLc3BFRFFCeCtOUUV3T2U3ejFmYUZhN0NVR3QxMUZZTU5BTUJWTFNTQ3JvYW9Qb2NFY1ZPWGNFZytoS0M1TEF0VEhRaEthSmlMUnU2THNUdjEzeTBJSE1PeXc5QjE4R2ZuK0Zob2VJaVlvWkNBazBDUWlMRmdwb0NobFRSd2h0QkpFV2NEWkNqbTBKRjN4bU1adHVGcVpDcVFRWG4za29vbWlrc0hpWm01MlNBSlJnbHJ3VGpZKzd3Y2JIeU1uS0U1Z296VzljSjdFL1dDZXNhdFVtMTF0RjB0RWp6eks0eTRuaHh0UEkyOGJxd2VqSTV1VHhKaEVBSWZrRUNRb0FBQUFzQUFBQUFEWUFOZ0FBQk1zUXlFbXJ2VGpyemJ2L1lDaU9aR21lYUtvQ3dqQUlxeWtRTkFISDQxQVRBNTd2UFY5b1Zyc0pRYTNYY1lsS0dtV3VKM0luRlJGcDFZNnVGaXh0YVYzUWwzY2FoejlYMnltZDdUaFRiNlo4VHEvYjcvaTh2R0NnR1FvYWNVSUZab0FYYkVkOU93UUdHR1pIaXpXT1FKQ1JCQmlJUW9vN2paaFJTd2RtQjNvVUI0b0dvNlNxcTZ5dE1RZ0pOQWtJckFxUkNpT0NJd2lXQkxSVFJTV3hsZ2toanlTOU5NYVV5TWxEVk1LOXhVT2ZKYnlXdjNxMmk3aEx1aFd3c3RsQ21hdkg1c3lyNWVyVnJ1NDRFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWlaY2dVR05BWUZKSk1pQldhZ1E0TWxuVHNFQmlLTElxczFya0Ftc1RSV3FDU3FPNjFXa1JrSUNUUUpDQmNIWmdkSENyRUt4cW9HeVVJSXRnVEZlc0syQ1h2VXQzcmNCSHZZc2RwNjA3Yldlc3VyelpYQncrZ2lFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWdTQ0FrMENRaVdDanMwQ3BRSW9qV2ZKWk1kbktjRUNhcURJSzQxWGtBaHREUzJYQ0d0cDdBa2p4Nm1ycW5Ca1NLaG9xUVhCUVkwQmdWTG01M0dGUVZtMHBUUG9nYVZ0Tit1bGR3NzNwUUhaZ2VXQjl3RzZwa29FUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2dktVU0Nsa0RnTFFvN05BcC9Fd2lDTlg1Q2NSWjdpQVFKaTFRWGp6VkNacFNWQkpkQUY0NklrVDVzRjRlUGlxSlJHWUdDaElXR2puMnVzck8wdFhZRkJqUUdCYlFGWnJ4UVNpSzVnZ1l5a3lHVkpwakpqOHVkSWNRN3hpV2pJUWRtQjJ1cEl3ZkVCdHEySG95ejFyUE01OURseUxUazR1OHBFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3a1JDVm9Db1dtOWhCTEZqcWFBZGhEVEdyUGtOSDZTV1VLQ3UvTjJ3cldTcmhiOG9HbHFZQWljSFpPSU5ETUhHOTdlWFhvZFVsTlZWbGRnUzRhS2k0eU5qbzhGQmpRR0JZOFhCV3MwQTVWUVhSbVNVd2FkWlJob1VKazhwV0duY2hlZ082SkNlRFlZQjZnREIxYWVHUWVnQnJtV3djTER4TVhHeDF5QUtic2lzNEVnemo5c0o3ZlNtdFN0UTZReTI4M0tLTXpJamVIRTBjYlY1OW5sM2NYazR1OG9FUUE3KTtcbn1cblxuIiwiLyogQmFjYXVzZSB3ZSB1c2UgY2hlY2tib3hlcyB3aXRob3V0IGxhYmVscywgYWxpZ24gdGhlbSB3aXRoIG90aGVyIHdpZGdldHMuICovXG5pbnB1dFt0eXBlPVwiY2hlY2tib3hcIl0ge1xuICAgIG1hcmdpbjogOXB4IDA7XG59XG5cbi5teC1jaGVja2JveCBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl0ge1xuICAgIG1hcmdpbi1sZWZ0OiAwO1xuICAgIG1hcmdpbi1yaWdodDogOHB4O1xuICAgIHBvc2l0aW9uOiBzdGF0aWM7XG59XG5cbi5mb3JtLXZlcnRpY2FsIC5mb3JtLWdyb3VwLm14LWNoZWNrYm94IGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB7XG4gICAgZGlzcGxheTogYmxvY2s7XG59XG5cbi5mb3JtLXZlcnRpY2FsIC5mb3JtLWdyb3VwLm14LWNoZWNrYm94LmxhYmVsLWFmdGVyIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4uZm9ybS1ob3Jpem9udGFsIC5mb3JtLWdyb3VwLm5vLWNvbHVtbnMge1xuICAgIHBhZGRpbmctbGVmdDogMTVweDtcbiAgICBwYWRkaW5nLXJpZ2h0OiAxNXB4O1xufVxuXG4ubXgtcmFkaW9idXR0b25zLmlubGluZSAucmFkaW8ge1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICBtYXJnaW4tcmlnaHQ6IDIwcHg7XG59XG5cbi5teC1yYWRpb2J1dHRvbnMgLnJhZGlvIGlucHV0W3R5cGU9XCJyYWRpb1wiXSB7XG4gICAgLyogUmVzZXQgYm9vdHN0cmFwIHJ1bGVzICovXG4gICAgcG9zaXRpb246IHN0YXRpYztcbiAgICBtYXJnaW4tcmlnaHQ6IDhweDtcbiAgICBtYXJnaW4tbGVmdDogMDtcbn1cblxuLm14LXJhZGlvYnV0dG9ucyAucmFkaW8gbGFiZWwge1xuICAgIC8qIFJlc2V0IGJvb3RzdHJhcCBydWxlcyAqL1xuICAgIHBhZGRpbmctbGVmdDogMDtcbn1cblxuLmFsZXJ0IHtcbiAgICBtYXJnaW4tdG9wOiA4cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbiAgICB3aGl0ZS1zcGFjZTogcHJlLWxpbmU7XG59XG5cbi5teC1jb21wb3VuZC1jb250cm9sIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xufVxuXG4ubXgtY29tcG91bmQtY29udHJvbCBidXR0b24ge1xuICAgIG1hcmdpbi1sZWZ0OiA1cHg7XG59XG5cbltkaXI9XCJydGxcIl0gLm14LWNvbXBvdW5kLWNvbnRyb2wgYnV0dG9uIHtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbn1cbiIsIi5teC10b29sdGlwIHtcbiAgICBtYXJnaW46IDEwcHg7XG59XG4ubXgtdG9vbHRpcC1jb250ZW50IHtcbiAgICB3aWR0aDogNDAwcHg7XG4gICAgb3ZlcmZsb3cteTogYXV0bztcbn1cbi5teC10b29sdGlwLXByZXBhcmUge1xuICAgIGhlaWdodDogMjRweDtcbiAgICBwYWRkaW5nOiA4cHg7XG4gICAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQgdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaEdBQVlBTVFkQUtYWjhuZkY2NFRMN1F1WDNGZTQ1emFxNGhPYjNmTDYvZnI5L3JyaTlkWHQrWnJVOEN5bTRVbXk1Y0hsOXVQeisySzg2T2oxL056dytyRGQ5TTNxK0pEUTcyckE2aU9pMyszNC9FQ3U0OGpvOXgyZjNnV1YyLy8vL3dBQUFBQUFBQ0gvQzA1RlZGTkRRVkJGTWk0d0F3RUFBQUFoL3d0WVRWQWdSR0YwWVZoTlVEdy9lSEJoWTJ0bGRDQmlaV2RwYmowaTc3dS9JaUJwWkQwaVZ6Vk5NRTF3UTJWb2FVaDZjbVZUZWs1VVkzcHJZemxrSWo4K0lEeDRPbmh0Y0cxbGRHRWdlRzFzYm5NNmVEMGlZV1J2WW1VNmJuTTZiV1YwWVM4aUlIZzZlRzF3ZEdzOUlrRmtiMkpsSUZoTlVDQkRiM0psSURVdU5pMWpNVFF3SURjNUxqRTJNRFExTVN3Z01qQXhOeTh3TlM4d05pMHdNVG93T0RveU1TQWdJQ0FnSUNBZ0lqNGdQSEprWmpwU1JFWWdlRzFzYm5NNmNtUm1QU0pvZEhSd09pOHZkM2QzTG5jekxtOXlaeTh4T1RrNUx6QXlMekl5TFhKa1ppMXplVzUwWVhndGJuTWpJajRnUEhKa1pqcEVaWE5qY21sd2RHbHZiaUJ5WkdZNllXSnZkWFE5SWlJZ2VHMXNibk02ZUcxd1BTSm9kSFJ3T2k4dmJuTXVZV1J2WW1VdVkyOXRMM2hoY0M4eExqQXZJaUI0Yld4dWN6cDRiWEJOVFQwaWFIUjBjRG92TDI1ekxtRmtiMkpsTG1OdmJTOTRZWEF2TVM0d0wyMXRMeUlnZUcxc2JuTTZjM1JTWldZOUltaDBkSEE2THk5dWN5NWhaRzlpWlM1amIyMHZlR0Z3THpFdU1DOXpWSGx3WlM5U1pYTnZkWEpqWlZKbFppTWlJSGh0Y0RwRGNtVmhkRzl5Vkc5dmJEMGlRV1J2WW1VZ1VHaHZkRzl6YUc5d0lFTkRJREl3TVRnZ0tFMWhZMmx1ZEc5emFDa2lJSGh0Y0UxTk9rbHVjM1JoYm1ObFNVUTlJbmh0Y0M1cGFXUTZSVUpGTmtVNE5FWkNORVZETVRGRk9EazNNREJCTlVVMVJVTTRRamczUVRVaUlIaHRjRTFOT2tSdlkzVnRaVzUwU1VROUluaHRjQzVrYVdRNlJVSkZOa1U0TlRCQ05FVkRNVEZGT0RrM01EQkJOVVUxUlVNNFFqZzNRVFVpUGlBOGVHMXdUVTA2UkdWeWFYWmxaRVp5YjIwZ2MzUlNaV1k2YVc1emRHRnVZMlZKUkQwaWVHMXdMbWxwWkRwRlFrVTJSVGcwUkVJMFJVTXhNVVU0T1Rjd01FRTFSVFZGUXpoQ09EZEJOU0lnYzNSU1pXWTZaRzlqZFcxbGJuUkpSRDBpZUcxd0xtUnBaRHBGUWtVMlJUZzBSVUkwUlVNeE1VVTRPVGN3TUVFMVJUVkZRemhDT0RkQk5TSXZQaUE4TDNKa1pqcEVaWE5qY21sd2RHbHZiajRnUEM5eVpHWTZVa1JHUGlBOEwzZzZlRzF3YldWMFlUNGdQRDk0Y0dGamEyVjBJR1Z1WkQwaWNpSS9QZ0gvL3YzOCsvcjUrUGYyOWZUejh2SHc3Kzd0N092cTZlam41dVhrNCtMaDROL2UzZHpiMnRuWTE5YlYxTlBTMGREUHpzM015OHJKeU1mR3hjVER3c0hBdjc2OXZMdTZ1YmkzdHJXMHM3S3hzSyt1cmF5cnFxbW9wNmFscEtPaW9hQ2ZucDJjbTVxWm1KZVdsWlNUa3BHUWo0Nk5qSXVLaVlpSGhvV0VnNEtCZ0g5K2ZYeDdlbmw0ZDNaMWRITnljWEJ2Ym0xc2EycHBhR2RtWldSalltRmdYMTVkWEZ0YVdWaFhWbFZVVTFKUlVFOU9UVXhMU2tsSVIwWkZSRU5DUVVBL1BqMDhPem81T0RjMk5UUXpNakV3THk0dExDc3FLU2duSmlVa0l5SWhJQjhlSFJ3Ykdoa1lGeFlWRkJNU0VSQVBEZzBNQ3dvSkNBY0dCUVFEQWdFQUFDSDVCQVVFQUIwQUxBQUFBQUFZQUJnQUFBVWNZQ2VPWkdtZWFLcXViT3UrY0N6UGRHM2ZlSzd2Zk8vL3dPQXJCQUFoK1FRRkJBQWRBQ3dBQUFBQUFRQUJBQUFGQTJBWEFnQWgrUVFGQkFBZEFDd1VBQXdBQVFBQ0FBQUZBeURUaEFBaCtRUUZCQUFkQUN3VEFBc0FBZ0FHQUFBRkMyQVhkRnhuZE1UUU1WMElBQ0g1QkFVRUFCMEFMQkVBQ3dBRUFBZ0FBQVVSWUNjMllpbHlvcldkVm1jTnA4aTBYUWdBSWZrRUJRUUFIUUFzRHdBT0FBWUFCZ0FBQlE5Z0ozYUJNWjRqaDQ0V0I0bkZjSVlBSWZrRUNRUUFIUUFzRFFBUEFBZ0FCZ0FBQlJGZ0o0NGRSSGJCcVlvcEdRd2NPUmhxQ0FBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRkxXQW5qbVJwbm1pcXJtenJ2bkFzejNSdDMzaXVrOEpnRHdRYlIyaWhCVGlOV1c4WTR6aDlHaGxnUnkyRkFBQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZNMkFuam1ScG5taXFybXpydm5Bc3ozUnQzMmh6YzN0U0M3emFZT2VvY1NBMFlNWlZJUWtHd1JhUVE2VjJpaklBYnFzS0FRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZObUFuam1ScG5taXFybXpydm5Bc3ozUnQzMmh6Yy90VVY3eWFJV01MMGppRVZRVUZMS3dDSEVPcFlqQ3lNcHlzbGloYjRMNnJFQUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGT21BbmptUnBubWlxcm16cnZuQXN6M1J0MzJoemN6dFFWN3phcG1BTG1vQXNqZzdGTUI0NWpGV0RzeWxWTnM1VmdjUHRFbU8rQ202c0NnRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCVDlnSjQ1a2FaNW9xcTVzNjc1d0xNOTBiZDhvY1hPQ3plMm14c2ExWVp4K0xRN2cxRUNxT0prVWc3TkljWXlxNXJDMGdicW1uSENZc1lRdGU3aDBLZ1FBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQlVSZ0o0NWthWjVvcXE1czY3NXdMTTkwYmQ4b1lRWXdKNVNjbmluNElwSVlGOWNsV1ZvWVY1ekZLZk5FY1RLcFN4WElURkc3SXkyMnhlQ1l6eGNwVFBxajRONm9FQUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGU21BbmptUnBubWlxcm16cnZuQXN6M1ROYm5iQXdZUzV2NXdBcWZKekZVZEhWckt6WWJnWU9OK2t4YW1jQ2dQV29KRGFaRk9EYUtyQWNaWVlIRzVydzJtN04xWllSUmkzMlZjaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVlBZQ2VPWkdtZWFLcXViT3UrY0N6UDVVYlFJb2QzZ3I3N3JodkpBbXh4TEtVaVM5bmhURjVNQThQRk1KaDZMbzdneEJpd0JsUFV4cHNhYkZZTVRwaVVYcXNFQm81OGJ0akN0aGI3YnI4S0FRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZVMkFuam1ScG5taXFybXpydmpETFhERXBjRFZwWlBtSTk1MGJVUFJ6UVVxUVlvdHpKQ2xaejhsenhabVVEQVZYd1hDYW9yeWRDM2Rsb0tFTTQzTWFkZUZrU3dXT2VSVXdjTzU0UXlBbU9BcUdnQzBoQUNINUJBVUVBQjBBTEFBQUFBQVlBQmdBQUFWWFlDZU9aR21lYUtxdWJMdHVsbnNhaG14dXRVMEduRjRPRFIrcEp4VHhpaUpDemhYNzJRYUVIZEUxSFZWWkhNQXY0OG9NVE1jV0ozRENzUXliMUdBNSs2bzJIRzRwdzBtekFnTU9aNURmazIwQlVYOUloQzBoQUNINUJBa0VBQjBBTEFJQUF3QVVBQk1BQUFVL1lDZUsxdENNYUpweWhPcU93L2JPOUd6VmM0dnY5YzJuc2w5QVpQaDFpajZqY3JRUW5YYlBEc1E0SFFWcFYxUld0VTFGUjE5WDlWZ1VqV20rWkNvRUFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVmJZQ2VPWkdtZWFLcU9GckdpeE1CeHpHc2FuR3VidzdhZkJ0K3ZST0FNVGJsanlhaGtNWnVkaG5BWEtFbUhtOFp5K0JRdHVpL09ZcWw3RlUvZ1ZQSTJUVzBNcVo1cU0xamh5cU1pM0R6amJEWjllRFlRRFZwalVJZy9JUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGWUdBbmptUnBubWlxaWxXWFpjUnFFaHczWE5jZ2t3WUg3U2ZPQlhneURJa2xHdExrVzVZNFRoSkJGeFZsamtCQjZZcThaRXBVWUpnRkpYSmFwT1lPVXBhMlY1eVl5U2k3R0ZKQzFlVmRWSlBZZHpJME5qZ0ROWEpFQkYrSVZZMUFJUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGWldBbmptUnBubWlxaWtKWEZNUnFOaHhuTUlWUngvTEFXYWFBck1OaERGRUQ0M0hHV1o1K3pwS2dHUzBacXFTQ2Npa2NhWjA0RXVHNk5QQkcxR01hRFJ4YTFpS2F1bkZLeWhpRFZGSEZnSnQ4YlNSdmVUSTBOZ3dNT2h4MFRnUXZIUzFZa2xFaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVm1ZQ2VPWkdtZWFLcUtRY01VeldwbUhMZDF4VlpuY2pjTUFWUGdwMXB3Q2lyR0RUVkE5azZad1JQRm1aNENWV3Vwc2RTT1h0cmdWMXRna0xqV1RZeVVmYlpISExFTU81UDJCanhUVTFhd240NHFCVzhtQzBSQ2hpczBOZ1U1TzFZdFptdGVrNU1oQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFWbllDZU9aR21lYUtxS1FYWmQyV29XSEhkMURWTVhjc1VOSjRHQnMrTHdVclFLeWlpam5RcEFXY2R3NGdTa3FBQVJlM0p4VDdkdngwS0NmYjBqTk5aTTJtTGRJeXRXTzR2S0JzY1NjK1ZjNXA5d1ZYWWtBUU9CS0RRMkdTNDdYeTB2SFZkaWs1UWlJUUFoK1FRRkJBQWRBQ3dBQUFBQUdBQVlBQUFGYm1BbmptUnBubWlxaWxheGJjVnFNaHpIZEExdHl3Sm5uQUlEUjZEaVpGUVpUc29vUzU0WVAxbkhjQ3NOcFNJbHlhTEZjZ0trUWhWcjJwQkZpOUttY1c2WVIrSXpJMGJxU3UxWm9qZFJnbUtwSjB3clRpaUNLSVFvUFZFbFFYZ29PZ3dOT1RWalVpMW1kR2VhbXlVaEFDSDVCQVVFQUIwQUxBSUFBZ0FVQUJRQUFBVmJZQ2VPa01HZG5BR05MSWx5dy9DdWJjZWNXWjJkVEhzYk5aYXBKNEtrZ2kwVDdZU3NNWTI1Sm10WDRraWRKdXVWaFJwc1dUTFlkeFRXamsrbXNTZ0ZIVk03ekcvY0NMd3FSei9wMElmVDhZSkdYV1VjTkVoVktDbzFJUUFoK1FRRkJBQWRBQ3dCQUFFQUZnQVdBQUFGWjJBbmptUFZCV1NxbmdaSGNnYTZqc2JyMG5OMTEyVEZjNmFVNnpZYnBtckVXY2ZGTzRrRXloSFUyYWsxbzlYc0VydHlCYm1xWUpKN1E0MnhMaG00MlBsaVRUc3QxeXBTYzZkcUpGa3VHazVWQWtZcE9pSlhiVDlLVnh4Smhpb0JMUytOVVNaMktpRUFJZmtFQ1FRQUhRQXNBUUFCQUJZQUZnQUFCV3BnSjQ2aWxWMVgxazFrUzE2Y3kxMHUyY1MxeURVMU0zSUVFZ0hYOGRsR3dWcXl3L3ZsY2tSYVovbE1TbVBFcDY0VHM0aW8ycVJKcXoyUm42aHpMcVd1cWI1dEtyWTk3MGpCU3BHVTI5Nk9tbE01UzRBaVJseFVReU9HTmxreWhDNHdNbnRrSmlncUxDNGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVYrWUNlT1pHbWVwVlZjVjlaTjZMbHhkRTF2OGRqWWZOM0VEQnVFQkxFeFRqdmE4RlNrL1VxMW5DaEttbkdXdVNadVJKVjJ1aGFsbDh1eGlESzBNZG5WdWFUVlg4NUY1T2JBNC9NTzJnNm5zZU5ZVWsxbVUyOWVYUjFXZ1NoYUpBdUlLSkFkU1ZlTVBpZEJrRTAwUnlpVVBaZFNWajFiYWhZWkxCbUVkM0FoQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFXQllDZU9aR21lcFZWY1Y5Rk42TGx4ZEUxdjhkallmTjNFakpyQlpLZ3hUanRhVE9BejFYS2lKMm5HRVVDakhOeUlOcngyaXB5UlJlbnRNRGtXVVlGY3ByazZGN2FYZGhIRncrVU9YUzIvdXJkVlpXY2tYR1ZnVTMweE55UUxVamsxQ3lWSmdTZG5IRDhtUVlVa0FtQWNSeWlUUFUxUVZEMWFaU29zQldsNXJoMGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVdDWUNlT1pHbWVwVlZjVjlGTjZMbHhkRTF2OGRqWWZOM0VqTnJGZEtreFRqdk9JRGVnL1VxMFphN1Q1SlJtMXFub1JxSU50WjFpdG1PaGdVYzBpNmhnUG5kb3JuRDc3QldKM1cvT2x6MEd3OUY5VXdCcEloTjFZSGNqV0hRY09GMUtXbFVtU1FNQU1WVlBKVUdISXdCaUhFY29TVDAybVRGWVBZNW5LaXd1TUhodUlRQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZlbUFuam1ScG5xV1ZNVXlHdmhjbnovTDFqZzJ0ejgxYnpLNVNabFk0NVRpR20wSFdLOG1TdDg2U1U0cFJvNklhU1JiRURxOGRpd3k3NVZoRVgvS0lLMktNMVIwWm8vMVd5OUYxTWpzTDF2ZjNYaklUSTFaMkhEWmxVRXA1SWtlS0oxTk5KVCtBSTE4Y1JTaEhPelNTTUp5SGNHRXJMUjJEb25BaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVjlZQ2VPWkdtZVpkQXdUSU8rRnlmUDh2V09CRDFjMTBBVHI4SU1Zb0xNQ3FjY3h3YVRBVXUxbXlqR0tWR2xvMmlXUThSMmpGVlJRT2JkQmtRTnpxQXM4bzBZUzNZbnhoREJtV1Y2ZHMzMnVUcGpZV1ZrVzExWVlDUlhYbHBiZUUyQ09Jd25WRThsUWpLR0kyQWNTQzg2UEQ0elhsUTBrbGhuTEg5eWNpRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCWDFnSjQ1a2FaNWwwQlJGZzc0TUo4OHk4NDRFZlhYWlJST3ZqR3h3RWd4a21WT09rd3pLZ0NYa1RTVGtsR0xFcWVob0c4bTBwSzhvSUFaM1pBRlJnN016ZDN5akF0UE40eFJFY25yOUxtTFQ0V05sWUdoZUhBSnVnbGhtWEZGelUxVW1TMDBvVlZBbFZWa2xSbEl2T2hrOU5HQXhORE5kWmlvZExYcDZJUUFoK1FRSkJBQWRBQ3dBQUFBQUdBQVlBQUFGZ0dBbmptUnBucVhRRkZrbm9HakJ6ZlJjd0NORUR4M1JaUU1hQk5hWWJWQ2JXZU9rNCtCNnM5UE05K3hFU2JKanRaTzhqYTViQUZqQTRXMUZ3WmVJMHpyL25LSU1oK3BteCtGdWdoM2FQc3ZwWlc0ZFFTUmdXNFpaWjEwbFUxVjZlRG1OTUk5REprVWNXaVpKa0ZJekF4aytRRUpWTWpVMFhtY3ZHYUNDclIwaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVjZZQ2VPWkdtZXBkQmxHWUcrR1NmUGN2YU8xcnk1UWJmTmxoZEJWa0FWWks2VDdOWUpMRTJ5SHJQekhNV0swODdSTnFwbXF3TE9KanY2cVVTY0pIbG81WkJKSEc1TVNuWnkyZThPSGoxK203dHViMTVYWkZzbFVWK0JKRG1LS0U0Y1FTWkRIRmdtUjJrM09qd0VQMTR3TkRSY1pDb3NIV2Q1YnlFQUlma0VDUVFBSFFBc0FBQUFBQmdBR0FBQUJYcGdKNDVrYVo1bDFXVk5wNkpueHMzMG5NRmpRQmR1RnhTMEFJd3dHeFpSbkFGT05PQUlTOGRsSnlxU0VhUWk0bTFFbFVZckhCNVdCQ1J4eG1hSXFNRjVqY0d0RGh2TmpVK2ZZOTBJTEI2WHVXZG9WRlpqV2xDQlhvaG1Ta3ROZUNSRUhGY25rWk1uT2pNOEtqOUJVakkxTkZ0b0VBMHRiblJqSVFBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRmdHQW5qbVJwbmlaRWRCYnFObHdzeDQwN0NyR3hkbE5IR0RHQkM4SVp1QUlEam90anNJbUF3bExST1VxV1lBR3FLTUNwalpqYUVaREUyWVU3U3BFbGZhNXdXajcydVN3aXlNTjBFYWR5N3JoSEMzZGFIQXRmVFdkakkxaGhYRjVmUmxwV0ptQk9pU2xGV1NkSUhCQXVPRXc3UFQ4eFdqQXpNbzVoRml0d2ZYMGhBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVYxWUNlT1pHbWVwa1YwQWVvU1hDekhxeXRXOFVWTzNSWGJIWTdCWnVCWVRqZ2QwSGNTQWtmRkV1dzVXbkJxSW82UzJ1T1FPQzF1ZGhUd2lqc1RzR2g2RG1MTlozaTVIUXpYei9PUjlzd2NzYmxYSlU1VVVTVkpUejRWS0VJTEtBdEZSeWc0ZXlNOFBuQTJNRE15V0Z3QkJDc0FkR0loQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFWellDZU9aR21lWmdCMUFlb1NBeWZQQStHU2NWWldHVGZjQWM3bGR1RzBUaHpkclZQZ25BYkRwZWp5SXhHYzBoSEhOaG9vczUxTVZZUUZrMGRCcy9ZSUtaczVxN082QXhlbDUyNU9SVjF4ZTlWaVZtNVNXeVZRWUZSSUJWSk5LRUZSS0VWSEtEazdQV00zTURNMFhHWXFjWE5xSVFBaCtRUUpCQUFkQUN3QUFBQUFHQUFZQUFBRmQyQW5qbVJwbm1iUVdkMkVvdERBY1lZeEQ5QkxEZ05oRWp4ZGdKUFJaVGlxRThlbkUzRk9nMkpUbEJtVVl0TmRidFRMam9Da3AzY2s3Z2pLWTQ1Z1pCaXpSNWEydTJOZ09lZWQ4Z1R0NWJoRVhXTmdPMjQ0SlZGZVZTWUxTMU1FZkdGU0tFZE5QRXdrUUZaVE1UTTFOMXRqYXl4L2VGa2hBQ0g1QkFrRUFCMEFMQUFBQUFBWUFCZ0FBQVZvWUNlT1pHbWVwdEFGYU50WkJtY3dUR3hZN21nWXA3QzdBZzdFQmVHMGpMa1ZzbVFZSmpzUUhnbjIxT0YwVlpKVXRNd3VmVm1kU3NRSWswZUJzcG5CRW0yejcyNjFheGhYd1NNcTNOU3NSazl5UnloQlRpaEZkaWMvS1lvNU1ESTBObVlkS20yU1dTRUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCV3hnSjQ1a2FaNW0xUVZvdXhvYzB6UU1aN0N1YURBb1k3Z1ZUazRnUkJWekhjN0VaQkFnUllJZktjQjdpcW9qcVZWSE9tNlBGZXlXb1JJMXRxT3pDSWZ1cUsvdERubmt0WG9OaTdaMjFXYXdkVTVQVVNkMUxZVWlRWUVvUkRrN1BYc3RBVEF5TkRaL1ZwZHhUeUVBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQldOZ0o0NWthWjVtMVFsbzJ3V2IwWFJRWTJ5Qk8yN3oyV3c2ZzY0alJCa2NRK0xFQkV5S21xTkF6emw5T2tsUTRuVlVGRldwcXRWMkJCa0p5bU8wZDl5cGRxL3ZyRE1yM1g2MThOUGJaVmlhRm50NkN5NDhLRDlKTURJME5qaGpLaXhzV3lFQUlma0VDUVFBSFFBc0FBQUFBQmdBR0FBQUJWaGdKNDVrYVo3bTBnbG91MjdGMmxuRjVwSTJhdVV0M3dNb24wc29JZzVMQXN1dHBNUXRUYjdZa3lRVk5hZldFUXRMMnNxNDN5ejQycWxpemNhYmtMeGtkOUxCRTd5VUJzeUxhcmYxUG9JcFdUVmdJaXdxZ2xnaEFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVlpZQ2VPWkdtZXA5QUJhTnN4aE5xcGpPeSt0c25jeGQzMUtLQlBTTnI1UnNaUjdyaE1Ia1ZPd3BQVUlDMmZyT21wSXVKcVI5N1pWenlTZnF2SXNaTThiV3JYSXFKTFRxS2I3TVdyU0FCSHdUb0xZbjArWGdwalV5RUFJZmtFQ1FRQUhRQXNBQUFBQUJnQUdBQUFCVkZnSjQ1a2FaNW5oYTVqWm9sSloyVXNTYVBBdlJKMXg2Ty9YdERXSTVZQVJaS3FsVFNLWHMxb2JTSmFTcSttbUlpSzVjcXVVSkd1T2NhYXlqVzBMemtzdFUvdmtwclpxOUNRSFdURzJ1U2JleUVBSWZrRUNRUUFIUUFzQUFBQUFCZ0FHQUFBQlVsZ0o0NWthWjVuaGE0anBJcE9CN0Vrd2Rwc1FIYzYydSsvMms0NExNcU1MZVF1cHV4TVJJdW05QlNGVGErZGwyaW01R0pMdUdLWUZNeXR5dEt4U2IzeWlpcnU0clA2WllVQUFDSDVCQWtFQUIwQUxBQUFBQUFZQUJnQUFBVTVZQ2VPWkdtZUo0Q3VZMUNxS2l1Nk1ydlVkNjJiOU43dnRaOFBTQ3dtUkxHaU1yVkVKWnZMMzdNcGxGV2hwWnpOaW0zeGxxcGpseFVDQUNINUJBa0VBQjBBTEFBQUFBQVlBQmdBQUFVM1lDZU9aR21lNklTdTRtSzY3RmpGTkoyc2Q2M0g4MTdEUHFCdlNDeUtWRVdrY1lrUzZweE1VUys2azFCWDAxT1dCWVhxbE5kVENBQWgrUVFKQkFBZEFDd0FBQUFBR0FBWUFBQUZMR0Fuam1ScG5taXFvdFBxdm5Bc3oySkxxL2F0Ny96cDlNRGdLQmNqQ284OHhVdXBNNmFjVHRnUGFRb0JBQ0g1QkFVRUFCMEFMQUFBQUFBWUFCZ0FBQVVqWUNlT1pHbWVhS3F1Yk91K2NMeFNjbTNmZUk3VGV0L3p2cUJ3eUFLV2pDOGtNUVFBT3c9PSkgbm8tcmVwZWF0IHNjcm9sbCBjZW50ZXIgY2VudGVyO1xufVxuLm14LXRvb2x0aXAtY29udGVudCAudGFibGUgdGgsXG4ubXgtdG9vbHRpcC1jb250ZW50IC50YWJsZSB0ZCB7XG4gICAgcGFkZGluZzogMnB4IDhweDtcbn1cbiIsIi5teC10YWJjb250YWluZXItcGFuZSB7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuLm14LXRhYmNvbnRhaW5lci1jb250ZW50LmxvYWRpbmcge1xuICAgIG1pbi1oZWlnaHQ6IDQ4cHg7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvZ2lmO2Jhc2U2NCxSMGxHT0RsaE5nQTJBUE1BQVAvLy93QUFBSGg0ZUJ3Y0hBNE9EdGpZMkZSVVZOemMzTVRFeEVoSVNJcUtpZ0FBQUFBQUFBQUFBQUFBQUFBQUFDSDVCQWtLQUFBQUlmNGFRM0psWVhSbFpDQjNhWFJvSUdGcVlYaHNiMkZrTG1sdVptOEFJZjhMVGtWVVUwTkJVRVV5TGpBREFRQUFBQ3dBQUFBQU5nQTJBQUFFeXhESVNhdTlPT3ZOdS85Z0tJNWt5U0VKUVNTSTZVcUtLaFBLV3lMejNOcGltcXNKbnVnM0U0YUlNaVBJOXdzcVBUamlUbGt3cUF3RlRDeFhleFlHczBIMmdnSk9MWUxCUURDeTVnd213WXg5SkpyQXNzSFFYc0tyOUNGdU0zQWxjakowSUFkK0JBTUhMbWxySkFkdUJvNVBsNWlabXB1Y25aNmZjV3FJbUpDamFIT1poaXFtRkl1QWw2NFpzWml6RjZvRXJFSzN1Uk9sbTc2Z3djTER4TVhHeDhYQWo2SWt1NCtvSXJVazBoL1UwV0Vqem5IUUlzcWhrY2pCM3NuY3hkYkM1K0xseWN6aDdrOFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRNRU1oSnE3MDQ2ODI3LzJBb2ptUnBubVZoRUlSUm9HY3hzT3p3d3VSS3N3Wk83anZmQ0VnVGluUzduaEYwbU5FR2h3c2l3VW9nbHBTRHpoQzFLSWlLa1dBd0VKZ1FSTllWSk5pWlNkUjBJdVNzbGRKRlVKMHd1T01KSVcwMGJ5TnhSSE9CWklRamFHbHJXQnhmUUdHUUhsTlZqNVdhbTV5ZG5wOUxZMldib29zV2dpeW1RcWdFcWhON2ZaQ3dHYk95TzdFWHJLNDR1aHFscElxZ3dzUEV4Y2JIeU1lL0tNc2l2U2JQZExjbnRkSlAxTlBPYmlmUmlhUE13Y25DemNyYnlOWEc2TVhkeHVUaTd6NFJBQ0g1QkFrS0FBQUFMQUFBQUFBMkFEWUFBQVRPRU1oSnE3MDQ2ODI3LzJBb2ptUnBubWlxQXNJd0NLc3BFRFFCeCtOUUV3T2U3ejFmYUZhN0NVR3QxMUZZTU5BTUJWTFNTQ3JvYW9Qb2NFY1ZPWGNFZytoS0M1TEF0VEhRaEthSmlMUnU2THNUdjEzeTBJSE1PeXc5QjE4R2ZuK0Zob2VJaVlvWkNBazBDUWlMRmdwb0NobFRSd2h0QkpFV2NEWkNqbTBKRjN4bU1adHVGcVpDcVFRWG4za29vbWlrc0hpWm01MlNBSlJnbHJ3VGpZKzd3Y2JIeU1uS0U1Z296VzljSjdFL1dDZXNhdFVtMTF0RjB0RWp6eks0eTRuaHh0UEkyOGJxd2VqSTV1VHhKaEVBSWZrRUNRb0FBQUFzQUFBQUFEWUFOZ0FBQk1zUXlFbXJ2VGpyemJ2L1lDaU9aR21lYUtvQ3dqQUlxeWtRTkFISDQxQVRBNTd2UFY5b1Zyc0pRYTNYY1lsS0dtV3VKM0luRlJGcDFZNnVGaXh0YVYzUWwzY2FoejlYMnltZDdUaFRiNlo4VHEvYjcvaTh2R0NnR1FvYWNVSUZab0FYYkVkOU93UUdHR1pIaXpXT1FKQ1JCQmlJUW9vN2paaFJTd2RtQjNvVUI0b0dvNlNxcTZ5dE1RZ0pOQWtJckFxUkNpT0NJd2lXQkxSVFJTV3hsZ2toanlTOU5NYVV5TWxEVk1LOXhVT2ZKYnlXdjNxMmk3aEx1aFd3c3RsQ21hdkg1c3lyNWVyVnJ1NDRFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWlaY2dVR05BWUZKSk1pQldhZ1E0TWxuVHNFQmlLTElxczFya0Ftc1RSV3FDU3FPNjFXa1JrSUNUUUpDQmNIWmdkSENyRUt4cW9HeVVJSXRnVEZlc0syQ1h2VXQzcmNCSHZZc2RwNjA3Yldlc3VyelpYQncrZ2lFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2ditMd2VFMS8yTDJ4K1ZCbG1TNFVZaDBLSkZvRkhqWHhSY245N2xKV1dsNWdTQ0FrMENRaVdDanMwQ3BRSW9qV2ZKWk1kbktjRUNhcURJSzQxWGtBaHREUzJYQ0d0cDdBa2p4Nm1ycW5Ca1NLaG9xUVhCUVkwQmdWTG01M0dGUVZtMHBUUG9nYVZ0Tit1bGR3NzNwUUhaZ2VXQjl3RzZwa29FUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3bEJyZGR4aVVvYVphNG5jaWNWRVduVmpxNFdMRzFwWGRDWGR4cUhQMWZiS1ozdE9GTnZwbnhPcjl2dktVU0Nsa0RnTFFvN05BcC9Fd2lDTlg1Q2NSWjdpQVFKaTFRWGp6VkNacFNWQkpkQUY0NklrVDVzRjRlUGlxSlJHWUdDaElXR2puMnVzck8wdFhZRkJqUUdCYlFGWnJ4UVNpSzVnZ1l5a3lHVkpwakpqOHVkSWNRN3hpV2pJUWRtQjJ1cEl3ZkVCdHEySG95ejFyUE01OURseUxUazR1OHBFUUFoK1FRSkNnQUFBQ3dBQUFBQU5nQTJBQUFFekJESVNhdTlPT3ZOdS85Z0tJNWthWjVvcWdMQ01BaXJLUkEwQWNmalVCTURudTg5WDJoV3V3a1JDVm9Db1dtOWhCTEZqcWFBZGhEVEdyUGtOSDZTV1VLQ3UvTjJ3cldTcmhiOG9HbHFZQWljSFpPSU5ETUhHOTdlWFhvZFVsTlZWbGRnUzRhS2k0eU5qbzhGQmpRR0JZOFhCV3MwQTVWUVhSbVNVd2FkWlJob1VKazhwV0duY2hlZ082SkNlRFlZQjZnREIxYWVHUWVnQnJtV3djTER4TVhHeDF5QUtic2lzNEVnemo5c0o3ZlNtdFN0UTZReTI4M0tLTXpJamVIRTBjYlY1OW5sM2NYazR1OG9FUUE3KSBuby1yZXBlYXQgY2VudGVyIGNlbnRlcjtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDMycHggMzJweDtcbn1cbi5teC10YWJjb250YWluZXItdGFicyB7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuLm14LXRhYmNvbnRhaW5lci10YWJzIGxpIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG59XG4ubXgtdGFiY29udGFpbmVyLWluZGljYXRvciB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGJhY2tncm91bmQ6ICNmMmRlZGU7XG4gICAgYm9yZGVyLXJhZGl1czogOHB4O1xuICAgIGNvbG9yOiAjYjk0YTQ4O1xuICAgIHRvcDogMHB4O1xuICAgIHJpZ2h0OiAtNXB4O1xuICAgIHdpZHRoOiAxNnB4O1xuICAgIGhlaWdodDogMTZweDtcbiAgICBsaW5lLWhlaWdodDogMTZweDtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBmb250LXNpemU6IDEwcHg7XG4gICAgZm9udC13ZWlnaHQ6IDYwMDtcbiAgICB6LWluZGV4OiAxOyAvKiBpbmRpY2F0b3Igc2hvdWxkIG5vdCBoaWRlIGJlaGluZCBvdGhlciB0YWIgKi9cbn1cbiIsIi8qIGJhc2Ugc3RydWN0dXJlICovXG4ubXgtZ3JpZCB7XG4gICAgcGFkZGluZzogOHB4O1xuICAgIG92ZXJmbG93OiBoaWRkZW47IC8qIHRvIHByZXZlbnQgYW55IG1hcmdpbiBmcm9tIGVzY2FwaW5nIGdyaWQgYW5kIGZvb2JhcmluZyBvdXIgc2l6ZSBjYWxjdWxhdGlvbnMgKi9cbn1cbi5teC1ncmlkLWNvbnRyb2xiYXIsIC5teC1ncmlkLXNlYXJjaGJhciB7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBqdXN0aWZ5LWNvbnRlbnQ6IHNwYWNlLWJldHdlZW47XG4gICAgZmxleC13cmFwOiB3cmFwO1xufVxuLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uLFxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIC5teC1idXR0b24ge1xuICAgIG1hcmdpbi1ib3R0b206IDhweDtcbn1cblxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIC5teC1idXR0b24gKyAubXgtYnV0dG9uLFxuLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uICsgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWxlZnQ6IDAuM2VtO1xufVxuXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXNlYXJjaC1jb250cm9scyAubXgtYnV0dG9uICsgLm14LWJ1dHRvbixcbltkaXI9XCJydGxcIl0gLm14LWdyaWQtY29udHJvbGJhciAubXgtYnV0dG9uICsgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWxlZnQ6IDA7XG4gICAgbWFyZ2luLXJpZ2h0OiAwLjNlbTtcbn1cblxuLm14LWdyaWQtcGFnaW5nYmFyLFxuLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gICAgYWxpZ24taXRlbXM6IGJhc2VsaW5lO1xuICAgIG1hcmdpbi1sZWZ0OiBhdXRvO1xufVxuXG4ubXgtZ3JpZC10b29sYmFyLCAubXgtZ3JpZC1zZWFyY2gtaW5wdXRzIHtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbiAgICBmbGV4OiAxO1xufVxuXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXRvb2xiYXIsXG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXNlYXJjaC1pbnB1dHMge1xuICAgIG1hcmdpbi1sZWZ0OiA1cHg7XG4gICAgbWFyZ2luLXJpZ2h0OiAwcHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1ncmlkLXBhZ2luZ2JhcixcbltkaXI9XCJydGxcIl0gLm14LWdyaWQtc2VhcmNoLWNvbnRyb2xzIHtcbiAgICBtYXJnaW4tbGVmdDogMHB4O1xuICAgIG1hcmdpbi1yaWdodDogYXV0bztcbn1cblxuLm14LWdyaWQtcGFnaW5nLXN0YXR1cyB7XG4gICAgcGFkZGluZzogMCA4cHggNXB4O1xufVxuXG4vKiBzZWFyY2ggZmllbGRzICovXG4ubXgtZ3JpZC1zZWFyY2gtaXRlbSB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuLm14LWdyaWQtc2VhcmNoLWxhYmVsIHtcbiAgICB3aWR0aDogMTEwcHg7XG4gICAgcGFkZGluZzogMCA1cHg7XG4gICAgdGV4dC1hbGlnbjogcmlnaHQ7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cbltkaXI9XCJydGxcIl0gLm14LWdyaWQtc2VhcmNoLWxhYmVsIHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LWdyaWQtc2VhcmNoLWlucHV0IHtcbiAgICB3aWR0aDogMTUwcHg7XG4gICAgcGFkZGluZzogMCA1cHg7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG59XG4ubXgtZ3JpZC1zZWFyY2gtbWVzc2FnZSB7XG4gICAgZmxleC1iYXNpczogMTAwJTtcbn1cblxuLyogd2lkZ2V0IGNvbWJpbmF0aW9ucyAqL1xuLm14LWRhdGF2aWV3IC5teC1ncmlkIHtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIGJvcmRlci1yYWRpdXM6IDNweDtcbn1cbiIsIi5teC1jYWxlbmRhciB7XG4gICAgei1pbmRleDogMTAwMDtcbn1cblxuLm14LWNhbGVuZGFyLW1vbnRoLWRyb3Bkb3duLW9wdGlvbnMge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbn1cblxuLm14LWNhbGVuZGFyLCAubXgtY2FsZW5kYXItbW9udGgtZHJvcGRvd24ge1xuICAgIHVzZXItc2VsZWN0OiBub25lO1xufVxuXG4ubXgtY2FsZW5kYXItbW9udGgtY3VycmVudCB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4ubXgtY2FsZW5kYXItbW9udGgtc3BhY2VyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgaGVpZ2h0OiAwcHg7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB2aXNpYmlsaXR5OiBoaWRkZW47XG59XG5cbi5teC1jYWxlbmRhciwgLm14LWNhbGVuZGFyLW1vbnRoLWRyb3Bkb3duLW9wdGlvbnMge1xuICAgIGJvcmRlcjogMXB4IHNvbGlkIGxpZ2h0Z3JleTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB3aGl0ZTtcbn1cbiIsIi5teC1kYXRhZ3JpZCB0ciB7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xufVxuXG4ubXgtZGF0YWdyaWQgdHIubXgtZGF0YWdyaWQtcm93LWVtcHR5IHtcbiAgICBjdXJzb3I6IGRlZmF1bHQ7XG59XG5cbi5teC1kYXRhZ3JpZCB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbWF4LXdpZHRoOiAxMDAlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuLm14LWRhdGFncmlkIHRoLCAubXgtZGF0YWdyaWQgdGQge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICBsaW5lLWhlaWdodDogMS40Mjg1NzE0MztcbiAgICB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNkZGQ7XG59XG5cbi8qIGhlYWQgKi9cbi5teC1kYXRhZ3JpZCB0aCB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlOyAvKiBSZXF1aXJlZCBmb3IgdGhlIHBvc2l0aW9uaW5nIG9mIHRoZSBjb2x1bW4gcmVzaXplcnMgKi9cbiAgICBib3JkZXItYm90dG9tLXdpZHRoOiAycHg7XG59XG4ubXgtZGF0YWdyaWQtaGVhZC1jYXB0aW9uIHtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG4ubXgtZGF0YWdyaWQtc29ydC1pY29uIHtcbiAgICBmbG9hdDogcmlnaHQ7XG4gICAgcGFkZGluZy1sZWZ0OiA1cHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kYXRhZ3JpZC1zb3J0LWljb24ge1xuICAgIGZsb2F0OiBsZWZ0O1xuICAgIHBhZGRpbmc6IDAgNXB4IDAgMDtcbn1cbi5teC1kYXRhZ3JpZC1jb2x1bW4tcmVzaXplciB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICBsZWZ0OiAtNnB4O1xuICAgIHdpZHRoOiAxMHB4O1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBjdXJzb3I6IGNvbC1yZXNpemU7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kYXRhZ3JpZC1jb2x1bW4tcmVzaXplciB7XG4gICAgbGVmdDogYXV0bztcbiAgICByaWdodDogLTZweDtcbn1cblxuLyogYm9keSAqL1xuLm14LWRhdGFncmlkIHRib2R5IHRyOmZpcnN0LWNoaWxkIHRkIHtcbiAgICBib3JkZXItdG9wOiBub25lO1xufVxuLm14LWRhdGFncmlkIHRib2R5IHRyOm50aC1jaGlsZCgybisxKSB0ZCB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI2Y5ZjlmOTtcbn1cbi5teC1kYXRhZ3JpZCB0Ym9keSAuc2VsZWN0ZWQgdGQge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNlZWU7XG59XG4ubXgtZGF0YWdyaWQtZGF0YS13cmFwcGVyIHtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG4ubXgtZGF0YWdyaWQgdGJvZHkgaW1nIHtcbiAgICBtYXgtd2lkdGg6IDE2cHg7XG4gICAgbWF4LWhlaWdodDogMTZweDtcbn1cbi5teC1kYXRhZ3JpZCBpbnB1dCxcbi5teC1kYXRhZ3JpZCBzZWxlY3QsXG4ubXgtZGF0YWdyaWQgdGV4dGFyZWEge1xuICAgIGN1cnNvcjogYXV0bztcbn1cblxuLyogZm9vdCAqL1xuLm14LWRhdGFncmlkIHRmb290IHRoLFxuLm14LWRhdGFncmlkIHRmb290IHRkIHtcbiAgICBwYWRkaW5nOiAzcHggOHB4O1xufVxuLm14LWRhdGFncmlkIHRmb290IHRoIHtcbiAgICBib3JkZXItdG9wOiAxcHggc29saWQgI2RkZDtcbn1cbi5teC1kYXRhZ3JpZC5teC1jb250ZW50LWxvYWRpbmcgLm14LWNvbnRlbnQtbG9hZGVyIHtcbiAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgd2lkdGg6IDkwJTtcbiAgICBhbmltYXRpb246IHBsYWNlaG9sZGVyR3JhZGllbnQgMXMgbGluZWFyIGluZmluaXRlO1xuICAgIGJvcmRlci1yYWRpdXM6IDRweDtcbiAgICBiYWNrZ3JvdW5kOiAjRjVGNUY1O1xuICAgIGJhY2tncm91bmQ6IHJlcGVhdGluZy1saW5lYXItZ3JhZGllbnQodG8gcmlnaHQsICNGNUY1RjUgMCUsICNGNUY1RjUgNSUsICNGOUY5RjkgNTAlLCAjRjVGNUY1IDk1JSwgI0Y1RjVGNSAxMDAlKTtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDIwMHB4IDEwMHB4O1xuICAgIGFuaW1hdGlvbi1maWxsLW1vZGU6IGJvdGg7XG59XG5Aa2V5ZnJhbWVzIHBsYWNlaG9sZGVyR3JhZGllbnQge1xuICAgIDAlIHsgYmFja2dyb3VuZC1wb3NpdGlvbjogMTAwcHggMDsgfVxuICAgIDEwMCUgeyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAtMTAwcHggMDsgfVxufVxuXG4ubXgtZGF0YWdyaWQtdGFibGUtcmVzaXppbmcgdGgsXG4ubXgtZGF0YWdyaWQtdGFibGUtcmVzaXppbmcgdGQge1xuICAgIGN1cnNvcjogY29sLXJlc2l6ZSAhaW1wb3J0YW50O1xufVxuIiwiLm14LXRlbXBsYXRlZ3JpZC1jb250ZW50LXdyYXBwZXIge1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbn1cbi5teC10ZW1wbGF0ZWdyaWQtcm93IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1yb3c7XG59XG4ubXgtdGVtcGxhdGVncmlkLWl0ZW0ge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIGJvcmRlcjogMXB4IHNvbGlkICNkZGQ7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG59XG4ubXgtdGVtcGxhdGVncmlkLWVtcHR5IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xufVxuLm14LXRlbXBsYXRlZ3JpZC1pdGVtLnNlbGVjdGVkIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNWY1O1xufVxuLm14LXRlbXBsYXRlZ3JpZC1pdGVtIC5teC10YWJsZSB0aCxcbi5teC10ZW1wbGF0ZWdyaWQtaXRlbSAubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDJweCA4cHg7XG59XG4iLCIubXgtc2Nyb2xsY29udGFpbmVyLWhvcml6b250YWwge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG59XG4ubXgtc2Nyb2xsY29udGFpbmVyLWhvcml6b250YWwgPiBkaXYge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdmVydGljYWwtYWxpZ246IHRvcDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItd3JhcHBlciB7XG4gICAgcGFkZGluZzogMTBweDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItbmVzdGVkIHtcbiAgICBwYWRkaW5nOiAwO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1maXhlZCA+IC5teC1zY3JvbGxjb250YWluZXItbWlkZGxlID4gLm14LXNjcm9sbGNvbnRhaW5lci13cmFwcGVyLFxuLm14LXNjcm9sbGNvbnRhaW5lci1maXhlZCA+IC5teC1zY3JvbGxjb250YWluZXItbGVmdCA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcixcbi5teC1zY3JvbGxjb250YWluZXItZml4ZWQgPiAubXgtc2Nyb2xsY29udGFpbmVyLWNlbnRlciA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlcixcbi5teC1zY3JvbGxjb250YWluZXItZml4ZWQgPiAubXgtc2Nyb2xsY29udGFpbmVyLXJpZ2h0ID4gLm14LXNjcm9sbGNvbnRhaW5lci13cmFwcGVyIHtcbiAgICBvdmVyZmxvdzogYXV0bztcbn1cblxuLm14LXNjcm9sbGNvbnRhaW5lci1tb3ZlLWluIHtcbiAgICB0cmFuc2l0aW9uOiBsZWZ0IDI1MG1zIGVhc2Utb3V0O1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1tb3ZlLW91dCB7XG4gICAgdHJhbnNpdGlvbjogbGVmdCAyNTBtcyBlYXNlLWluO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zaHJpbmsgLm14LXNjcm9sbGNvbnRhaW5lci10b2dnbGVhYmxlIHtcbiAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiB3aWR0aDtcbn1cblxuLm14LXNjcm9sbGNvbnRhaW5lci10b2dnbGVhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zbGlkZSA+IC5teC1zY3JvbGxjb250YWluZXItdG9nZ2xlYWJsZSA+IC5teC1zY3JvbGxjb250YWluZXItd3JhcHBlciB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIHotaW5kZXg6IDE7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogaW5oZXJpdDtcbn1cbi5teC1zY3JvbGxjb250YWluZXItcHVzaCB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLm14LXNjcm9sbGNvbnRhaW5lci1zaHJpbmsgPiAubXgtc2Nyb2xsY29udGFpbmVyLXRvZ2dsZWFibGUge1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG59XG4ubXgtc2Nyb2xsY29udGFpbmVyLXB1c2gubXgtc2Nyb2xsY29udGFpbmVyLW9wZW4gPiBkaXYsXG4ubXgtc2Nyb2xsY29udGFpbmVyLXNsaWRlLm14LXNjcm9sbGNvbnRhaW5lci1vcGVuID4gZGl2IHtcbiAgICBwb2ludGVyLWV2ZW50czogbm9uZTtcbn1cbi5teC1zY3JvbGxjb250YWluZXItcHVzaC5teC1zY3JvbGxjb250YWluZXItb3BlbiA+IC5teC1zY3JvbGxjb250YWluZXItdG9nZ2xlYWJsZSxcbi5teC1zY3JvbGxjb250YWluZXItc2xpZGUubXgtc2Nyb2xsY29udGFpbmVyLW9wZW4gPiAubXgtc2Nyb2xsY29udGFpbmVyLXRvZ2dsZWFibGUge1xuICAgIHBvaW50ZXItZXZlbnRzOiBhdXRvO1xufVxuIiwiLm14LW5hdmJhci1pdGVtIGltZyxcbi5teC1uYXZiYXItc3ViaXRlbSBpbWcge1xuICAgIGhlaWdodDogMTZweDtcbn1cblxuIiwiLm14LW5hdmlnYXRpb250cmVlIC5uYXZiYXItaW5uZXIge1xuICAgIHBhZGRpbmctbGVmdDogMDtcbiAgICBwYWRkaW5nLXJpZ2h0OiAwO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIHtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHtcbiAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgI2RmZTZlYTtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSBsaTpsYXN0LWNoaWxkIHtcbiAgICBib3JkZXItc3R5bGU6IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgYSB7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgcGFkZGluZzogNXB4IDEwcHg7XG4gICAgY29sb3I6ICM3Nzc7XG4gICAgdGV4dC1zaGFkb3c6IDAgMXB4IDAgI2ZmZjtcbiAgICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgYS5hY3RpdmUge1xuICAgIGNvbG9yOiAjRkZGO1xuICAgIHRleHQtc2hhZG93OiBub25lO1xuICAgIGJhY2tncm91bmQ6ICMzNDk4REI7XG4gICAgYm9yZGVyLXJhZGl1czogM3B4O1xufVxuLm14LW5hdmlnYXRpb250cmVlIC5teC1uYXZpZ2F0aW9udHJlZS1jb2xsYXBzZWQgdWwge1xuICAgIGRpc3BsYXk6IG5vbmU7XG59XG4ubXgtbmF2aWdhdGlvbnRyZWUgdWwge1xuICAgIG1hcmdpbjogMDtcbiAgICBwYWRkaW5nOiAwO1xufVxuLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHtcbiAgICBwYWRkaW5nOiA1cHggMDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCB7XG4gICAgcGFkZGluZzogMDtcbiAgICBtYXJnaW4tbGVmdDogMTBweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB7XG4gICAgbWFyZ2luLWxlZnQ6IDhweDtcbiAgICBwYWRkaW5nOiA1cHggMDtcbn1cbltkaXI9XCJydGxcIl0gLm14LW5hdmlnYXRpb250cmVlIHVsIGxpIHVsIGxpIHtcbiAgICBtYXJnaW4tbGVmdDogYXV0bztcbiAgICBtYXJnaW4tcmlnaHQ6IDhweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB1bCBsaSB7XG4gICAgZm9udC1zaXplOiAxMHB4O1xuICAgIHBhZGRpbmctdG9wOiAzcHg7XG4gICAgcGFkZGluZy1ib3R0b206IDNweDtcbn1cbi5teC1uYXZpZ2F0aW9udHJlZSB1bCBsaSB1bCBsaSB1bCBsaSBpbWcge1xuICAgIHZlcnRpY2FsLWFsaWduOiB0b3A7XG59XG4iLCIubXgtbGluayBpbWcsXG4ubXgtYnV0dG9uIGltZyB7XG4gICAgaGVpZ2h0OiAxNnB4O1xufVxuLm14LWxpbmsge1xuICAgIHBhZGRpbmc6IDZweCAxMnB4O1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cbiIsIi5teC1ncm91cGJveCB7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbn1cbi5teC1ncm91cGJveC1oZWFkZXIge1xuICAgIG1hcmdpbjogMDtcbiAgICBwYWRkaW5nOiAxMHB4IDE1cHg7XG4gICAgY29sb3I6ICNlZWU7XG4gICAgYmFja2dyb3VuZDogIzMzMztcbiAgICBmb250LXNpemU6IGluaGVyaXQ7XG4gICAgbGluZS1oZWlnaHQ6IGluaGVyaXQ7XG4gICAgYm9yZGVyLXJhZGl1czogNHB4IDRweCAwIDA7XG59XG4ubXgtZ3JvdXBib3gtY29sbGFwc2libGUgPiAubXgtZ3JvdXBib3gtaGVhZGVyIHtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZ3JvdXBib3guY29sbGFwc2VkID4gLm14LWdyb3VwYm94LWhlYWRlciB7XG4gICAgYm9yZGVyLXJhZGl1czogNHB4O1xufVxuLm14LWdyb3VwYm94LWJvZHkge1xuICAgIHBhZGRpbmc6IDhweDtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIGJvcmRlci1yYWRpdXM6IDRweDtcbn1cbi5teC1ncm91cGJveC5jb2xsYXBzZWQgPiAubXgtZ3JvdXBib3gtYm9keSB7XG4gICAgZGlzcGxheTogbm9uZTtcbn1cbi5teC1ncm91cGJveC1oZWFkZXIgKyAubXgtZ3JvdXBib3gtYm9keSB7XG4gICAgYm9yZGVyLXRvcDogbm9uZTtcbiAgICBib3JkZXItcmFkaXVzOiAwIDAgNHB4IDRweDtcbn1cbi5teC1ncm91cGJveC1jb2xsYXBzZS1pY29uIHtcbiAgICBmbG9hdDogcmlnaHQ7XG59XG5bZGlyPVwicnRsXCJdIC5teC1ncm91cGJveC1jb2xsYXBzZS1pY29uIHtcbiAgICBmbG9hdDogbGVmdDtcbn1cbiIsIi5teC1kYXRhdmlldyB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLm14LWRhdGF2aWV3LWNvbnRyb2xzIHtcbiAgICBwYWRkaW5nOiAxOXB4IDIwcHggMTJweDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNWY1O1xuICAgIGJvcmRlci10b3A6IDFweCBzb2xpZCAjZWVlO1xufVxuXG4ubXgtZGF0YXZpZXctY29udHJvbHMgLm14LWJ1dHRvbiB7XG4gICAgbWFyZ2luLWJvdHRvbTogOHB4O1xufVxuXG4ubXgtZGF0YXZpZXctY29udHJvbHMgLm14LWJ1dHRvbiArIC5teC1idXR0b24ge1xuICAgIG1hcmdpbi1sZWZ0OiAwLjNlbTtcbn1cblxuLm14LWRhdGF2aWV3LW1lc3NhZ2Uge1xuICAgIGJhY2tncm91bmQ6ICNmZmY7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHRvcDogMDtcbiAgICByaWdodDogMDtcbiAgICBib3R0b206IDA7XG4gICAgbGVmdDogMDtcbn1cbi5teC1kYXRhdmlldy1tZXNzYWdlID4gZGl2IHtcbiAgICBkaXNwbGF5OiB0YWJsZTtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG59XG4ubXgtZGF0YXZpZXctbWVzc2FnZSA+IGRpdiA+IHAge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG59XG5cbi8qIFRvcC1sZXZlbCBkYXRhIHZpZXcgaW4gd2luZG93IGlzIGEgc3BlY2lhbCBjYXNlLCBoYW5kbGUgaXQgYXMgc3VjaC4gKi9cbi5teC13aW5kb3ctdmlldyAubXgtd2luZG93LWJvZHkge1xuICAgIHBhZGRpbmc6IDA7XG59XG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRlbnQsXG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LXBsYWNlaG9sZGVyID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRlbnQge1xuICAgIHBhZGRpbmc6IDE1cHg7XG59XG4ubXgtd2luZG93LXZpZXcgLm14LXdpbmRvdy1ib2R5ID4gLm14LWRhdGF2aWV3ID4gLm14LWRhdGF2aWV3LWNvbnRyb2xzLFxuLm14LXdpbmRvdy12aWV3IC5teC13aW5kb3ctYm9keSA+IC5teC1wbGFjZWhvbGRlciA+IC5teC1kYXRhdmlldyA+IC5teC1kYXRhdmlldy1jb250cm9scyB7XG4gICAgYm9yZGVyLXJhZGl1czogMHB4IDBweCA2cHggNnB4O1xufVxuIiwiLm14LWRpYWxvZyB7XG4gICAgcG9zaXRpb246IGZpeGVkO1xuICAgIGxlZnQ6IGF1dG87XG4gICAgcmlnaHQ6IGF1dG87XG4gICAgcGFkZGluZzogMDtcbiAgICB3aWR0aDogNTAwcHg7XG4gICAgLyogSWYgdGhlIG1hcmdpbiBpcyBzZXQgdG8gYXV0bywgSUU5IHJlcG9ydHMgdGhlIGNhbGN1bGF0ZWQgdmFsdWUgb2YgdGhlXG4gICAgICogbWFyZ2luIGFzIHRoZSBhY3R1YWwgdmFsdWUuIE90aGVyIGJyb3dzZXJzIHdpbGwganVzdCByZXBvcnQgMC4gRWxpbWluYXRlXG4gICAgICogdGhpcyBkaWZmZXJlbmNlIGJ5IHNldHRpbmcgbWFyZ2luIHRvIDAgZm9yIGV2ZXJ5IGJyb3dzZXIuICovXG4gICAgbWFyZ2luOiAwO1xufVxuLm14LWRpYWxvZy1oZWFkZXIge1xuICAgIGN1cnNvcjogbW92ZTtcbn1cbi5teC1kaWFsb2ctYm9keSB7XG4gICAgb3ZlcmZsb3c6IGF1dG87XG59XG4iLCIubXgtd2luZG93IHtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgbGVmdDogYXV0bztcbiAgICByaWdodDogYXV0bztcbiAgICBwYWRkaW5nOiAwO1xuICAgIHdpZHRoOiA2MDBweDtcbiAgICAvKiBJZiB0aGUgbWFyZ2luIGlzIHNldCB0byBhdXRvLCBJRTkgcmVwb3J0cyB0aGUgY2FsY3VsYXRlZCB2YWx1ZSBvZiB0aGVcbiAgICAgKiBtYXJnaW4gYXMgdGhlIGFjdHVhbCB2YWx1ZS4gT3RoZXIgYnJvd3NlcnMgd2lsbCBqdXN0IHJlcG9ydCAwLiBFbGltaW5hdGVcbiAgICAgKiB0aGlzIGRpZmZlcmVuY2UgYnkgc2V0dGluZyBtYXJnaW4gdG8gMCBmb3IgZXZlcnkgYnJvd3Nlci4gKi9cbiAgICBtYXJnaW46IDA7XG59XG4ubXgtd2luZG93LWNvbnRlbnQge1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xufVxuLm14LXdpbmRvdy1hY3RpdmUgLm14LXdpbmRvdy1oZWFkZXIge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNmNWY1ZjU7XG4gICAgYm9yZGVyLXJhZGl1czogNnB4IDZweCAwIDA7XG59XG4ubXgtd2luZG93LWhlYWRlciB7XG4gICAgY3Vyc29yOiBtb3ZlO1xufVxuLm14LXdpbmRvdy1ib2R5IHtcbiAgICBvdmVyZmxvdzogYXV0bztcbn1cbiIsIi5teC1kcm9wZG93bi1saXN0ICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1kcm9wZG93bi1saXN0IGltZyB7XG4gICAgd2lkdGg6IDM1cHg7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1kcm9wZG93bi1saXN0IGltZyB7XG4gICAgbWFyZ2luLWxlZnQ6IDEwcHg7XG4gICAgbWFyZ2luLXJpZ2h0OiBhdXRvO1xufVxuXG4ubXgtZHJvcGRvd24tbGlzdCB7XG4gICAgcGFkZGluZzogMDtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LWRyb3Bkb3duLWxpc3QgPiBsaSB7XG4gICAgcGFkZGluZzogNXB4IDEwcHggMTBweDtcbiAgICBib3JkZXI6IDFweCAjZGRkO1xuICAgIGJvcmRlci1zdHlsZTogc29saWQgc29saWQgbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xufVxuLm14LWRyb3Bkb3duLWxpc3QgPiBsaTpmaXJzdC1jaGlsZCB7XG4gICAgYm9yZGVyLXRvcC1sZWZ0LXJhZGl1czogNHB4O1xuICAgIGJvcmRlci10b3AtcmlnaHQtcmFkaXVzOiA0cHg7XG59XG4ubXgtZHJvcGRvd24tbGlzdCA+IGxpOmxhc3QtY2hpbGQge1xuICAgIGJvcmRlci1ib3R0b20tc3R5bGU6IHNvbGlkO1xuICAgIGJvcmRlci1ib3R0b20tbGVmdC1yYWRpdXM6IDRweDtcbiAgICBib3JkZXItYm90dG9tLXJpZ2h0LXJhZGl1czogNHB4O1xufVxuLm14LWRyb3Bkb3duLWxpc3Qtc3RyaXBlZCA+IGxpOm50aC1jaGlsZCgybisxKSB7XG4gICAgYmFja2dyb3VuZDogI2Y5ZjlmOTtcbn1cbi5teC1kcm9wZG93bi1saXN0ID4gbGk6aG92ZXIge1xuICAgIGJhY2tncm91bmQ6ICNmNWY1ZjU7XG59XG4iLCIubXgtaGVhZGVyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgcGFkZGluZzogOXB4O1xuICAgIGJhY2tncm91bmQ6ICMzMzM7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuLm14LWhlYWRlci1jZW50ZXIge1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICBjb2xvcjogI2VlZTtcbiAgICBsaW5lLWhlaWdodDogMzBweDsgLyogaGVpZ2h0IG9mIGJ1dHRvbnMgKi9cbn1cbmJvZHlbZGlyPVwibHRyXCJdIC5teC1oZWFkZXItbGVmdCxcbmJvZHlbZGlyPVwicnRsXCJdIC5teC1oZWFkZXItcmlnaHQge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB0b3A6IDlweDtcbiAgICBsZWZ0OiA5cHg7XG59XG5ib2R5W2Rpcj1cImx0clwiXSAubXgtaGVhZGVyLXJpZ2h0LFxuYm9keVtkaXI9XCJydGxcIl0gLm14LWhlYWRlci1sZWZ0IHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgdG9wOiA5cHg7XG4gICAgcmlnaHQ6IDlweDtcbn1cbiIsIi5teC10aXRsZSB7XG4gICAgbWFyZ2luLWJvdHRvbTogMHB4O1xuICAgIG1hcmdpbi10b3A6IDBweDtcbn1cbiIsIi5teC1saXN0dmlldyB7XG4gICAgcGFkZGluZzogOHB4O1xufVxuLm14LWxpc3R2aWV3ID4gdWwge1xuICAgIHBhZGRpbmc6IDBweDtcbiAgICBsaXN0LXN0eWxlOiBub25lO1xufVxuLm14LWxpc3R2aWV3ID4gdWwgPiBsaSB7XG4gICAgcGFkZGluZzogNXB4IDEwcHggMTBweDtcbiAgICBib3JkZXI6IDFweCAjZGRkO1xuICAgIGJvcmRlci1zdHlsZTogc29saWQgc29saWQgbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuICAgIG91dGxpbmU6IG5vbmU7XG59XG4ubXgtbGlzdHZpZXcgPiB1bCA+IGxpOmZpcnN0LWNoaWxkIHtcbiAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiA0cHg7XG4gICAgYm9yZGVyLXRvcC1yaWdodC1yYWRpdXM6IDRweDtcbn1cbi5teC1saXN0dmlldyA+IHVsID4gbGk6bGFzdC1jaGlsZCB7XG4gICAgYm9yZGVyLWJvdHRvbS1zdHlsZTogc29saWQ7XG4gICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogNHB4O1xuICAgIGJvcmRlci1ib3R0b20tcmlnaHQtcmFkaXVzOiA0cHg7XG59XG4ubXgtbGlzdHZpZXcgbGk6bnRoLWNoaWxkKDJuKzEpIHtcbiAgICBiYWNrZ3JvdW5kOiAjZjlmOWY5O1xufVxuLm14LWxpc3R2aWV3IGxpOm50aC1jaGlsZCgybisxKTpob3ZlciB7XG4gICAgYmFja2dyb3VuZDogI2Y1ZjVmNTtcbn1cbi5teC1saXN0dmlldyA+IHVsID4gbGkuc2VsZWN0ZWQge1xuICAgIGJhY2tncm91bmQ6ICNlZWU7XG59XG4ubXgtbGlzdHZpZXctY2xpY2thYmxlIHVsICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1saXN0dmlldy1lbXB0eSB7XG4gICAgY29sb3I6ICM5OTk7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuLm14LWxpc3R2aWV3IC5teC1saXN0dmlldy1sb2FkaW5nIHtcbiAgICBwYWRkaW5nOiAxMHB4O1xuICAgIGxpbmUtaGVpZ2h0OiAwO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi5teC1saXN0dmlldy1zZWFyY2hiYXIge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgbWFyZ2luLWJvdHRvbTogMTBweDtcbn1cbi5teC1saXN0dmlldy1zZWFyY2hiYXIgPiBpbnB1dCB7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtbGlzdHZpZXctc2VhcmNoYmFyID4gYnV0dG9uIHtcbiAgICBtYXJnaW4tbGVmdDogNXB4O1xufVxuW2Rpcj1cInJ0bFwiXSAubXgtbGlzdHZpZXctc2VhcmNoYmFyID4gYnV0dG9uIHtcbiAgICBtYXJnaW4tbGVmdDogMDtcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbn1cbi5teC1saXN0dmlldy1zZWxlY3Rpb24ge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICBwYWRkaW5nOiAwIDE1cHggMCA1cHg7XG59XG5bZGlyPVwicnRsXCJdIC5teC1saXN0dmlldy1zZWxlY3Rpb24ge1xuICAgIHBhZGRpbmc6IDAgNXB4IDAgMTVweDtcbn1cbi5teC1saXN0dmlldy1zZWxlY3RhYmxlIC5teC1saXN0dmlldy1jb250ZW50IHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gICAgd2lkdGg6IDEwMCU7XG59XG4ubXgtbGlzdHZpZXcgLnNlbGVjdGVkIHtcbiAgICBiYWNrZ3JvdW5kOiAjZGVmO1xufVxuLm14LWxpc3R2aWV3IC5teC10YWJsZSB0aCxcbi5teC1saXN0dmlldyAubXgtdGFibGUgdGQge1xuICAgIHBhZGRpbmc6IDJweDtcbn1cbiIsIi5teC1sb2dpbiAuZm9ybS1jb250cm9sIHtcbiAgICBtYXJnaW4tdG9wOiAxMHB4O1xufVxuIiwiLm14LW1lbnViYXIge1xuICAgIHBhZGRpbmc6IDhweDtcbn1cbi5teC1tZW51YmFyLWljb24ge1xuICAgIGhlaWdodDogMTZweDtcbn1cbi5teC1tZW51YmFyLW1vcmUtaWNvbiB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHdpZHRoOiAxNnB4O1xuICAgIGhlaWdodDogMTZweDtcbiAgICBiYWNrZ3JvdW5kOiB1cmwoZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFDTUFBQUFqQ0FZQUFBQWUyYk5aQUFBQUdYUkZXSFJUYjJaMGQyRnlaUUJCWkc5aVpTQkpiV0ZuWlZKbFlXUjVjY2xsUEFBQUFLTkpSRUZVZU5waS9QLy9QOE5nQVV3TWd3aU1PbWJVTWFPT0dYWE1xR05HSFRQWUhNT0NUZkRzMmJNZVFLb09pSTFCWENCdU1qWTIza0ZyZFl6b1RRaWdSbThndFFXTEcwT0JCcXlobFRwYzBkU09JeFRyYUt3T3EyUFVjV2hXcDdFNnJJNjVpVVB6VFJxcncrcVlHaHlhbTJpc0R0TXh3RVMxQ1VnRkFmRnhxQkNJRGtKUGJOUldoelUzalJaNm80NFpkY3lvWTBZZE0rcVlVY2NNVXNjQUJCZ0FVWHBFakUvQnMvSUFBQUFBU1VWT1JLNUNZSUk9KSBuby1yZXBlYXQgY2VudGVyIGNlbnRlcjtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDE2cHggMTZweDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuIiwiLm14LW5hdmlnYXRpb25saXN0IHtcbiAgICBwYWRkaW5nOiA4cHg7XG59XG4ubXgtbmF2aWdhdGlvbmxpc3QgbGk6aG92ZXIsXG4ubXgtbmF2aWdhdGlvbmxpc3QgbGk6Zm9jdXMsXG4ubXgtbmF2aWdhdGlvbmxpc3QgbGkuYWN0aXZlIHtcbiAgICBjb2xvcjogI0ZGRjtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzQ5OERCO1xufVxuLm14LW5hdmlnYXRpb25saXN0ICoge1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1uYXZpZ2F0aW9ubGlzdCAudGFibGUgdGgsXG4ubXgtbmF2aWdhdGlvbmxpc3QgLnRhYmxlIHRkIHtcbiAgICBwYWRkaW5nOiAycHg7XG59XG4iLCIubXgtcHJvZ3Jlc3Mge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICB0b3A6IDMwJTtcbiAgICBsZWZ0OiAwO1xuICAgIHJpZ2h0OiAwO1xuICAgIG1hcmdpbjogYXV0bztcbiAgICB3aWR0aDogMjUwcHg7XG4gICAgbWF4LXdpZHRoOiA5MCU7XG4gICAgYmFja2dyb3VuZDogIzMzMztcbiAgICBvcGFjaXR5OiAwLjg7XG4gICAgei1pbmRleDogNTAwMDtcbiAgICBib3JkZXItcmFkaXVzOiA0cHg7XG4gICAgcGFkZGluZzogMjBweCAxNXB4O1xuICAgIHRyYW5zaXRpb246IG9wYWNpdHkgMC40cyBlYXNlLWluLW91dDtcbn1cbi5teC1wcm9ncmVzcy1oaWRkZW4ge1xuICAgIG9wYWNpdHk6IDA7XG59XG4ubXgtcHJvZ3Jlc3MtbWVzc2FnZSB7XG4gICAgY29sb3I6ICNmZmY7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIG1hcmdpbi1ib3R0b206IDE1cHg7XG59XG4ubXgtcHJvZ3Jlc3MtZW1wdHkgLm14LXByb2dyZXNzLW1lc3NhZ2Uge1xuICAgIGRpc3BsYXk6IG5vbmU7XG59XG4ubXgtcHJvZ3Jlc3MtaW5kaWNhdG9yIHtcbiAgICB3aWR0aDogNzBweDtcbiAgICBoZWlnaHQ6IDEwcHg7XG4gICAgbWFyZ2luOiBhdXRvO1xuICAgIGJhY2tncm91bmQ6IHVybChkYXRhOmltYWdlL2dpZjtiYXNlNjQsUjBsR09EbGhSZ0FLQU1RQUFEbzZPb0dCZ1ZwYVduQndjSTZPanF5c3JGSlNVbVJrWkQ4L1AweE1UTTdPenFlbnAxaFlXRjFkWFVoSVNISnljb2VIaDB0TFMxZFhWNmlvcU0vUHoyVmxaVDA5UFRjM04wQkFRSVdGaGRiVzFseGNYSzJ0clVGQlFUTXpNd0FBQUNIL0MwNUZWRk5EUVZCRk1pNHdBd0VBQUFBaCtRUUVEQUFBQUN3QUFBQUFSZ0FLQUFBRms2RG5YUmFHV1plb3JxU0pybkI3cHJBcXY3VjQweDdRL1VCQXpnZjhDV3ZFNGhHV0RBNkx4aEVVeU5OTmYxWHBOWHU1ZHJoZWt0Y0NzNHpMNTVYNVNsYVBNVjRNREg2VnIraFR1d29QMVl2NFJTWnhjNE4zaFh1SGYzRnJVMjBxakZDT0lwQkZraDZVUUphWVB5aGhNWjRzb0RhaVZsczlVMHNyVFZGSXFFOVFxU3FySFVzN09Ub2xNN2NqdVRnNXRyZkFJUUFoK1FRRURBQUFBQ3dBQUFBQUNnQUtBQUFGSktEbkhZV2lGSWZvUVZyclFxTXJhK1RzbG5acjV0ckpvN3dVYXdZVFZRb1VDa29VQWdBaCtRUUVEQUFBQUN3QUFBQUFHUUFLQUFBRldhRG5NY1N5RUpLb3JrZWhLTVdoUGx4dFA2c0thWHdQZVJLYmtNUElIWHBJellFd3RCRnloV1N2c0dqV0ZqbUZsS2VvV3JFcjdWYkJ0RDVYMFcyQllTVWF0MG9QYllqTGVYYkpuNGcwbVJDS2RpSVZCUlFVTVNJaEFDSDVCQVFNQUFBQUxBQUFBQUFvQUFvQUFBV0tvT2NsUXhBTWthaXVETEVzaExUT1I2RW94YUUyV2U4M005R0RReXcrZ2g2SVpzbUVlQ0srYUNZeGt4U3ZIQWFOeWRVY0JsTGZZRWJBRmdtelFwZFpDSVI3Z2RuQ1RGek1GT3Vsd3YyT3IrWjBkaXQ0ZVFwZ2IyTXJaWFJvSzJwNUJRbHZVek1NZEZsYmVUbzhVa0JCUTFoSFFVcGRUaUlrSmdOVVNCNHRFeE1FV3F3VkJSUVVPU0loQUNINUJBUU1BQUFBTEFBQUFBQTNBQW9BQUFXOG9PY2hoaUFZaUtpdXlSQUVRN1RPRExFc2hEU3ZSNkVvaFlQS3NTa2FIVHRQSThOc05wSVBqblQ2U0VJMDJDeGtaT3h1VXF0SWM1eEp6Q1RUTkljeE8yVGZtb1BCYXpUTUJ1VG1ZRVpRVHdrekJYQlpCUUowUlFJekFYbE1BVE1MZmxJTE13cURXQXFHaDRrcmk0eU9LNUNSa3l1VmxncHpoM1lyZUl4N0szMlJnQ3VDbGdVSWgxOHpDWXhsTkpGcmJaWnhIa1JlU0R0TFpFODdVV3BWTzFkd1d5SVlKU2RnU1MwdkEyWkpIalVURXdSczNoVUZGQlJCSWlFQUlma0VCQXdBQUFBc0FBQUFBRVlBQ2dBQUJmQ2c1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkROSzhNc1N3RXlVNTFLQ2dVaFlNSzBHazZBVVBIWmtwMURCdVpyTFl4ZkhDKzRNY1FvaW1iSVNPbnVwTmlVZDhiMlNxaXJXY1NNd2w0ejJITURtYUJHZ2NXYTA0V013WndWQVl6QTNaYUF6TUVmR0FFTXdXQ1pnVVloazBZTXdLTFV3SXpBWkJaQVRNTGxWOExNd3FhWlFxZG5xQXJvcU9sSzZlb3FpdXNyYThyc2JJS2haNklLNHFqalN1UHFKSXJsSzJYSzVteUJSZWViRE1JbzNFMHFIY3pESzE5ZjdLREhreHJVRHRTY0ZZN1dIWmNPMTU4WWp0a2dtZ2lKRXlnR0NJQ2d3c1ljb2JVdURFQUQ4RWVFeVlROEVPd1FnRUtGSktJQ0FFQUlma0VCQXdBQUFBc0R3QUFBRGNBQ2dBQUJicWc1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkROSzhNc1N3RWlRclFLUm9CTzQ5ancydzZrbzJNZE5wSVBqalk3R05rN0haU3JLWjRJMXRGcHVoTVlpYkp1amtNaTlkb21SbkdUY05za0o0T1pnUnZXUVFZYzBVWU13SjRUQUl6QVgxU0FUTUxnbGdMaFlhSUs0cUxqU3VQa0pJcmxKVUxjb1oxSzNlTGVpdDhrSDhyZ1pVRUY0WmZNd2lMWkRTUWFqTU1sWEFlUkY1SU8wdGpUenRSYVZVN1YyOWJJaVFtS0VraUdDNHdaVWsxTndOcjJEMFRFd1FNSWlFQUlma0VCQXdBQUFBc0hnQUFBQ2dBQ2dBQUJZZWc1MTBXaGxtWHFLNklJUWdHc3M3SkVBUkRwQUpkN3dNemtXTkRMRHFDbmtabXlXeU1mTkJPaWxXc2JtU3JDSE9iU1ZpaVBzdk1ZQzBhWmdNdWM0QUI5ekF6UVprb21BWFV5MERiRFYvSjUzVXJkM2dCWDI1aUsyUnpaeXRwZUFNWGJsSXpDSE5YTkhoZEhqeFJRRUZEVmtkQlNseE9JaVFtS0VnaUdDNHdXRWcxTndNSklpRUFJZmtFQkF3QUFBQXNMUUFBQUJrQUNnQUFCVldnNTEwV2hsbVhxSzZJSVFnR29nSmRiUU9yNm14ODc0eTJZQ2ZGNmhrM0NJdlFac2taamowRFpsbkQ1QVJRbm1CS3RhNndXWUdTMmx3OXM0WUxkWmhEWkpFZW1oQ1g4K3lPUHhISmhLcXJNQzR3TWg0aEFDSDVCQVFNQUFBQUxEd0FBQUFLQUFvQUFBVWlvT2RkRm9aWmwrZ0JYZXNDb3l0MzVPeVdkbXZtM2NtanZCUnJCaE9SVENoUkNBQTcpO1xufVxuIiwiLm14LXJlbG9hZC1ub3RpZmljYXRpb24ge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICB6LWluZGV4OiAxMDAxO1xuICAgIHRvcDogMDtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBwYWRkaW5nOiAxcmVtO1xuXG4gICAgYm9yZGVyOiAxcHggc29saWQgaHNsKDIwMCwgOTYlLCA0MSUpO1xuICAgIGJhY2tncm91bmQtY29sb3I6IGhzbCgyMDAsIDk2JSwgNDQlKTtcblxuICAgIGJveC1zaGFkb3c6IDAgNXB4IDIwcHggcmdiYSgxLCAzNywgNTUsIDAuMTYpO1xuICAgIGNvbG9yOiB3aGl0ZTtcblxuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBmb250LXNpemU6IDE0cHg7XG59XG4iLCIubXgtcmVzaXplci1uLFxuLm14LXJlc2l6ZXItcyB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGxlZnQ6IDA7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgaGVpZ2h0OiAxMHB4O1xufVxuLm14LXJlc2l6ZXItbiB7XG4gICAgdG9wOiAtNXB4O1xuICAgIGN1cnNvcjogbi1yZXNpemU7XG59XG4ubXgtcmVzaXplci1zIHtcbiAgICBib3R0b206IC01cHg7XG4gICAgY3Vyc29yOiBzLXJlc2l6ZTtcbn1cblxuLm14LXJlc2l6ZXItZSxcbi5teC1yZXNpemVyLXcge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB0b3A6IDA7XG4gICAgd2lkdGg6IDEwcHg7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuLm14LXJlc2l6ZXItZSB7XG4gICAgcmlnaHQ6IC01cHg7XG4gICAgY3Vyc29yOiBlLXJlc2l6ZTtcbn1cbi5teC1yZXNpemVyLXcge1xuICAgIGxlZnQ6IC01cHg7XG4gICAgY3Vyc29yOiB3LXJlc2l6ZTtcbn1cblxuLm14LXJlc2l6ZXItbncsXG4ubXgtcmVzaXplci1uZSxcbi5teC1yZXNpemVyLXN3LFxuLm14LXJlc2l6ZXItc2Uge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB3aWR0aDogMjBweDtcbiAgICBoZWlnaHQ6IDIwcHg7XG59XG5cbi5teC1yZXNpemVyLW53LFxuLm14LXJlc2l6ZXItbmUge1xuICAgIHRvcDogLTVweDtcbn1cbi5teC1yZXNpemVyLXN3LFxuLm14LXJlc2l6ZXItc2Uge1xuICAgIGJvdHRvbTogLTVweDtcbn1cbi5teC1yZXNpemVyLW53LFxuLm14LXJlc2l6ZXItc3cge1xuICAgIGxlZnQ6IC01cHg7XG59XG4ubXgtcmVzaXplci1uZSxcbi5teC1yZXNpemVyLXNlIHtcbiAgICByaWdodDogLTVweDtcbn1cblxuLm14LXJlc2l6ZXItbncge1xuICAgIGN1cnNvcjogbnctcmVzaXplO1xufVxuLm14LXJlc2l6ZXItbmUge1xuICAgIGN1cnNvcjogbmUtcmVzaXplO1xufVxuLm14LXJlc2l6ZXItc3cge1xuICAgIGN1cnNvcjogc3ctcmVzaXplO1xufVxuLm14LXJlc2l6ZXItc2Uge1xuICAgIGN1cnNvcjogc2UtcmVzaXplO1xufVxuIiwiLm14LXRleHQge1xuICAgIHdoaXRlLXNwYWNlOiBwcmUtbGluZTtcbn1cbiIsIi5teC10ZXh0YXJlYSB0ZXh0YXJlYSB7XG4gICAgcmVzaXplOiBub25lO1xuICAgIG92ZXJmbG93LXk6IGhpZGRlbjtcbn1cbi5teC10ZXh0YXJlYSAubXgtdGV4dGFyZWEtbm9yZXNpemUge1xuICAgIGhlaWdodDogYXV0bztcbiAgICByZXNpemU6IHZlcnRpY2FsO1xuICAgIG92ZXJmbG93LXk6IGF1dG87XG59XG4ubXgtdGV4dGFyZWEgLm14LXRleHRhcmVhLWNvdW50ZXIge1xuICAgIGZvbnQtc2l6ZTogc21hbGxlcjtcbn1cbi5teC10ZXh0YXJlYSAuZm9ybS1jb250cm9sLXN0YXRpYyB7XG4gICAgd2hpdGUtc3BhY2U6IHByZS1saW5lO1xufVxuIiwiLm14LXVuZGVybGF5IHtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgdG9wOiAwO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICB6LWluZGV4OiAxMDAwO1xuICAgIG9wYWNpdHk6IDAuNTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzMzO1xufVxuIiwiLm14LWltYWdlem9vbSB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjOTk5O1xufVxuLm14LWltYWdlem9vbS13cmFwcGVyIHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLm14LWltYWdlem9vbS1pbWFnZSB7XG4gICAgbWF4LXdpZHRoOiBub25lO1xufVxuIiwiLm14LWRyb3Bkb3duIGxpIHtcbiAgICBwYWRkaW5nOiAzcHggMjBweDtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZHJvcGRvd24gbGFiZWwge1xuICAgIHBhZGRpbmc6IDA7XG4gICAgY29sb3I6ICMzMzM7XG4gICAgd2hpdGUtc3BhY2U6IG5vd3JhcDtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG59XG4ubXgtZHJvcGRvd24gaW5wdXQge1xuICAgIG1hcmdpbjogMDtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbn1cbi5teC1kcm9wZG93biAuc2VsZWN0ZWQge1xuICAgIGJhY2tncm91bmQ6ICNmOGY4Zjg7XG59XG4ubXgtc2VsZWN0Ym94IHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLm14LXNlbGVjdGJveC1jYXJldC13cmFwcGVyIHtcbiAgICBmbG9hdDogcmlnaHQ7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuIiwiLm14LWRlbW91c2Vyc3dpdGNoZXIge1xuICAgIHBvc2l0aW9uOiBmaXhlZDtcbiAgICByaWdodDogMDtcbiAgICB3aWR0aDogMzYwcHg7XG4gICAgaGVpZ2h0OiAxMDAlO1xuICAgIHotaW5kZXg6IDIwMDAwO1xuICAgIGJveC1zaGFkb3c6IC0xcHggMCA1cHggcmdiYSgyOCw1OSw4NiwuMik7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlci1jb250ZW50IHtcbiAgICBwYWRkaW5nOiA4MHB4IDQwcHggMjBweDtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgY29sb3I6ICMzODdlYTI7XG4gICAgZm9udC1zaXplOiAxNHB4O1xuICAgIG92ZXJmbG93OiBhdXRvO1xuICAgIGJhY2tncm91bmQ6IHVybChkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQU9nQUFBQmdDQVlBQUFBWFNqN05BQUFBR1hSRldIUlRiMlowZDJGeVpRQkJaRzlpWlNCSmJXRm5aVkpsWVdSNWNjbGxQQUFBQXlScFZGaDBXRTFNT21OdmJTNWhaRzlpWlM1NGJYQUFBQUFBQUR3L2VIQmhZMnRsZENCaVpXZHBiajBpNzd1L0lpQnBaRDBpVnpWTk1FMXdRMlZvYVVoNmNtVlRlazVVWTNwcll6bGtJajgrSUR4NE9uaHRjRzFsZEdFZ2VHMXNibk02ZUQwaVlXUnZZbVU2Ym5NNmJXVjBZUzhpSUhnNmVHMXdkR3M5SWtGa2IySmxJRmhOVUNCRGIzSmxJRFV1TXkxak1ERXhJRFkyTGpFME5UWTJNU3dnTWpBeE1pOHdNaTh3TmkweE5EbzFOam95TnlBZ0lDQWdJQ0FnSWo0Z1BISmtaanBTUkVZZ2VHMXNibk02Y21SbVBTSm9kSFJ3T2k4dmQzZDNMbmN6TG05eVp5OHhPVGs1THpBeUx6SXlMWEprWmkxemVXNTBZWGd0Ym5NaklqNGdQSEprWmpwRVpYTmpjbWx3ZEdsdmJpQnlaR1k2WVdKdmRYUTlJaUlnZUcxc2JuTTZlRzF3UFNKb2RIUndPaTh2Ym5NdVlXUnZZbVV1WTI5dEwzaGhjQzh4TGpBdklpQjRiV3h1Y3pwNGJYQk5UVDBpYUhSMGNEb3ZMMjV6TG1Ga2IySmxMbU52YlM5NFlYQXZNUzR3TDIxdEx5SWdlRzFzYm5NNmMzUlNaV1k5SW1oMGRIQTZMeTl1Y3k1aFpHOWlaUzVqYjIwdmVHRndMekV1TUM5elZIbHdaUzlTWlhOdmRYSmpaVkpsWmlNaUlIaHRjRHBEY21WaGRHOXlWRzl2YkQwaVFXUnZZbVVnVUdodmRHOXphRzl3SUVOVE5pQW9UV0ZqYVc1MGIzTm9LU0lnZUcxd1RVMDZTVzV6ZEdGdVkyVkpSRDBpZUcxd0xtbHBaRG8wTXprd09UUkVNRFEyTkVZeE1VVTBRVFE0TVVJNU5UTkdNVVEzUXpFNU55SWdlRzF3VFUwNlJHOWpkVzFsYm5SSlJEMGllRzF3TG1ScFpEbzBNemt3T1RSRU1UUTJORVl4TVVVMFFUUTRNVUk1TlROR01VUTNRekU1TnlJK0lEeDRiWEJOVFRwRVpYSnBkbVZrUm5KdmJTQnpkRkpsWmpwcGJuTjBZVzVqWlVsRVBTSjRiWEF1YVdsa09qYzBSRU15TVVaR05EWTBRekV4UlRSQk5EZ3hRamsxTTBZeFJEZERNVGszSWlCemRGSmxaanBrYjJOMWJXVnVkRWxFUFNKNGJYQXVaR2xrT2pjMFJFTXlNakF3TkRZMFF6RXhSVFJCTkRneFFqazFNMFl4UkRkRE1UazNJaTgrSUR3dmNtUm1Pa1JsYzJOeWFYQjBhVzl1UGlBOEwzSmtaanBTUkVZK0lEd3ZlRHA0YlhCdFpYUmhQaUE4UDNod1lXTnJaWFFnWlc1a1BTSnlJajgrZzF0Umx3QUFFRkZKUkVGVWVOcnNuWWwzVmNVZHgyZHU4ckpESUpDd0NnalZhclZvc1ZYYzZqbldubnBJUWxKV2w2T0NyUFlma2gxY2l1d2xMRm81dFQzbFZKUlZFVVVFUlFRSlM0Q1FRRWpDUzk3MCs1Mlo5M0lUREd1Uzk4ajcvVGp6N3IyL2U5OTlaTzU4N205K003K1owY05YYnNxS2FUTmVLVlZvbEttT0tiWDM5RXNWS2wxRVY2MklLSzN3QjV1SGNZZy8zM3lDNHgybS9FMmpSRVNTTE1HSmw4dXZZcnNIaWR1aFNBK21Vd2FZaWhsUk0zSEdPdXp1Wlg0Zy9SbHBpdDY4TkZ1S2gwalNEWWd4emxBTVc3V3BDQmIwNlJqTmlEWUh6azZ2UEpaMm1iRnArYStKTEN4b0hyYm5vVnB0eW1lZGxXSWlrblJBS1VOWFZRMERvT01BcUlKMlg4MzB5cFBwQitteVFsL2xIWTNES0xaYlRmbnNMNldvaUNRZFVNcmdWVlZqQWVoSWFHTXhaWGFlbi83WGMybVpNWnVYVm1MenFGSTJmL1lCMm85TTJleW9GQm1ScEFKS0tWbTk4UkZvUndCUUZzZ2RnTFErVFNFZEIwQkxzWnNCUUd1d3Y4NlV6VGtqeFVZa3FZQlNpbGR2SEFkQWgyRzNDUloxUisyMFNRM3BDZW1TZ2RpVUFkQlJBTFFGKzl1UWRnTlVhZVVWU1I2Z2xBR3IvL0U0Tm9NQWFBTjgweDExMHlZMXBXMUdiVmxDdi9SMy92QVE5amVac3JsWHBBaUpkS2NFTnpqUDdoZFU3VlErMGhOOTFxeVBwR3RHd2Yrc3dvYmRNWmVRSGtENm05Nnk2SDRwUWlKSnM2RGVpa1pnUVIrSEJTMUNsYmZXYVBQWjVhbFRXdFBYa2k0dXNGVmVaUjV3Q3ZhZm1vOU42YnlyVXB4RWVoeFFTdjgxRzNJQUtDQTFoUUQwSFBaM1hVbGpTQjJvaTU3QjVua0FpbHFJdVlEOWpZRDB1QlFwa1I0SGxGSzRaa01lQUIwUFFQTUI2TmxXWlhZM1Q1MGFTM05JaXdIb2l3QjBqSEw5TWJ1UVBoRnJLdExqZ0ZMZ2crWUQwUEdnTWcrQW5zRjJUelROSWJXWnVIVWhxcnpxOS82dzFqWWdsYzcvVVlxWFNJOENTaWxZdTQ0VzlDa0F5bXJ2S2ZpbmUxdW5URE1DNmNJaDJQd0o2VmNBbFBteEY5YjFYMmJDL0NZcFppSTlCaWdsRDVDMnVyamRiQUJhRGRVK2dUUnNUWTJ6cHRxMitQNFRrSDRqT1NQU1k0QlNzdGV1TFFDZ1R3UFFMQnhXd3ovZFo2Wk1GMGd0cEF0S3NIa0JnTWE3WVk0QTJnL05oTGRxSlhkRWVnUlFTb1NRYXNQV3pBZ0FQVVZMQ2toamtxMCtjejljOEFRMlR5TDFVeTVzY2p2U0RvRGFLcmtqMHUyQVVqTFdyV0cvNEZNQWxPTW56K0NPZTh6a2x3VFNOa2laTHhNQTZDTmV4UzZaandEcEVja2RrVzRIMUVPYUQwQ2Z3bTRPN3NqeGs0UlVyRVE3VU4rK2p5OHlwSHU5Nmp1a2p3SHFCY2tka1c0RjFONW8zV3FHQTQ3SEhmT1VEUTgwdTgza2x3WFNhMEY5RnBzL0lQVlZkcnlwK3N4WGU2VzFWNlQ3QUUxQXFnMzlybndmWGJNTGtNb1l5bXNoemNYbUw4cU9ON1hDb1B2L0lPMEZxT0llaUhRUG9QYUc2MWZsT1F0aGFDSHE4QXM3emFSWG1pV3JmeEhVVWI3YUcyL3Q1Y0NFYmVLZmluUWJvQjdTSE44WDJCKy93SEdrbndOU0daclZPYWkveGVZeHBGRmU5Wk5peU9DRXR5UzJWd0R0bnE1THZmNkRMRnZvdE9HQVovaFhCcEMrZWtteS9JYitLV0V0OGFyRFNQOEdxS2NsZHdUUTdvQTBFNy9BUWM2RGZUL2dia0I2WHJMOXVwQnE1VUlHQ1dxaGNrSDRqRVQ2TDBDdGtSd1NRTHYrUnphczVOdytuRDRscG9MWUY2Ynl0V3JKK2h1Q0NqZEJ2YURhZ3ZBOXFCcWd6aGRRQmRDdWh2VHY3S2dmQVVENWd3Y0I2VkhKL3BzQ2xZMXR6M2tmMVQ0eWIxRzNBMVNaczFjQTdWSkl4d0xRa2Q0Z0hIV2d2aTd4dTdjRXFuNHNaRkhwbzM0S1VLVXhTUUR0b2gvYytONFFWMjJ6djN0S2FmV0ZxWGhkQWhwdUd0UUZCUFdQb2FvdnM1S0EvZy9waUNtZEx5ODhBZlNPSVdYd09BTWFzZ0RvUmV6dk1oVnZTRi9wcllIS1lJZW5rZTREb0lPOG1sWGVuVGo3bFNtZEp3RWlBdWlkUVBwdXZ2V3JORnNxRGNQY2RnTFNlbmtrdDVHWFd4YzhZMEZWeXJzUG1uM09YQXhxRjBDVnJpMEI5TFlocFFYbDhncTBBQzJLWTBvclpzak03YmNQS2h2aXhtSnZqRmZSZFRpbzJMMGxFNW9Kb0xmOW42aDZoMzJsdy8xVUlkOEMwaC9rMGR3SnFBdHBTVG5wK0VNaExhdS91NUVPbU5LNUVwZ3ZnTjR5cEhqekcxZEYwK29rOXZlYmlUT2w4ZWpPUUdXZ0EwZk9qTURSQ0srK0NwLzFBTFpmbXJLNUp5U1hCTkJiZ0hURllNVVJIbHBGQUdpZHJacE5uTmtvajZrcllGM0V5Q1NtKzFYaWtXdXVYTWVsRmZlYnNqbmlxd3FnTndWcEhnQmw1RkYvKzdaWFpvK1orS2FFQjNZZHFNVUE5RkZ2VmUveGFnNXhvMXZ4RlhTSFpKbEZBZlQ2LzZsTkt6SUJKZ3ZSRU8rWEhnU2tFbm5VMWZtOFpUR0h1VDNTd1ZkbEZmZ1FmVldrbzZaOHRyZ1pBbWhub0M1SDRURWp2RjlhYmYzUzhsa3Q4dGk2SEZUT216UlcyVVdoOUppMktqQUhrdXR2bFdzSlBvYThGMWdGMEk2UUxodGlDNDlXV1FDMHdmcWw1YlBFWCtvMldKZjBBNkQwVlVjck8zK1NqcDlxeFA1M09FZGdmMENOUmw2VUFtZ0MwbHlVRTFyVFltWDc5c3dCVkwya0JiSzc4MzN6RXVTMy9vMXlBOGtkcks2NHdFZlZkRGtZQzN6WVRKd3BMOHgwQnJTdHdDeWxYM3FQTHlYSFVWNitObVhpSS9WUTNoZmg4MEZrL1JoblhST1dsUS9qRkk2UFlJOE5UVCtiaWhreXIxSTZBdW9MQ254U3d5cFlnREp5R2Z0N1Rka2NDUkhzNlJxTjBteGdZdklOVEFucjJvejlZOHExQ2g4MUZXK2NreHhMSTBCOTFhdkErNlVEVUNyNHR2NEdrQjZUeDVrTVdKZHJWd1cyalV0czBCc1JzcTY4NGhMMFA5a2Fqd08zeGxTK0ppTnVlak9nb1FZTnh2SEcrL0k0Ync4NzNHVnR6bVErazZvVnVUNFdlTFNIZFdBb01JSWZET1Evb1dMQno2d09RMWN0c3o3MlVrQWRwSXM1bFFvYk1qaEZTQ09BWlFpYlZLdFNCdGgzKzNyTE9zcUhHN29KMFdKQi9BcldnR284cktkd0xWKzBaMlErNVY0Q3FJYzBSN2wrdkVIZUVUcUtsL1VoVXpwWEdwQlM3Vmx0ZkkvRERJY0QwT0hLTnZqcFVhR3pjVDgyNXNNUUFhcytBeDBEL1dzQ3BldlNiWm5MWGdGb0NOUnd3RDJiL3I4QXBIV0NSUW8vc3cwcmFVcUxMYlJLRHdXTWpNY2UxdWJISnFCbHErQlZEMm9OZEJmd3hRc1pTbk1GZ3d0WHBrNXBFa0R2Q2tnWGNRVEhRNjRCaVc5aXc3NjY3MDNwUEdtWXVGdWU0Zm9QTXF6dmFxZHIxU1dBa2RYaVlvRFp6NE5xb1NYWkdSN2tER01IcWRkQ1YwOUxpLzJMZ2RGczNlZHhQYTY2Y25aNjVWMFJYUEhraXUyWitMdnp0VkY5ZWgyZ2lZZThkWkdiUmRDOWZpOHFOaUNWenBQdW1MdFlNdGF0eWZLZ011Qy9DREFXQWRBaXhhM1JPUTVlRHpDM1JzY3RiOXdlTjBGM09YQWhqQTJFRnNlMHZFM2FUcTZ1bTNDdVVSdE4vemVLL1didGZPU3IwTVZDOTJvKzlPcUw3ZnA2SDM1L1c0RC9VN1pPL0xvT3NNMENaTmhxNkRsQ1MwZXd6Y1YxT2REeC81dURxN0d2OHFETGc0N1Yvd0p0MjFPMG5iK3gxd0xxSVVYVnlUeWc3QUs2ZHNRR1Y3cUdOWjB2SGVtOVRQcXNXYy9DM1E5UUZhTFFzeFpWQ1BnNHdWcGZIUGZWZGtFdmxVRm9BMTkxMWlHSTQ1K0JyVmJHd1ZZSnRQVzFzRnRkK0Y2MEJTRkE3ZFpDMW5hWDBIVWQ3aGZTYVJzdGh4ZUlVZlg2K2NXZjI3UEdmeG9kUDhKV3U3MlkxYnR6aVd2dE9XTkxmZnc2NC8vRmRIdy9acjhUaTkveG11KzA3Y2V2aVlYMEhmZGpmcjhWKzYzdDlQRy9NUDZ5TVNyeFZ6TmxYL2JXMU9wb1JiOVVMYmwxMTE3YnlYSGlDWVpmWnAzcE81N3JvTHZ6MTg2MUtuTVQxNFIxNWdiWG1jN3VwYS96M2M3T2RhSnZhOFc5d2JYdGZGQjFuU3F1dWdrTG1nTmRRVUNMcFRRdFZXN2dMRyt1dDFxd2FMQnVSc1BhcVlqZFY1cGZoU1hVR2FGNzBaSUhIUUJsOGJ3YUFyUlZXOHRMQkRRdE5NTWpvOVpTRzFwc1o3bHhkYU5tNzROUnNPaWFzZWFYdlRXM3hUa3pMVjZ2elFYN0FTbG5zMmZrQzZ0RXo2ck14dStSQjBkVU5FZGFldE5IbW55NmF5UkltMGNUemF0QitsVFppQmI3a3VNc2VNK3BTRk94bEZzUkFUUjFRTjJQengzS2RZNjdWY0V6bThhcHpPWnNLUTRpS2RlTzBwc2JpVzc0eDMrNGdGVmVocVRSNTRDUFlEalc4YmlaOEpaMHlZZ0lvQ2tDS1dkbzU0aU1JYjQxb2hicGEwQjZVWXFIaUFDYU9xQnlYbDVhMC9pYW5Cd1EvaTFBbGVCN0VRRTBkVUI5bXpHOUkrTWVLOUozaXZQeFNMVlhSQUJOR1VnNTN2UkJaVVBOckxEdjlLQ3NjQzBpZ0tZV3FFT1ZuWXZIOXAxU3pucFFaUTRlRVFFMGhVQmxueWtqa2ZLOGY4b1pBZzREVkJsb0xDS0FwZ2lrakxwNlNDVkNCcmthbS9vZTZVZUFLbE5RaWdpZ0tRSXFBN0RaZnpyRXEyaEZqOUNxQWxRSndoY1JRRk1FMUJMdm41WjRGY2Nqc3NYM3BMVDRpZ2lncVFNcUc1TFlMVFBRcXk1NVVFOExxQ0lDYU9xQVN0K1U4K3dNOEtwNlgvVTlKYUNLQ0tDcEErcG83NThXdFZsVWZkaUJPbDh5VzBRQVRSRlE2WjhPZGFEcWVOV1hyYjdWQUZVYWswUUUwTlFCVlE4SlZYMjVZdmdQeXFqanBuUytEQllYRVVCVEE5UUZJNzFGZFkxSmhxdUhxeCtaQUtwTTBpd2lnS1lJcUlSMEJBQ056K1JBSzNxQ3kvbVowbmtOa2tNaUFtZ3FaUHpXQlFSMGxFb0U1TnNaenhpTXozVTNhd0NyWkpLSUFKb0NvREl5NlY2L2JrbGNMbmxRVHdKVThWTUZVSkhrZzdxUXNiN3NvcUZsalhmUlJIMzE5eWRUT3ZleTVKSUFLcElhc0RMZ1liaUhWZmx1bXZOSXg3ajZseW1iSzkwMEFxaElDb0JhcU5xVzdYTmliSEErcDJNNUFWREZxZ3FnSXNrSGRaRmZ4Vm9OQnFBRFEyZHFQYXpWcG15T2ROVUlvQ0pKZjJCYkZ0RS92Y2Y1cWJyQXE5bVFkTnI3cStkTTJXeDVxQUtvU1BKaFhVdy9sZjJxZzBKYUxtMVFEVXQ3MHBUUGxxbERCVkNSRkFBMTExdFZWSC8xQU8rclVoajRjQkk2d0RwTC9GVUJWQ1Q1c0M3aFVvdkR1SDZtY3NzdXFsQ3cvaWttd0NycnBBcWdJa2wvdUp1WERGUnVPWG5DV2hBNjAyQmhOWW9ydnRXWmlXOUtaZ21nSXNtRmRTbGg5ZU5VN2NLMjhXb3cxNkxrZEtKbkZFTU1KODZVeUNVQlZDUzVzQzRyc3JBYU93U3VNTFNJTGdNZ3p1SDRETTZkTlJVenJraHVDYUFpeVN3QW01YWg2cXZaQ2x5c3dwRkxiWTFNTlRobUVQOTVVL0dHOUxVS29DTEpnM1U1NDRFQnF5N3gxalUzQWF4RDlxSUg5anlPYWszbDYxSWRGa0JGa2xZNHFsYjBkVmJWZHQyRSsxcUphOHdCcXhramZJSEpWTDRtRTNnTG9DTEpnZlVkcnNaTzMzV0FiUlZPaEJ3bS9GY1VwS0FlMk5aNlM0dXR2bXdtdlNLWko0Q0s5SGpCMmZndWdlM25yU3ZCTFFHZ3JwbXA3YXFvQTlWYTJqb2dYR2Ntdjl3b3VTZUFpdlE0c08vQmxBWjlBV2gvSFBiMzhCWjBxQlpUb2haV1oyWHJzVjhQZllPWk1sMkcwQW1nSWoxYXVEYXNqSVJnN1FjUTZkUG1ocXJGWVgvMkNtR0ZEV1pJNHFWQTZVc0VOenAxYWt3QUZSSHBxUUszL29Nc2ZIS2NLMU5mR3pSaFZKODRySUcvTG5EZ21zQUZValJrdUxWdkdqS01qWUpxZ0w2eGJ0cmtxQUFxSXRMZGhYRGRhbktaajcwK2dRdEp4RmIzSWJpQkJ6ZkRYd3RBUGNCVzN4SzRlWWFiQXFPNWJmUkFOMnUzNmx3ejlNMm5YNnE0SzYzdytCWGJBd0ZVSkdVbHNuYXRCbkE1QUM0L3d3S3M4Z0VvdDNtQnF5cEhFaGEzUGJpSlNqVDFnWnZiQ2RCcXprVWNoWTdIVVczWGVOVlJmNzVGRzgxdUl1T09OZThZWmZVYjMydnRjTytXUTYrKzJBNmNoOS9meHAvTTFDWitsZjNNME81ckVmd21WUkZ0VCtsTWZHVGFZNlBwQm1UaW9peXY1M0dXTWpwYjIvTUNxTWhkS29Wck5tUTZVRlV1QU1peFd3ZHVGZ3AzTm81em9NOEtQRnR4Yk9NdzZ3N1ZhdjFMa0p2UTkwSjYzY2tMb1FPZzdWNFV2NlR2N0Q0QWxQc3hBVlNrMTh2UVZWVzBTckJJT3N0YnM0aTNaaEZ2aGVQV2pEWHB3QjNyd0ZvNW83QzErakJFc0pUV0lvWjF4bG5oZG9DMmF0ZngxSUxmdEZ0M2JQVnhxMjJ0dWJmYVVhKy9Da0NiZDg3NFkvVC9BZ3dBMk1pN0hkQWUraWtBQUFBQVNVVk9SSzVDWUlJPSkgdG9wIHJpZ2h0IG5vLXJlcGVhdCAjMWIzMTQ5O1xuICAgIC8qIGJhY2tncm91bmQtYXR0YWNoZW1lbnQgbG9jYWwgaXMgbm90IHN1cHBvcnRlZCBvbiBJRThcbiAgICAgKiB3aGVuIHRoaXMgaXMgcGFydCBvZiBiYWNrZ3JvdW5kIHRoZSBjb21wbGV0ZSBiYWNrZ3JvdW5kIGlzIGlnbm9yZWQgKi9cbiAgICBiYWNrZ3JvdW5kLWF0dGFjaG1lbnQ6IGxvY2FsO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXIgdWwge1xuICAgIHBhZGRpbmc6IDA7XG4gICAgbWFyZ2luLXRvcDogMjVweDtcbiAgICBsaXN0LXN0eWxlLXR5cGU6IG5vbmU7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkICM0OTYwNzY7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBhIHtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICBwYWRkaW5nOiAxMHB4IDA7XG4gICAgY29sb3I6ICMzODdlYTI7XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICM0OTYwNzY7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBoMiB7XG4gICAgbWFyZ2luOiAyMHB4IDAgNXB4O1xuICAgIGNvbG9yOiAjNWJjNGZlO1xuICAgIGZvbnQtc2l6ZTogMjhweDtcbn1cbi5teC1kZW1vdXNlcnN3aXRjaGVyIGgzIHtcbiAgICBtYXJnaW46IDAgMCAycHg7XG4gICAgY29sb3I6ICM1YmM0ZmU7XG4gICAgZm9udC1zaXplOiAxOHB4O1xuICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICAgIHRleHQtb3ZlcmZsb3c6IGVsbGlwc2lzO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXIgLmFjdGl2ZSBoMyB7XG4gICAgY29sb3I6ICMxMWVmZGI7XG59XG4ubXgtZGVtb3VzZXJzd2l0Y2hlciBwIHtcbiAgICBtYXJnaW4tYm90dG9tOiAwO1xufVxuLm14LWRlbW91c2Vyc3dpdGNoZXItdG9nZ2xlIHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgdG9wOiAyNSU7XG4gICAgbGVmdDogLTM1cHg7XG4gICAgd2lkdGg6IDM1cHg7XG4gICAgaGVpZ2h0OiAzOHB4O1xuICAgIG1hcmdpbi10b3A6IC00MHB4O1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAzcHg7XG4gICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogM3B4O1xuICAgIGJveC1zaGFkb3c6IC0xcHggMCA1cHggcmdiYSgyOCw1OSw4NiwuMik7XG4gICAgYmFja2dyb3VuZDogdXJsKGRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBQklBQUFBU0NBWUFBQUJXem81WEFBQUFHWFJGV0hSVGIyWjBkMkZ5WlFCQlpHOWlaU0JKYldGblpWSmxZV1I1Y2NsbFBBQUFBeVJwVkZoMFdFMU1PbU52YlM1aFpHOWlaUzU0YlhBQUFBQUFBRHcvZUhCaFkydGxkQ0JpWldkcGJqMGk3N3UvSWlCcFpEMGlWelZOTUUxd1EyVm9hVWg2Y21WVGVrNVVZM3ByWXpsa0lqOCtJRHg0T25odGNHMWxkR0VnZUcxc2JuTTZlRDBpWVdSdlltVTZibk02YldWMFlTOGlJSGc2ZUcxd2RHczlJa0ZrYjJKbElGaE5VQ0JEYjNKbElEVXVNeTFqTURFeElEWTJMakUwTlRZMk1Td2dNakF4TWk4d01pOHdOaTB4TkRvMU5qb3lOeUFnSUNBZ0lDQWdJajRnUEhKa1pqcFNSRVlnZUcxc2JuTTZjbVJtUFNKb2RIUndPaTh2ZDNkM0xuY3pMbTl5Wnk4eE9UazVMekF5THpJeUxYSmtaaTF6ZVc1MFlYZ3Ribk1qSWo0Z1BISmtaanBFWlhOamNtbHdkR2x2YmlCeVpHWTZZV0p2ZFhROUlpSWdlRzFzYm5NNmVHMXdQU0pvZEhSd09pOHZibk11WVdSdlltVXVZMjl0TDNoaGNDOHhMakF2SWlCNGJXeHVjenA0YlhCTlRUMGlhSFIwY0RvdkwyNXpMbUZrYjJKbExtTnZiUzk0WVhBdk1TNHdMMjF0THlJZ2VHMXNibk02YzNSU1pXWTlJbWgwZEhBNkx5OXVjeTVoWkc5aVpTNWpiMjB2ZUdGd0x6RXVNQzl6Vkhsd1pTOVNaWE52ZFhKalpWSmxaaU1pSUhodGNEcERjbVZoZEc5eVZHOXZiRDBpUVdSdlltVWdVR2h2ZEc5emFHOXdJRU5UTmlBb1RXRmphVzUwYjNOb0tTSWdlRzF3VFUwNlNXNXpkR0Z1WTJWSlJEMGllRzF3TG1scFpEbzNORVJETWpGR1JEUTJORU14TVVVMFFUUTRNVUk1TlROR01VUTNRekU1TnlJZ2VHMXdUVTA2Ukc5amRXMWxiblJKUkQwaWVHMXdMbVJwWkRvM05FUkRNakZHUlRRMk5FTXhNVVUwUVRRNE1VSTVOVE5HTVVRM1F6RTVOeUkrSUR4NGJYQk5UVHBFWlhKcGRtVmtSbkp2YlNCemRGSmxaanBwYm5OMFlXNWpaVWxFUFNKNGJYQXVhV2xrT2pjMFJFTXlNVVpDTkRZMFF6RXhSVFJCTkRneFFqazFNMFl4UkRkRE1UazNJaUJ6ZEZKbFpqcGtiMk4xYldWdWRFbEVQU0o0YlhBdVpHbGtPamMwUkVNeU1VWkRORFkwUXpFeFJUUkJORGd4UWprMU0wWXhSRGRETVRrM0lpOCtJRHd2Y21SbU9rUmxjMk55YVhCMGFXOXVQaUE4TDNKa1pqcFNSRVkrSUR3dmVEcDRiWEJ0WlhSaFBpQThQM2h3WVdOclpYUWdaVzVrUFNKeUlqOCsxWm92TkFBQUFXZEpSRUZVZU5xTTFNMHJSRkVZeC9FN1k1cUlRcE9VYklpeW1RV3lzQmd2SlZKSzJWZ3J5WlF0S1NVTFplbFBzQjBMWmFOWmpKVU5LMUZza0pxVXZDUzNOQXNaYzN6UDlOemlPT2ZlZWVwVGM4L2M4K3ZjOHhaVFNubU9ha0VHS2R6Z0RCWFh5NTRPTXNTd2pwTDZXOWNZc3J4ZlpXdmNVdTd5MFZkTFVDYytWWGdkMm9MaXhwZk9JT21GMTdUdEhUT296WXV1cEN4QWFOQjlEVUVmZURVYkU4YnpFWHhaZXJQMDBsOGhoM0xVaUhUSU1yNk45ajJrc1lvaWh2LzFkZXlMU1Z6S0ttMWpFVytXZlpWMkxmOGdza2pJY3djV3BPTSsrcEhDRlBMb3NnV3RvQ3lkN2pDUE9qemhHSEhMeURQWTFhY2hhSmhEeFJqNnJCd0pYVXVvTjBJRzhJSXY3T2lHQmp4YWR2QUlUdVQzcmV4NmMwU2JLQVNmbG5VY0JUM0pUVGhBanlXa0dVVnNCRUVGUjVDZXJ6WHBOSWFjckZJckpuQ0JCM211QnZraEIxVFAyN2hNL0x2eDN6bDZneEhxdTZjNzRraVU4SXhHaktKZExyclQzeGZkandBREFKYU14UDJidkQyQkFBQUFBRWxGVGtTdVFtQ0MpIGNlbnRlciBjZW50ZXIgbm8tcmVwZWF0ICMxYjMxNDk7XG59XG4iLCIvKiBtYXN0ZXIgZGV0YWlscyBzY3JlZW4gZm9yIG1vYmlsZSAqL1xuLm14LW1hc3Rlci1kZXRhaWwtc2NyZWVuIHtcbiAgICB0b3A6IDA7XG4gICAgbGVmdDogMDtcbiAgICBvdmVyZmxvdzogYXV0bztcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGJhY2tncm91bmQtY29sb3I6IHdoaXRlO1xuICAgIHdpbGwtY2hhbmdlOiB0cmFuc2Zvcm07XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLXNjcmVlbiAubXgtbWFzdGVyLWRldGFpbC1kZXRhaWxzIHtcbiAgICBwYWRkaW5nOiAxNXB4O1xufVxuXG4ubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgb3ZlcmZsb3c6IGF1dG87XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICNjY2M7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI2Y3ZjdmNztcbn1cblxuLm14LW1hc3Rlci1kZXRhaWwtc2NyZWVuLWhlYWRlci1jYXB0aW9uIHtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgZm9udC1zaXplOiAxN3B4O1xuICAgIGxpbmUtaGVpZ2h0OiAyNHB4O1xuICAgIGZvbnQtd2VpZ2h0OiA2MDA7XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLXNjcmVlbi1oZWFkZXItY2xvc2Uge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBsZWZ0OiAwO1xuICAgIHRvcDogMDtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgd2lkdGg6IDUwcHg7XG4gICAgYm9yZGVyOiBub25lO1xuICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgIGNvbG9yOiAjMDA3YWZmO1xufVxuXG5ib2R5W2Rpcj1cInJ0bFwiXSAubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyLWNsb3NlIHtcbiAgICByaWdodDogMDtcbiAgICBsZWZ0OiBhdXRvO1xufVxuXG4ubXgtbWFzdGVyLWRldGFpbC1zY3JlZW4taGVhZGVyLWNsb3NlOjpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXFwyMDM5XCI7XG4gICAgZm9udC1zaXplOiA1MnB4O1xuICAgIGxpbmUtaGVpZ2h0OiAyNHB4O1xufVxuXG4vKiBjbGFzc2VzIGZvciBjb250ZW50IHBhZ2UgKi9cbi5teC1tYXN0ZXItZGV0YWlsLWNvbnRlbnQtZml4IHtcbiAgICBoZWlnaHQ6IDEwMHZoO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5teC1tYXN0ZXItZGV0YWlsLWNvbnRlbnQtaGlkZGVuIHtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTIwMCUpO1xufVxuXG5ib2R5W2Rpcj1cInJ0bFwiXSAubXgtbWFzdGVyLWRldGFpbC1jb250ZW50LWhpZGRlbiB7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKDIwMCUpO1xufSIsIi5yZXBvcnRpbmdSZXBvcnQge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xuICAgIC13ZWJraXQtYm9yZGVyLXJhZGl1czogM3B4O1xuICAgIC1tb3otYm9yZGVyLXJhZGl1czogM3B4O1xuICAgIGJvcmRlci1yYWRpdXM6IDNweDtcbn1cbiIsIi5yZXBvcnRpbmdSZXBvcnRQYXJhbWV0ZXIgdGgge1xuICAgIHRleHQtYWxpZ246IHJpZ2h0O1xufVxuIiwiLnJlcG9ydGluZ0RhdGVSYW5nZSB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdGFibGUtbGF5b3V0OiBmaXhlZDtcbn1cbi5yZXBvcnRpbmdEYXRlUmFuZ2UgdGgge1xuICAgIHBhZGRpbmc6IDVweDtcbiAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZWVlO1xufVxuLnJlcG9ydGluZ0RhdGVSYW5nZSB0ZCB7XG4gICAgcGFkZGluZzogNXB4O1xufVxuIiwiLm14LXJlcG9ydG1hdHJpeCB0YWJsZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbWF4LXdpZHRoOiAxMDAlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0aCwgLm14LXJlcG9ydG1hdHJpeCB0ZCB7XG4gICAgcGFkZGluZzogOHB4O1xuICAgIGxpbmUtaGVpZ2h0OiAxLjQyODU3MTQzO1xuICAgIHZlcnRpY2FsLWFsaWduOiBib3R0b207XG4gICAgYm9yZGVyOiAxcHggc29saWQgI2RkZDtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0Ym9keSB0cjpmaXJzdC1jaGlsZCB0ZCB7XG4gICAgYm9yZGVyLXRvcDogbm9uZTtcbn1cblxuLm14LXJlcG9ydG1hdHJpeCB0Ym9keSB0cjpudGgtY2hpbGQoMm4rMSkgdGQge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNmOWY5Zjk7XG59XG5cbi5teC1yZXBvcnRtYXRyaXggdGJvZHkgaW1nIHtcbiAgICBtYXgtd2lkdGg6IDE2cHg7XG4gICAgbWF4LWhlaWdodDogMTZweDtcbn1cbiIsIi8qIFdBUk5JTkc6IElFOSBsaW1pdHMgbmVzdGVkIGltcG9ydHMgdG8gdGhyZWUgbGV2ZWxzIGRlZXA6IGh0dHA6Ly9qb3JnZWFsYmFsYWRlam8uY29tLzIwMTEvMDUvMjgvaW50ZXJuZXQtZXhwbG9yZXItbGltaXRzLW5lc3RlZC1pbXBvcnQtY3NzLXN0YXRlbWVudHMgKi9cblxuLyogZGlqaXQgYmFzZSAqL1xuXG4vKiBtZW5kaXggYmFzZSAqL1xuXG4vKiB3aWRnZXRzICovXG5cbi8qIHJlcG9ydGluZyAqL1xuIl0sInNvdXJjZVJvb3QiOiIifQ==*/\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n@mixin animations() {\n @keyframes slideInUp {\n from {\n visibility: visible;\n transform: translate3d(0, 100%, 0);\n }\n\n to {\n transform: translate3d(0, 0, 0);\n }\n }\n\n .animated {\n animation-duration: 0.4s;\n animation-fill-mode: both;\n }\n\n .slideInUp {\n animation-name: slideInUp;\n }\n\n @keyframes slideInDown {\n from {\n visibility: visible;\n transform: translate3d(0, -100%, 0);\n }\n\n to {\n transform: translate3d(0, 0, 0);\n }\n }\n\n .slideInDown {\n animation-name: slideInDown;\n }\n\n @keyframes fadeIn {\n from {\n opacity: 0;\n }\n\n to {\n opacity: 1;\n }\n }\n\n .fadeIn {\n animation-name: fadeIn;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n/* ==========================================================================\n Flex\n\n Flex classes\n========================================================================== */\n@mixin flex() {\n $important-flex-value: if($important-flex, \" !important\", \"\");\n\n // Flex layout\n .flexcontainer {\n display: flex;\n overflow: hidden;\n flex: 1;\n flex-direction: row;\n\n .flexitem {\n margin-right: $gutter-size;\n\n &:last-child {\n margin-right: 0;\n }\n }\n\n .flexitem-main {\n overflow: hidden;\n flex: 1;\n }\n }\n\n // These classes define the order of the children\n .flex-row {\n flex-direction: row #{$important-flex-value};\n }\n\n .flex-column {\n flex-direction: column #{$important-flex-value};\n }\n\n .flex-row-reverse {\n flex-direction: row-reverse #{$important-flex-value};\n }\n\n .flex-column-reverse {\n flex-direction: column-reverse #{$important-flex-value};\n }\n\n .flex-wrap {\n flex-wrap: wrap #{$important-flex-value};\n }\n\n .flex-nowrap {\n flex-wrap: nowrap #{$important-flex-value};\n }\n\n .flex-wrap-reverse {\n flex-wrap: wrap-reverse #{$important-flex-value};\n }\n\n // Align children in both directions\n .flex-center {\n align-items: center #{$important-flex-value};\n justify-content: center #{$important-flex-value};\n }\n\n // These classes define the alignment of the children\n .justify-content-start {\n justify-content: flex-start #{$important-flex-value};\n }\n\n .justify-content-end {\n justify-content: flex-end #{$important-flex-value};\n }\n\n .justify-content-center {\n justify-content: center #{$important-flex-value};\n }\n\n .justify-content-between {\n justify-content: space-between #{$important-flex-value};\n }\n\n .justify-content-around {\n justify-content: space-around #{$important-flex-value};\n }\n\n .justify-content-evenly {\n // Not Supported in IE11\n justify-content: space-evenly #{$important-flex-value};\n }\n\n .justify-content-stretch {\n justify-content: stretch #{$important-flex-value};\n }\n\n /// These classes define the alignment of the children in the cross-direction\n .align-children-start {\n align-items: flex-start #{$important-flex-value};\n }\n\n .align-children-end {\n align-items: flex-end #{$important-flex-value};\n }\n\n .align-children-center {\n align-items: center #{$important-flex-value};\n }\n\n .align-children-baseline {\n align-items: baseline #{$important-flex-value};\n }\n\n .align-children-stretch {\n align-items: stretch #{$important-flex-value};\n }\n\n /// These classes define the alignment of the rows of children in the cross-direction\n .align-content-start {\n align-content: flex-start #{$important-flex-value};\n }\n\n .align-content-end {\n align-content: flex-end #{$important-flex-value};\n }\n\n .align-content-center {\n align-content: center #{$important-flex-value};\n }\n\n .align-content-between {\n align-content: space-between #{$important-flex-value};\n }\n\n .align-content-around {\n align-content: space-around #{$important-flex-value};\n }\n\n .align-content-stretch {\n align-content: stretch #{$important-flex-value};\n }\n\n /// These classes allow the default alignment to be overridden for individual items\n .align-self-auto {\n align-self: auto #{$important-flex-value};\n }\n\n .align-self-start {\n align-self: flex-start #{$important-flex-value};\n }\n\n .align-self-end {\n align-self: flex-end #{$important-flex-value};\n }\n\n .align-self-center {\n align-self: center #{$important-flex-value};\n }\n\n .align-self-baseline {\n align-self: baseline #{$important-flex-value};\n }\n\n .align-self-stretch {\n align-self: stretch #{$important-flex-value};\n }\n\n @include flex-items($number: 12);\n}\n\n/// These classes define the percentage of available free space within a flex container a flex item will take.\n@mixin flex-items($number) {\n @if not $exclude-flex {\n @for $i from 1 through $number {\n .flexitem-#{$i} {\n flex: #{$i} #{$i} 1%;\n }\n }\n }\n}\n","//\n// ██████╗ █████╗ ███████╗██╗ ██████╗\n// ██╔══██╗██╔══██╗██╔════╝██║██╔════╝\n// ██████╔╝███████║███████╗██║██║\n// ██╔══██╗██╔══██║╚════██║██║██║\n// ██████╔╝██║ ██║███████║██║╚██████╗\n// ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝\n//\n\n//== Gray Shades\n//## Different gray shades to be used for our variables and components\n$gray-darker: #0a1325;\n$gray-dark: #474e5c;\n$gray: #787d87;\n$gray-light: #a9acb3;\n$gray-primary: #e7e7e9;\n$gray-lighter: #f8f8f8;\n\n//== Step 1: Brand Colors\n$brand-default: $gray-primary;\n$brand-primary: #264ae5;\n$brand-success: #3cb33d;\n$brand-warning: #eca51c;\n$brand-danger: #e33f4e;\n\n$brand-logo: false;\n$brand-logo-height: 32px;\n$brand-logo-width: 32px; // Only used for CSS brand logo\n\n//== Step 2: UI Customization\n\n// Default Font Size & Color\n$font-size-default: 14px;\n$font-color-default: #0a1325;\n\n// Global Border Color\n$border-color-default: #ced0d3;\n$border-radius-default: 4px;\n\n// Topbar\n$topbar-bg: #020557;\n$topbar-minimalheight: 48px;\n$topbar-border-color: $border-color-default;\n\n// Sidebar\n$sidebar-bg: #24276c;\n\n// Topbar mobile\n$m-header-height: 45px;\n$m-header-bg: $topbar-bg;\n$m-header-color: #fff;\n$m-header-title-size: 16px;\n\n// Navbar Brand Name / For your company, product, or project name (used in layouts/base/)\n$navbar-brand-name: #fff;\n\n// Background Colors\n// Backgrounds\n$bg-color: #f8f8f8;\n$bg-color-secondary: #fff;\n\n// Default Link Color\n$link-color: $brand-primary;\n$link-hover-color: darken($link-color, 15%);\n\n//\n// █████╗ ██████╗ ██╗ ██╗ █████╗ ███╗ ██╗ ██████╗███████╗██████╗\n// ██╔══██╗██╔══██╗██║ ██║██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗\n// ███████║██║ ██║██║ ██║███████║██╔██╗ ██║██║ █████╗ ██║ ██║\n// ██╔══██║██║ ██║╚██╗ ██╔╝██╔══██║██║╚██╗██║██║ ██╔══╝ ██║ ██║\n// ██║ ██║██████╔╝ ╚████╔╝ ██║ ██║██║ ╚████║╚██████╗███████╗██████╔╝\n// ╚═╝ ╚═╝╚═════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚══════╝╚═════╝\n//\n\n//== Typography\n//## Change your font family, weight, line-height, headings and more (used in components/typography)\n\n// Font Family Import (Used for google font plugin in theme creater)\n$font-family-import: \"resources/fonts/open-sans/open-sans.css\";\n\n// Font Family / False = fallback from Bootstrap (Helvetica Neue)\n$font-family-base: \"Open Sans\", sans-serif;\n\n// Font Sizes\n$font-size-large: 18px;\n$font-size-small: 12px;\n\n// Font Weights\n$font-weight-light: 100;\n$font-weight-normal: normal;\n$font-weight-semibold: 600;\n$font-weight-bold: bold;\n\n// Font Size Headers\n$font-size-h1: 31px;\n$font-size-h2: 26px;\n$font-size-h3: 24px;\n$font-size-h4: 18px;\n$font-size-h5: $font-size-default;\n$font-size-h6: 12px;\n\n// Font Weight Headers\n$font-weight-header: $font-weight-semibold;\n\n// Line Height\n$line-height-base: 1.428571429;\n\n// Spacing\n$font-header-margin: 0 0 8px 0;\n\n// Text Colors\n$font-color-detail: #6c717e;\n$font-color-header: #0a1325;\n\n//== Navigation\n//## Used in components/navigation\n\n// Default Navigation styling\n$navigation-item-height: unset;\n$navigation-item-padding: 8px;\n\n$navigation-font-size: 14px;\n$navigation-sub-font-size: $font-size-small;\n$navigation-glyph-size: 20px; // For glyphicons that you can select in the Mendix Modeler\n\n$navigation-color: #fff;\n$navigation-color-hover: #fff;\n$navigation-color-active: #fff;\n\n$navigation-sub-color: #fff;\n$navigation-sub-color-hover: #fff;\n$navigation-sub-color-active: #fff;\n\n// Navigation Sidebar\n$navsidebar-bg: $sidebar-bg;\n$navsidebar-bg-hover: darken($navsidebar-bg, 10%);\n$navsidebar-bg-active: darken($navsidebar-bg, 10%);\n\n$navsidebar-sub-bg: $navsidebar-bg-hover;\n$navsidebar-sub-bg-hover: $navsidebar-bg;\n$navsidebar-sub-bg-active: $navsidebar-bg;\n\n$navsidebar-border-color: $navsidebar-bg-hover;\n\n$navsidebar-font-size: $font-size-default;\n$navsidebar-sub-font-size: $font-size-small;\n$navsidebar-glyph-size: 20px; // For glyphicons that you can select in the Mendix Modeler\n\n$navsidebar-color: #fff;\n$navsidebar-color-hover: #fff;\n$navsidebar-color-active: #fff;\n\n$navsidebar-sub-color: #fff;\n$navsidebar-sub-color-hover: #fff;\n$navsidebar-sub-color-active: #fff;\n\n$navsidebar-width-closed: 52px;\n$navsidebar-width-open: 232px;\n\n// Navigation topbar\n$navtopbar-font-size: $font-size-default;\n$navtopbar-sub-font-size: $font-size-small;\n$navtopbar-glyph-size: 1.2em; // For glyphicons that you can select in the Mendix Modeler\n\n$navtopbar-bg: $topbar-bg;\n$navtopbar-bg-hover: mix($topbar-bg, white, 85%);\n$navtopbar-bg-active: mix($topbar-bg, white, 85%);\n$navtopbar-color: #fff;\n$navtopbar-color-hover: $navtopbar-color;\n$navtopbar-color-active: $navtopbar-color;\n\n$navtopbar-sub-bg: $topbar-bg;\n$navtopbar-sub-bg-hover: $navtopbar-bg-hover;\n$navtopbar-sub-bg-active: $navtopbar-bg-hover;\n$navtopbar-sub-color: #fff;\n$navtopbar-sub-color-hover: #fff;\n$navtopbar-sub-color-active: #fff;\n\n//## Used in layouts/base\n$navtopbar-border-color: $topbar-border-color;\n\n//== Form\n//## Used in components/inputs\n\n// Values that can be used default | lined\n$form-input-style: default;\n\n// Form Label\n$form-label-color: $font-color-default;\n$form-label-size: $font-size-default;\n$form-label-weight: $font-weight-semibold;\n$form-label-gutter: 8px;\n\n// Form Input dimensions\n$form-input-height: auto;\n$form-input-padding-y: 8px;\n$form-input-padding-x: 8px;\n$form-input-static-padding-y: 8px;\n$form-input-static-padding-x: 0;\n$form-input-font-size: $form-label-size;\n$form-input-line-height: $line-height-base;\n$form-input-border-radius: $border-radius-default;\n\n// Form Input styling\n$form-input-bg: #fff;\n$form-input-bg-focus: #fff;\n$form-input-bg-hover: $gray-primary;\n$form-input-bg-disabled: $bg-color;\n$form-input-color: $font-color-default;\n$form-input-focus-color: $form-input-color;\n$form-input-disabled-color: #9da1a8;\n$form-input-placeholder-color: #6c717c;\n$form-input-border-color: $gray-primary;\n$form-input-border-focus-color: $brand-primary;\n\n// Form Input Static styling\n$form-input-static-border-color: $gray-primary;\n\n// Form Group\n$form-group-margin-bottom: 16px;\n$form-group-gutter: 16px;\n\n//== Buttons\n//## Define background-color, border-color and text. Used in components/buttons\n\n// Default button style\n$btn-font-size: 14px;\n$btn-bordered: false; // Default value false, set to true if you want this effect\n$btn-border-radius: $border-radius-default;\n\n// Button Background Color\n$btn-default-bg: #fff;\n$btn-primary-bg: $brand-primary;\n$btn-success-bg: $brand-success;\n$btn-warning-bg: $brand-warning;\n$btn-danger-bg: $brand-danger;\n\n// Button Border Color\n$btn-default-border-color: $gray-primary;\n$btn-primary-border-color: $brand-primary;\n$btn-success-border-color: $brand-success;\n$btn-warning-border-color: $brand-warning;\n$btn-danger-border-color: $brand-danger;\n\n// Button Text Color\n$btn-default-color: $brand-primary;\n$btn-primary-color: #fff;\n$btn-success-color: #fff;\n$btn-warning-color: #fff;\n$btn-danger-color: #fff;\n\n// Button Icon Color\n$btn-default-icon-color: $gray;\n\n// Button Background Color\n$btn-default-bg-hover: $btn-default-border-color;\n$btn-primary-bg-hover: mix($btn-primary-bg, black, 80%);\n$btn-success-bg-hover: mix($btn-success-bg, black, 80%);\n$btn-warning-bg-hover: mix($btn-warning-bg, black, 80%);\n$btn-danger-bg-hover: mix($btn-danger-bg, black, 80%);\n$btn-link-bg-hover: $gray-lighter;\n\n//== Header blocks\n//## Define look and feel over multible building blocks that serve as header\n\n$header-min-height: 240px;\n$header-bg-color: $brand-primary;\n$header-bgimage-filter: brightness(60%);\n$header-text-color: #fff;\n$header-text-color-detail: rgba(0, 0, 0, 0.2);\n\n//\n// ███████╗██╗ ██╗██████╗ ███████╗██████╗ ████████╗\n// ██╔════╝╚██╗██╔╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝\n// █████╗ ╚███╔╝ ██████╔╝█████╗ ██████╔╝ ██║\n// ██╔══╝ ██╔██╗ ██╔═══╝ ██╔══╝ ██╔══██╗ ██║\n// ███████╗██╔╝ ██╗██║ ███████╗██║ ██║ ██║\n// ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝\n//\n\n//== Color variations\n//## These variations are used to support several other variables and components\n\n// Color variations\n$color-default-darker: mix($brand-default, black, 60%);\n$color-default-dark: mix($brand-default, black, 70%);\n$color-default-light: mix($brand-default, white, 40%);\n$color-default-lighter: mix($brand-default, white, 20%);\n\n$color-primary-darker: mix($brand-primary, black, 60%);\n$color-primary-dark: mix($brand-primary, black, 70%);\n$color-primary-light: mix($brand-primary, white, 40%);\n$color-primary-lighter: mix($brand-primary, white, 20%);\n\n$color-success-darker: mix($brand-success, black, 60%);\n$color-success-dark: mix($brand-success, black, 70%);\n$color-success-light: mix($brand-success, white, 40%);\n$color-success-lighter: mix($brand-success, white, 20%);\n\n$color-warning-darker: mix($brand-warning, black, 60%);\n$color-warning-dark: mix($brand-warning, black, 70%);\n$color-warning-light: mix($brand-warning, white, 40%);\n$color-warning-lighter: mix($brand-warning, white, 20%);\n\n$color-danger-darker: mix($brand-danger, black, 60%);\n$color-danger-dark: mix($brand-danger, black, 70%);\n$color-danger-light: mix($brand-danger, white, 40%);\n$color-danger-lighter: mix($brand-danger, white, 20%);\n\n$brand-gradient: linear-gradient(to right top, #264ae5, #2239c5, #1b29a6, #111988, #03096c);\n\n//== Grids\n//## Used for Datagrid, Templategrid, Listview & Tables (see components folder)\n\n// Default Border Colors\n$grid-border-color: $border-color-default;\n\n// Spacing\n// Default\n$grid-padding-top: 16px;\n$grid-padding-right: 16px;\n$grid-padding-bottom: 16px;\n$grid-padding-left: 16px;\n\n// Listview\n$listview-padding-top: 16px;\n$listview-padding-right: 16px;\n$listview-padding-bottom: 16px;\n$listview-padding-left: 16px;\n\n// Background Colors\n$grid-bg: transparent;\n$grid-bg-header: transparent; // Grid Headers\n$grid-bg-hover: mix($grid-border-color, #fff, 20%);\n$grid-bg-selected: mix($grid-border-color, #fff, 30%);\n$grid-bg-selected-hover: mix($grid-border-color, #fff, 50%);\n\n// Striped Background Color\n$grid-bg-striped: mix($grid-border-color, #fff, 10%);\n\n// Background Footer Color\n$grid-footer-bg: $gray-primary;\n\n// Text Color\n$grid-selected-color: $font-color-default;\n\n// Paging Colors\n$grid-paging-bg: transparent;\n$grid-paging-bg-hover: transparent;\n$grid-paging-border-color: transparent;\n$grid-paging-border-color-hover: transparent;\n$grid-paging-color: $gray-light;\n$grid-paging-color-hover: $brand-primary;\n\n//== Tabs\n//## Default variables for Tab Container Widget (used in components/tabcontainer)\n\n// Text Color\n$tabs-color: $font-color-detail;\n$tabs-color-active: $font-color-default;\n$tabs-lined-color-active: $font-color-default;\n\n$tabs-lined-border-width: 3px;\n\n// Border Color\n$tabs-border-color: $border-color-default;\n$tabs-lined-border-color: $brand-primary;\n\n// Background Color\n$tabs-bg: transparent;\n$tabs-bg-pills: #e7e7e9;\n$tabs-bg-hover: lighten($tabs-border-color, 5);\n$tabs-bg-active: $brand-primary;\n\n//== Modals\n//## Default Mendix Modal, Blocking Modal and Login Modal (used in components/modals)\n\n// Background Color\n$modal-header-bg: transparent;\n\n// Border Color\n$modal-header-border-color: $border-color-default;\n\n// Text Color\n$modal-header-color: $font-color-default;\n\n//== Dataview\n//## Default variables for Dataview Widget (used in components/dataview)\n\n// Controls\n$dataview-controls-bg: transparent;\n$dataview-controls-border-color: $border-color-default;\n\n// Empty Message\n$dataview-emptymessage-bg: $bg-color;\n$dataview-emptymessage-color: $font-color-default;\n\n//== Alerts\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\n\n// Background Color\n$alert-success-bg: $color-success-lighter;\n$alert-warning-bg: $color-warning-lighter;\n$alert-danger-bg: $color-danger-lighter;\n\n// Text Color\n$alert-success-color: $color-success-darker;\n$alert-warning-color: $color-warning-darker;\n$alert-danger-color: $color-danger-darker;\n\n// Border Color\n$alert-success-border-color: $color-success-dark;\n$alert-warning-border-color: $color-warning-dark;\n$alert-danger-border-color: $color-danger-dark;\n\n//== Wizard\n\n$wizard-step-height: 48px;\n$wizard-step-number-size: 64px;\n$wizard-step-number-font-size: $font-size-h3;\n\n//Wizard step states\n$wizard-default-bg: #fff;\n$wizard-default-color: #fff;\n$wizard-default-step-color: $font-color-default;\n$wizard-default-border-color: $border-color-default;\n\n$wizard-active-bg: $color-primary-lighter;\n$wizard-active-color: $color-primary-dark;\n$wizard-active-step-color: $color-primary-dark;\n$wizard-active-border-color: $color-primary-dark;\n\n$wizard-visited-bg: $color-success-lighter;\n$wizard-visited-color: $color-success-dark;\n$wizard-visited-step-color: $color-success-dark;\n$wizard-visited-border-color: $color-success-dark;\n\n//== Labels\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\n\n// Background Color\n$label-default-bg: $brand-default;\n$label-primary-bg: $brand-primary;\n$label-success-bg: $brand-success;\n$label-warning-bg: $brand-warning;\n$label-danger-bg: $brand-danger;\n\n// Border Color\n$label-default-border-color: $brand-default;\n$label-primary-border-color: $brand-primary;\n$label-success-border-color: $brand-success;\n$label-warning-border-color: $brand-warning;\n$label-danger-border-color: $brand-danger;\n\n// Text Color\n$label-default-color: $font-color-default;\n$label-primary-color: #fff;\n$label-success-color: #fff;\n$label-warning-color: #fff;\n$label-danger-color: #fff;\n\n//== Groupbox\n//## Default variables for Groupbox Widget (used in components/groupbox)\n\n// Background Color\n$groupbox-default-bg: $gray-primary;\n$groupbox-primary-bg: $brand-primary;\n$groupbox-success-bg: $brand-success;\n$groupbox-warning-bg: $brand-warning;\n$groupbox-danger-bg: $brand-danger;\n$groupbox-white-bg: #fff;\n\n// Text Color\n$groupbox-default-color: $font-color-default;\n$groupbox-primary-color: #fff;\n$groupbox-success-color: #fff;\n$groupbox-warning-color: #fff;\n$groupbox-danger-color: #fff;\n$groupbox-white-color: $font-color-default;\n\n//== Callout (groupbox) Colors\n//## Extended variables for Groupbox Widget (used in components/groupbox)\n\n// Text and Border Color\n$callout-default-color: $font-color-default;\n$callout-success-color: $brand-success;\n$callout-warning-color: $brand-warning;\n$callout-danger-color: $brand-danger;\n\n// Background Color\n$callout-default-bg: $color-default-lighter;\n$callout-success-bg: $color-success-lighter;\n$callout-warning-bg: $color-warning-lighter;\n$callout-danger-bg: $color-danger-lighter;\n\n//== Timeline\n//## Extended variables for Timeline Widget\n// Colors\n$timeline-icon-color: $brand-primary;\n$timeline-border-color: $border-color-default;\n$timeline-event-time-color: $brand-primary;\n\n// Sizes\n$timeline-icon-size: 18px;\n$timeline-image-size: 36px;\n\n//Timeline grouping\n$timeline-grouping-size: 120px;\n$timeline-grouping-border-radius: 30px;\n$timeline-grouping-border-color: $timeline-border-color;\n\n//== Accordions\n//## Extended variables for Accordion Widget\n\n// Default\n$accordion-header-default-bg: $bg-color-secondary;\n$accordion-header-default-bg-hover: $bg-color;\n$accordion-header-default-color: $font-color-header;\n$accordion-default-border-color: $border-color-default;\n\n$accordion-bg-striped: $grid-bg-striped;\n$accordion-bg-striped-hover: $grid-bg-selected;\n\n// Semantic background colors\n$accordion-header-primary-bg: $btn-primary-bg;\n$accordion-header-secondary-bg: $btn-default-bg;\n$accordion-header-success-bg: $btn-success-bg;\n$accordion-header-warning-bg: $btn-warning-bg;\n$accordion-header-danger-bg: $btn-danger-bg;\n\n$accordion-header-primary-bg-hover: $btn-primary-bg-hover;\n$accordion-header-secondary-bg-hover: $btn-default-bg-hover;\n$accordion-header-success-bg-hover: $btn-success-bg-hover;\n$accordion-header-warning-bg-hover: $btn-warning-bg-hover;\n$accordion-header-danger-bg-hover: $btn-danger-bg-hover;\n\n// Semantic text colors\n$accordion-header-primary-color: $btn-primary-color;\n$accordion-header-secondary-color: $btn-default-color;\n$accordion-header-success-color: $btn-success-color;\n$accordion-header-warning-color: $btn-warning-color;\n$accordion-header-danger-color: $btn-danger-color;\n\n// Semantic border colors\n$accordion-primary-border-color: $btn-primary-border-color;\n$accordion-secondary-border-color: $btn-default-border-color;\n$accordion-success-border-color: $btn-success-border-color;\n$accordion-warning-border-color: $btn-warning-border-color;\n$accordion-danger-border-color: $btn-danger-border-color;\n\n//== Spacing\n//## Advanced layout options (used in base/mixins/default-spacing)\n\n// Smallest spacing\n$spacing-smallest: 2px;\n\n// Smaller spacing\n$spacing-smaller: 4px;\n\n// Small spacing\n$spacing-small: 8px;\n\n// Medium spacing\n$spacing-medium: 16px;\n$t-spacing-medium: 16px;\n$m-spacing-medium: 16px;\n\n// Large spacing\n$spacing-large: 24px;\n$t-spacing-large: 24px;\n$m-spacing-large: 16px;\n\n// Larger spacing\n$spacing-larger: 32px;\n\n// Largest spacing\n$spacing-largest: 48px;\n\n// Layout spacing\n$layout-spacing-top: 24px;\n$layout-spacing-right: 24px;\n$layout-spacing-bottom: 24px;\n$layout-spacing-left: 24px;\n\n$t-layout-spacing-top: 24px;\n$t-layout-spacing-right: 24px;\n$t-layout-spacing-bottom: 24px;\n$t-layout-spacing-left: 24px;\n\n$m-layout-spacing-top: 16px;\n$m-layout-spacing-right: 16px;\n$m-layout-spacing-bottom: 16px;\n$m-layout-spacing-left: 16px;\n\n// Combined layout spacing\n$layout-spacing: $layout-spacing-top $layout-spacing-right $layout-spacing-bottom $layout-spacing-left;\n$m-layout-spacing: $m-layout-spacing-top $m-layout-spacing-right $m-layout-spacing-bottom $m-layout-spacing-left;\n$t-layout-spacing: $t-layout-spacing-top $t-layout-spacing-right $t-layout-spacing-bottom $t-layout-spacing-left;\n\n// Gutter size\n$gutter-size: 8px;\n\n//== Tables\n//## Table spacing options (used in components/tables)\n\n$padding-table-cell-top: 8px;\n$padding-table-cell-bottom: 8px;\n$padding-table-cell-left: 8px;\n$padding-table-cell-right: 8px;\n\n//== Media queries breakpoints\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n$screen-xs: 480px;\n$screen-sm: 576px;\n$screen-md: 768px;\n$screen-lg: 992px;\n$screen-xl: 1200px;\n\n// So media queries don't overlap when required, provide a maximum (used for max-width)\n$screen-xs-max: calc(#{$screen-sm} - 1px);\n$screen-sm-max: calc(#{$screen-md} - 1px);\n$screen-md-max: calc(#{$screen-lg} - 1px);\n$screen-lg-max: calc(#{$screen-xl} - 1px);\n\n//== Settings\n//## Enable or disable your desired framework features\n// Use of !important\n$important-flex: true; // ./base/flex.scss\n$important-spacing: true; // ./base/spacing.scss\n$important-helpers: true; // ./helpers/helperclasses.scss\n\n//===== Legacy variables =====\n\n//== Step 1: Brand Colors\n$brand-inverse: #24276c;\n$brand-info: #0086d9;\n\n//== Step 2: UI Customization\n\n//== Buttons\n//## Define background-color, border-color and text. Used in components/buttons\n\n// Button Background Color\n$btn-inverse-bg: $brand-inverse;\n$btn-info-bg: $brand-info;\n\n// Button Border Color\n$btn-inverse-border-color: $brand-inverse;\n$btn-info-border-color: $brand-info;\n\n// Button Text Color\n$btn-inverse-color: #fff;\n$btn-info-color: #fff;\n\n// Button Background Color\n$btn-inverse-bg-hover: mix($btn-inverse-bg, white, 80%);\n$btn-info-bg-hover: mix($btn-info-bg, black, 80%);\n\n//== Color variations\n//## These variations are used to support several other variables and components\n\n// Color variations\n$color-inverse-darker: mix($brand-inverse, black, 60%);\n$color-inverse-dark: mix($brand-inverse, black, 70%);\n$color-inverse-light: mix($brand-inverse, white, 60%);\n$color-inverse-lighter: mix($brand-inverse, white, 20%);\n\n$color-info-darker: mix($brand-info, black, 60%);\n$color-info-dark: mix($brand-info, black, 70%);\n$color-info-light: mix($brand-info, white, 60%);\n$color-info-lighter: mix($brand-info, white, 20%);\n\n//== Alerts\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\n\n// Background Color\n$alert-info-bg: $color-primary-lighter;\n\n// Text Color\n$alert-info-color: $color-primary-darker;\n\n// Border Color\n$alert-info-border-color: $color-primary-dark;\n\n//== Labels\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\n\n// Background Color\n$label-info-bg: $brand-info;\n$label-inverse-bg: $brand-inverse;\n\n// Border Color\n$label-info-border-color: $brand-info;\n$label-inverse-border-color: $brand-inverse;\n\n// Text Color\n$label-info-color: #fff;\n$label-inverse-color: #fff;\n\n//== Groupbox\n//## Default variables for Groupbox Widget (used in components/groupbox)\n\n// Background Color\n$groupbox-inverse-bg: $brand-inverse;\n$groupbox-info-bg: $brand-info;\n\n// Text Color\n$groupbox-inverse-color: #fff;\n$groupbox-info-color: #fff;\n\n//== Callout (groupbox) Colors\n//## Extended variables for Groupbox Widget (used in components/groupbox)\n\n// Text and Border Color\n$callout-info-color: $brand-info;\n\n// Background Color\n$callout-info-bg: $color-info-lighter;\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n/* ==========================================================================\n Spacing\n\n Spacing classes\n========================================================================== */\n@mixin spacing() {\n $important-spacing-value: if($important-spacing, \" !important\", \"\");\n\n // Spacing none\n .spacing-inner-none {\n padding: 0 #{$important-spacing-value};\n }\n\n .spacing-inner-top-none {\n padding-top: 0 #{$important-spacing-value};\n }\n\n .spacing-inner-right-none {\n padding-right: 0 #{$important-spacing-value};\n }\n\n .spacing-inner-bottom-none {\n padding-bottom: 0 #{$important-spacing-value};\n }\n\n .spacing-inner-left-none {\n padding-left: 0 #{$important-spacing-value};\n }\n\n .spacing-outer-none {\n margin: 0 #{$important-spacing-value};\n }\n\n .spacing-outer-top-none {\n margin-top: 0 #{$important-spacing-value};\n }\n\n .spacing-outer-right-none {\n margin-right: 0 #{$important-spacing-value};\n }\n\n .spacing-outer-bottom-none {\n margin-bottom: 0 #{$important-spacing-value};\n }\n\n .spacing-outer-left-none {\n margin-left: 0 #{$important-spacing-value};\n }\n\n // Spacing small\n .spacing-inner {\n padding: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-inner-top {\n padding-top: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-inner-right {\n padding-right: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-inner-bottom {\n padding-bottom: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-inner-left {\n padding-left: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-inner-vertical {\n padding-top: $spacing-small #{$important-spacing-value};\n padding-bottom: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-inner-horizontal {\n padding-left: $spacing-small #{$important-spacing-value};\n padding-right: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-outer {\n margin: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-outer-top {\n margin-top: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-outer-right {\n margin-right: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-outer-bottom {\n margin-bottom: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-outer-left {\n margin-left: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-outer-vertical {\n margin-top: $spacing-small #{$important-spacing-value};\n margin-bottom: $spacing-small #{$important-spacing-value};\n }\n\n .spacing-outer-horizontal {\n margin-left: $spacing-small #{$important-spacing-value};\n margin-right: $spacing-small #{$important-spacing-value};\n }\n\n // Spacing Medium\n .spacing-inner-medium {\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: all,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-top-medium {\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-right-medium {\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-bottom-medium {\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-left-medium {\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-vertical-medium {\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-horizontal-medium {\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-medium(\n $type: padding,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-medium {\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: all,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-top-medium {\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-right-medium {\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-bottom-medium {\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-left-medium {\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-vertical-medium {\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-horizontal-medium {\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-medium(\n $type: margin,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n // Spacing Large\n .spacing-inner-large {\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: all,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-top-large {\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-right-large {\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-bottom-large {\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-left-large {\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-vertical-large {\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-horizontal-large {\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-large(\n $type: padding,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-large {\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: all,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-top-large {\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-right-large {\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-bottom-large {\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-left-large {\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-vertical-large {\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: top,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: bottom,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-horizontal-large {\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: left,\n $is_important: #{$important-spacing-value}\n );\n @include get-responsive-spacing-large(\n $type: margin,\n $direction: right,\n $is_important: #{$important-spacing-value}\n );\n }\n\n // Spacing layouts\n .spacing-inner-layout {\n @include layout-spacing(\n $type: padding,\n $direction: all,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-top-layout {\n @include layout-spacing(\n $type: padding,\n $direction: top,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-right-layout {\n @include layout-spacing(\n $type: padding,\n $direction: right,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-bottom-layout {\n @include layout-spacing(\n $type: padding,\n $direction: bottom,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-left-layout {\n @include layout-spacing(\n $type: padding,\n $direction: left,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-inner-vertical-layout {\n @include layout-spacing(\n $type: padding,\n $direction: top,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n @include layout-spacing(\n $type: padding,\n $direction: bottom,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n .spacing-inner-horizontal-layout {\n @include layout-spacing(\n $type: padding,\n $direction: left,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n @include layout-spacing(\n $type: padding,\n $direction: right,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-layout {\n @include layout-spacing(\n $type: margin,\n $direction: all,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-top-layout {\n @include layout-spacing(\n $type: margin,\n $direction: top,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-right-layout {\n @include layout-spacing(\n $type: margin,\n $direction: right,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-bottom-layout {\n @include layout-spacing(\n $type: margin,\n $direction: bottom,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-left-layout {\n @include layout-spacing(\n $type: margin,\n $direction: left,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n\n .spacing-outer-vertical-layout {\n @include layout-spacing(\n $type: margin,\n $direction: top,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n @include layout-spacing(\n $type: margin,\n $direction: bottom,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n .spacing-outer-horizontal-layout {\n @include layout-spacing(\n $type: margin,\n $direction: left,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n @include layout-spacing(\n $type: margin,\n $direction: right,\n $device: responsive,\n $is_important: #{$important-spacing-value}\n );\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin get-responsive-spacing-large($type: padding, $direction: all, $is_important: false) {\n @if not $exclude-spacing {\n $suffix: \"\";\n $dash: \"-\"; // Otherwise it will be interpreted as a minus symbol. Needed for the Gonzales PE version: 3.4.7 compiler (used by the Webmodeler)\n\n @if $is_important != false {\n $suffix: \" !important\";\n }\n @if $direction==all {\n @media (max-width: $screen-sm-max) {\n #{$type}: #{$m-spacing-large}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}: #{$t-spacing-large}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}: #{$spacing-large}#{$suffix};\n }\n } @else {\n @media (max-width: $screen-sm-max) {\n #{$type}#{$dash}#{$direction}: #{$m-spacing-large}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}#{$dash}#{$direction}: #{$t-spacing-large}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}#{$dash}#{$direction}: #{$spacing-large}#{$suffix};\n }\n }\n }\n}\n\n@mixin get-responsive-spacing-medium($type: padding, $direction: all, $is_important: false) {\n @if not $exclude-spacing {\n $suffix: \"\";\n $dash: \"-\"; // Otherwise it will be interpreted as a minus symbol. Needed for the Gonzales PE version: 3.4.7 compiler (used by the Webmodeler)\n\n @if $is_important != false {\n $suffix: \" !important\";\n }\n @if $direction==all {\n @media (max-width: $screen-sm-max) {\n #{$type}: #{$m-spacing-medium}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}: #{$t-spacing-medium}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}: #{$spacing-medium}#{$suffix};\n }\n } @else {\n @media (max-width: $screen-sm-max) {\n #{$type}#{$dash}#{$direction}: #{$m-spacing-medium}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}#{$dash}#{$direction}: #{$t-spacing-medium}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}#{$dash}#{$direction}: #{$spacing-medium}#{$suffix};\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin layout-spacing($type: padding, $direction: all, $device: responsive, $is_important: false) {\n @if not $exclude-spacing {\n $suffix: \"\";\n @if $is_important != false {\n $suffix: \" !important\";\n }\n @if $device==responsive {\n @if $direction==all {\n @media (max-width: $screen-sm-max) {\n #{$type}: #{$m-layout-spacing}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}: #{$t-layout-spacing}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}: #{$layout-spacing}#{$suffix};\n }\n } @else if $direction==top {\n @media (max-width: $screen-sm-max) {\n #{$type}-top: #{$m-layout-spacing-top}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}-top: #{$t-layout-spacing-top}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}-top: #{$layout-spacing-top}#{$suffix};\n }\n } @else if $direction==right {\n @media (max-width: $screen-sm-max) {\n #{$type}-right: #{$m-layout-spacing-right}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}-right: #{$t-layout-spacing-right}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}-right: #{$layout-spacing-right}#{$suffix};\n }\n } @else if $direction==bottom {\n @media (max-width: $screen-sm-max) {\n #{$type}-bottom: #{$m-layout-spacing-bottom}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}-bottom: #{$t-layout-spacing-bottom}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}-bottom: #{$layout-spacing-bottom}#{$suffix};\n }\n } @else if $direction==left {\n @media (max-width: $screen-sm-max) {\n #{$type}-left: #{$m-layout-spacing-left}#{$suffix};\n }\n @media (min-width: $screen-md) {\n #{$type}-left: #{$t-layout-spacing-left}#{$suffix};\n }\n @media (min-width: $screen-lg) {\n #{$type}-left: #{$layout-spacing-left}#{$suffix};\n }\n }\n } @else if $device==tablet {\n @if $direction==all {\n #{$type}: #{$t-layout-spacing}#{$suffix};\n } @else if $direction==top {\n #{$type}-top: #{$t-layout-spacing-top}#{$suffix};\n } @else if $direction==right {\n #{$type}-right: #{$t-layout-spacing-right}#{$suffix};\n } @else if $direction==bottom {\n #{$type}-bottom: #{$t-layout-spacing-bottom}#{$suffix};\n } @else if $direction==left {\n #{$type}-left: #{$t-layout-spacing-left}#{$suffix};\n }\n } @else if $device==mobile {\n @if $direction==all {\n #{$type}: #{$m-layout-spacing}#{$suffix};\n } @else if $direction==top {\n #{$type}-top: #{$m-layout-spacing-top}#{$suffix};\n } @else if $direction==right {\n #{$type}-right: #{$m-layout-spacing-right}#{$suffix};\n } @else if $direction==bottom {\n #{$type}-bottom: #{$m-layout-spacing-bottom}#{$suffix};\n } @else if $direction==left {\n #{$type}-left: #{$m-layout-spacing-left}#{$suffix};\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n/* ==========================================================================\n Base\n\n Default settings\n========================================================================== */\n@mixin base() {\n html {\n height: 100%;\n }\n\n body {\n min-height: 100%;\n color: $font-color-default;\n background-color: $bg-color;\n font-family: $font-family-base;\n font-size: $font-size-default;\n font-weight: $font-weight-normal;\n line-height: $line-height-base;\n }\n\n a {\n transition: 0.25s;\n color: $link-color;\n -webkit-backface-visibility: hidden;\n }\n\n a:hover {\n text-decoration: underline;\n color: $link-hover-color;\n }\n\n // Address `outline` inconsistency between Chrome and other browsers.\n a:focus {\n outline: thin dotted;\n }\n\n // Improve readability when focused and also mouse hovered in all browsers\n a:active,\n a:hover {\n outline: 0;\n }\n\n // Removes large blue border in chrome on focus and active states\n input:focus,\n button:focus,\n .mx-link:focus {\n outline: 0;\n }\n\n // Removes large blue border for tabindexes from widgets\n div[tabindex] {\n outline: 0;\n }\n\n // Disabled State\n .disabled,\n [disabled] {\n cursor: not-allowed;\n opacity: 0.65;\n box-shadow: none;\n }\n\n .mx-underlay {\n position: fixed;\n top: 0;\n width: 100%;\n height: 100%;\n z-index: 1000;\n opacity: 0.5;\n background-color: #0a1325;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin login() {\n body {\n height: 100%;\n }\n\n .loginpage {\n display: flex;\n height: 100%;\n }\n .loginpage-logo {\n position: absolute;\n top: 30px;\n right: 30px;\n\n & > svg {\n width: 120px;\n }\n }\n\n .loginpage-left {\n display: none;\n }\n\n .loginpage-right {\n display: flex;\n flex: 1;\n flex-direction: column;\n justify-content: space-around;\n }\n .loginpage-formwrapper {\n width: 400px;\n margin: 0 auto;\n }\n\n .loginpage-fullscreenDiv {\n background-color: #e8e8e8;\n width: 100%;\n height: auto;\n bottom: 0;\n top: 0;\n left: 0;\n position: absolute;\n }\n\n .loginpage-center {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n }\n\n // Form\n .loginpage-form {\n .alert {\n display: none;\n }\n\n .btn {\n border-radius: $border-radius-default;\n }\n\n // Form label + input\n .form-group {\n width: 100%;\n align-items: center;\n @media only screen and (max-width: $screen-sm-max) {\n align-items: flex-start;\n }\n\n .control-label {\n flex: 4;\n margin-bottom: 0;\n font-size: $font-size-default;\n font-weight: 500;\n @media only screen and (max-width: $screen-sm-max) {\n flex: 1;\n margin-bottom: $spacing-small;\n }\n }\n\n .inputwrapper {\n flex: 8;\n position: relative;\n width: 100%;\n @media only screen and (max-width: $screen-sm-max) {\n flex: 1;\n }\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n &:before {\n transition: color 0.4s;\n }\n\n position: absolute;\n top: 50%;\n left: $form-input-padding-x;\n transform: translateY(-50%);\n\n &-eye-open:hover,\n &-eye-close:hover {\n cursor: pointer;\n color: $brand-primary;\n }\n }\n\n .form-control {\n padding: $form-input-padding-y $form-input-padding-x $form-input-padding-y 45px;\n width: 100%;\n }\n\n .form-control:focus ~ .glyphicon:before {\n color: $brand-primary;\n }\n }\n }\n }\n\n // Divider - only on login-with-mendixsso-button.html\n .loginpage-alternativelabel {\n display: flex;\n align-items: center;\n flex-direction: row;\n flex-wrap: nowrap;\n justify-content: space-between;\n margin: 25px 0px;\n\n hr {\n flex: 1;\n margin: 20px 0 20px 10px;\n border: 0;\n border-color: #d8d8d8;\n border-top: 1px solid #eeeeee;\n }\n }\n\n .loginpage-signin {\n color: #555555;\n }\n\n .loginpage-form .btn {\n img {\n vertical-align: middle;\n top: -1px;\n position: relative;\n }\n }\n\n // Show only on wide screens\n @media screen and (min-width: $screen-xl) {\n .loginpage-left {\n position: relative;\n display: block;\n flex: 1;\n width: 100%;\n height: 100%;\n }\n // Image and clipping mask\n .loginpage-image {\n height: 100%;\n animation: makePointer 1s ease-out both;\n background: left / cover no-repeat\n linear-gradient(to right, rgba($brand-primary, 0.9) 0%, rgba($brand-primary, 0.6) 100%),\n left / cover no-repeat url(\"./resources/work-do-more.jpeg\");\n -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);\n clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);\n }\n\n .loginpage-logo {\n & > svg {\n width: 150px;\n }\n }\n\n .loginpage-formwrapper {\n width: 400px;\n }\n }\n\n // Animate image clipping mask\n @keyframes makePointer {\n 100% {\n -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\n clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\n }\n }\n @-webkit-keyframes makePointer {\n 100% {\n -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\n clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin input() {\n /* ==========================================================================\n Input\n\n The form-control class style all inputs\n ========================================================================== */\n .form-control {\n display: flex;\n flex: 1;\n min-width: 50px;\n height: $form-input-height;\n padding: $form-input-padding-y $form-input-padding-x;\n transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;\n color: $form-input-color;\n border: 1px solid $form-input-border-color;\n border-radius: $form-input-border-radius;\n background-color: $form-input-bg;\n background-image: none;\n box-shadow: none;\n font-size: $form-input-font-size;\n line-height: $form-input-line-height;\n appearance: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n @if $form-input-style==lined {\n @extend .form-control-lined;\n }\n\n &::placeholder {\n color: $form-input-placeholder-color;\n }\n }\n\n .form-control:not([readonly]) {\n &:focus,\n &:focus-within {\n border-color: $form-input-border-focus-color;\n outline: 0;\n background-color: $form-input-bg-focus;\n box-shadow: none;\n }\n }\n\n .form-control[disabled],\n .form-control[readonly],\n fieldset[disabled] .form-control {\n opacity: 1;\n background-color: $form-input-bg-disabled;\n }\n\n .form-control[disabled],\n fieldset[disabled] .form-control {\n cursor: not-allowed;\n }\n\n // Lined\n .form-control-lined {\n border: 0;\n border-bottom: 1px solid $form-input-border-color;\n border-radius: 0;\n background-color: transparent;\n\n &:focus {\n background-color: transparent;\n }\n }\n\n // Read only form control class\n .form-control-static {\n overflow: hidden;\n flex: 1;\n min-height: auto;\n padding: $form-input-static-padding-y $form-input-static-padding-x;\n //border-bottom: 1px solid $form-input-static-border-color;\n font-size: $form-input-font-size;\n line-height: $form-input-line-height;\n\n & + .control-label {\n margin-left: $form-label-gutter;\n }\n }\n\n // Dropdown input widget\n select.form-control {\n $arrow: \"resources/arrow.svg\";\n padding-right: 30px;\n background-image: url($arrow);\n background-repeat: no-repeat;\n background-position: calc(100% - #{$form-input-padding-x}) center;\n appearance: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n }\n\n .form-control.mx-selectbox {\n align-items: center;\n flex-direction: row-reverse;\n justify-content: space-between;\n }\n\n // Not editable textarea, textarea will be rendered as a label\n .mx-textarea .control-label {\n height: auto;\n }\n\n .mx-textarea-counter {\n display: block;\n width: 100%;\n text-align: right;\n margin-top: $spacing-small;\n }\n\n textarea.form-control {\n flex-basis: auto;\n }\n\n .mx-compound-control {\n display: flex;\n flex: 1;\n flex-wrap: wrap;\n max-width: 100%;\n\n .btn {\n margin-left: $spacing-small;\n }\n\n .mx-validation-message {\n flex-basis: 100%;\n margin-top: 4px;\n }\n }\n\n .has-error .mx-validation-message {\n margin-top: $spacing-small;\n margin-bottom: 0;\n padding: $spacing-small;\n color: $alert-danger-color;\n border-color: $alert-danger-border-color;\n background-color: $alert-danger-bg;\n }\n\n // Form Group\n .form-group {\n display: flex;\n flex-direction: row;\n margin-bottom: $form-group-margin-bottom;\n\n & > div[class*=\"col-\"] {\n display: flex;\n align-items: center;\n flex-wrap: wrap;\n }\n\n & > [class*=\"col-\"] {\n padding-right: $form-group-gutter;\n padding-left: $form-group-gutter;\n }\n\n // Alignment content\n div[class*=\"textBox\"] > .control-label,\n div[class*=\"textArea\"] > .control-label,\n div[class*=\"datePicker\"] > .control-label {\n @extend .form-control-static;\n }\n\n // Label\n .control-label {\n overflow: hidden;\n margin-bottom: 4px;\n text-align: left;\n text-overflow: ellipsis;\n color: $form-label-color;\n font-size: $form-label-size;\n font-weight: $form-label-weight;\n }\n\n .mx-validation-message {\n flex-basis: 100%;\n }\n\n &.no-columns:not(.label-after) {\n flex-direction: column;\n }\n }\n\n .form-group.label-after {\n .form-control-static {\n flex: unset;\n }\n\n .control-label {\n margin-bottom: 0;\n }\n }\n\n .mx-dateinput,\n .mx-referenceselector,\n .mx-referencesetselector {\n flex: 1;\n }\n\n // Targets only webkit iOS devices\n .dj_webkit.dj_ios .form-control {\n transform: translateZ(0);\n }\n\n @media only screen and (min-width: $screen-md) {\n .form-horizontal {\n .control-label {\n margin-bottom: 0;\n padding-top: $form-input-padding-y;\n padding-bottom: $form-input-padding-y;\n line-height: $form-input-line-height;\n }\n }\n }\n\n @media only screen and (max-width: $screen-sm-max) {\n .form-group {\n flex-direction: column;\n }\n }\n\n @media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 0) {\n // Fixes alignment bug on iPads / iPhones where datefield is not aligned vertically\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: 1;\n }\n // Fix shrinking of date inputs because inability of setting a placeholder\n input[type=\"time\"]:not(.has-value):before,\n input[type=\"date\"]:not(.has-value):before,\n input[type=\"month\"]:not(.has-value):before,\n input[type=\"datetime-local\"]:not(.has-value):before {\n margin-right: 0.5em;\n content: attr(placeholder) !important;\n color: #aaaaaa;\n }\n input[type=\"time\"].has-value:before,\n input[type=\"date\"].has-value:before,\n input[type=\"month\"].has-value:before,\n input[type=\"datetime-local\"].has-value:before {\n content: \"\" !important;\n }\n }\n\n @media (-ms-high-contrast: none), (-ms-high-contrast: active) {\n // Target IE10+\n .form-group {\n display: block;\n }\n }\n\n [dir=\"rtl\"] {\n // Dropdown input widget\n select.form-control {\n padding-right: 30px;\n padding-left: 0;\n background-position: #{$form-input-padding-x} center;\n }\n\n .mx-compound-control .btn {\n margin-right: $spacing-small;\n margin-left: 0;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin background-helpers() {\n /* ==========================================================================\n Background\n\n Different background components, all managed by variables\n ========================================================================== */\n\n .background-main {\n background-color: $bg-color !important;\n }\n\n //Brand variations\n\n .background-primary {\n background-color: $brand-primary !important;\n }\n\n .background-primary-darker {\n background-color: $color-primary-darker !important;\n }\n\n .background-primary.background-dark,\n .background-primary-dark {\n background-color: $color-primary-dark !important;\n }\n\n .background-primary.background-light,\n .background-primary-light {\n background-color: $color-primary-light !important;\n }\n\n .background-primary-lighter {\n background-color: $color-primary-lighter !important;\n }\n\n .background-secondary {\n background-color: $bg-color-secondary !important;\n }\n\n .background-secondary.background-light {\n background-color: $bg-color-secondary !important;\n }\n\n .background-secondary.background-dark {\n background-color: $bg-color-secondary !important;\n }\n\n .background-brand-gradient {\n background-image: $brand-gradient !important;\n }\n\n //Semantic variations\n\n .background-success {\n background-color: $brand-success !important;\n }\n\n .background-success-darker {\n background-color: $color-success-darker !important;\n }\n\n .background-success.background-dark,\n .background-success-dark {\n background-color: $color-success-dark !important;\n }\n\n .background-success.background-light,\n .background-success-light {\n background-color: $color-success-light !important;\n }\n\n .background-success-lighter {\n background-color: $color-success-lighter !important;\n }\n\n .background-warning {\n background-color: $brand-warning !important;\n }\n\n .background-warning-darker {\n background-color: $color-warning-darker !important;\n }\n\n .background-warning.background-dark,\n .background-warning-dark {\n background-color: $color-warning-dark !important;\n }\n\n .background-warning.background-light,\n .background-warning-light {\n background-color: $color-warning-light !important;\n }\n\n .background-warning-lighter {\n background-color: $color-warning-lighter !important;\n }\n\n .background-danger {\n background-color: $brand-danger !important;\n }\n\n .background-danger-darker {\n background-color: $color-danger-darker !important;\n }\n\n .background-danger.background-dark,\n .background-danger-dark {\n background-color: $color-danger-dark !important;\n }\n\n .background-danger.background-light,\n .background-danger-light {\n background-color: $color-danger-light !important;\n }\n\n .background-danger-lighter {\n background-color: $color-danger-lighter !important;\n }\n\n //Bootstrap variations\n\n .background-default {\n background-color: $brand-default !important;\n }\n\n .background-default-darker {\n background-color: $color-default-darker !important;\n }\n\n .background-default-dark {\n background-color: $color-default-dark !important;\n }\n\n .background-default-light {\n background-color: $color-default-light !important;\n }\n\n .background-default-lighter {\n background-color: $color-default-lighter !important;\n }\n\n .background-inverse {\n background-color: $brand-inverse !important;\n }\n\n .background-inverse-darker {\n background-color: $color-inverse-darker !important;\n }\n\n .background-inverse-dark {\n background-color: $color-inverse-dark !important;\n }\n\n .background-inverse-light {\n background-color: $color-inverse-light !important;\n }\n\n .background-inverse-lighter {\n background-color: $color-inverse-lighter !important;\n }\n\n .background-info {\n background-color: $brand-info !important;\n }\n\n .background-info-darker {\n background-color: $color-info-darker !important;\n }\n\n .background-info-dark {\n background-color: $color-info-dark !important;\n }\n\n .background-info-light {\n background-color: $color-info-light !important;\n }\n\n .background-info-lighter {\n background-color: $color-info-lighter !important;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin label() {\n /* ==========================================================================\n Label\n\n Default label combined with Bootstrap label\n ========================================================================== */\n\n .label {\n display: inline-block;\n margin: 0;\n padding: $spacing-smaller $spacing-small;\n text-align: center;\n vertical-align: baseline;\n white-space: nowrap;\n color: #ffffff;\n border-radius: 0.25em;\n font-size: 100%;\n line-height: 1;\n\n .form-control-static {\n font-weight: $font-weight-normal;\n all: unset;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin badge() {\n /* ==========================================================================\n Badge\n\n Override of default Bootstrap badge style\n ========================================================================== */\n\n .badge {\n display: inline-block;\n margin: 0;\n padding: $spacing-smaller $spacing-small;\n text-align: center;\n vertical-align: baseline;\n white-space: nowrap;\n color: #ffffff;\n font-size: 100%;\n line-height: 1;\n\n .form-control-static {\n font-weight: $font-weight-normal;\n all: unset;\n }\n }\n\n /* ==========================================================================\n Badge-web\n\n Widget styles\n ========================================================================== */\n\n .widget-badge {\n color: $label-primary-color;\n background-color: $label-primary-bg;\n }\n\n .widget-badge-clickable {\n cursor: pointer;\n }\n\n .widget-badge.badge:empty {\n display: initial;\n /* Fix padding to stay round */\n padding: $spacing-smaller calc(#{$spacing-small} + 2px);\n }\n\n .widget-badge.label:empty {\n display: initial;\n /* Fix padding to stay square */\n padding: $spacing-smaller calc(#{$spacing-small} + 2px);\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin label-helpers() {\n /* ==========================================================================\n Label\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component including\n badge widget\n ========================================================================== */\n // Color variations\n .label-secondary,\n .label-default {\n color: $label-default-color;\n background-color: $label-default-bg;\n }\n\n .label-primary {\n color: $label-primary-color;\n background-color: $label-primary-bg;\n }\n\n .label-success {\n color: $label-success-color;\n background-color: $label-success-bg;\n }\n\n .label-inverse {\n color: $label-inverse-color;\n background-color: $label-inverse-bg;\n }\n\n .label-info {\n color: $label-info-color;\n background-color: $label-info-bg;\n }\n\n .label-warning {\n color: $label-warning-color;\n background-color: $label-warning-bg;\n }\n\n .label-danger {\n color: $label-danger-color;\n background-color: $label-danger-bg;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin badge-button() {\n /* ==========================================================================\n Badge button\n\n Widget styles\n ========================================================================== */\n .widget-badge-button {\n display: inline-block;\n\n .widget-badge-button-text {\n white-space: nowrap;\n padding-right: 5px;\n }\n\n .badge {\n top: unset;\n display: inline-block;\n margin: 0;\n padding: $spacing-smaller $spacing-small;\n text-align: center;\n vertical-align: baseline;\n white-space: nowrap;\n background-color: $btn-primary-color;\n color: $btn-primary-bg;\n font-size: 100%;\n line-height: 1;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin badge-button-helpers() {\n /* ==========================================================================\n Badge button\n\n Different background components, all managed by variables\n ========================================================================== */\n\n //Badge button color variation\n .btn-secondary,\n .btn-default {\n .badge {\n color: $btn-default-bg;\n background-color: $btn-primary-bg;\n }\n }\n\n .btn-success {\n .badge {\n color: $btn-success-bg;\n }\n }\n\n .btn-warning {\n .badge {\n color: $btn-warning-bg;\n }\n }\n\n .btn-danger {\n .badge {\n color: $btn-danger-bg;\n }\n }\n\n //Badge button bordered variation\n\n .btn-bordered.btn-primary {\n .badge {\n background: $btn-primary-bg;\n color: $btn-primary-color;\n }\n\n &:hover,\n &:focus {\n .badge {\n background-color: $btn-primary-color;\n color: $btn-primary-bg;\n }\n }\n }\n\n .btn-bordered.btn-success {\n .badge {\n background: $btn-success-bg;\n color: $btn-success-color;\n }\n\n &:hover,\n &:focus {\n .badge {\n background-color: $btn-success-color;\n color: $btn-success-bg;\n }\n }\n }\n\n .btn-bordered.btn-warning {\n .badge {\n background: $btn-warning-bg;\n color: $btn-warning-color;\n }\n\n &:hover,\n &:focus {\n .badge {\n background-color: $btn-warning-color;\n color: $btn-warning-bg;\n }\n }\n }\n\n .btn-bordered.btn-danger {\n .badge {\n background: $btn-danger-bg;\n color: $btn-danger-color;\n }\n\n &:hover,\n &:focus {\n .badge {\n background-color: $btn-danger-color;\n color: $btn-danger-bg;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin button() {\n /* ==========================================================================\n Button\n\n Default Bootstrap and Mendix button\n ========================================================================== */\n\n .btn,\n .mx-button {\n display: inline-block;\n margin-bottom: 0;\n padding: 0.6em 1em;\n cursor: pointer;\n -webkit-user-select: none;\n user-select: none;\n transition: all 0.2s ease-in-out;\n text-align: center;\n vertical-align: middle;\n white-space: nowrap;\n color: $btn-default-color;\n border: 1px solid $btn-default-border-color;\n border-radius: $btn-border-radius;\n background-color: $btn-default-bg;\n background-image: none;\n box-shadow: none;\n text-shadow: none;\n font-size: $btn-font-size;\n line-height: $line-height-base;\n\n &:hover,\n &:focus,\n &:active,\n &:active:focus {\n outline: none;\n box-shadow: none;\n }\n\n &[aria-disabled] {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n }\n\n @if $btn-bordered != false {\n @extend .btn-bordered;\n }\n }\n\n // Mendix button link\n .mx-link {\n padding: 0;\n color: $link-color;\n\n &[aria-disabled=\"true\"] {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n }\n }\n\n .link-back {\n color: $font-color-detail;\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n top: 2px;\n }\n }\n\n // Images and icons in buttons\n .btn,\n .mx-button,\n .mx-link {\n img {\n //height: auto; // MXUI override who set the height on 16px default\n height: calc(#{$font-size-default} + 4px);\n margin-right: 4px;\n vertical-align: text-top;\n }\n }\n\n //== Phone specific\n //-------------------------------------------------------------------------------------------------------------------//\n .profile-phone {\n .btn,\n .mx-link {\n &:active {\n transform: translateY(1px);\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin button-helpers() {\n /* ==========================================================================\n Button\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Color variations\n .btn,\n .btn-default {\n @include button-variant($btn-default-color, $btn-default-bg, $btn-default-border-color, $btn-default-bg-hover);\n }\n\n .btn-primary {\n @include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border-color, $btn-primary-bg-hover);\n }\n\n .btn-inverse {\n @include button-variant($btn-inverse-color, $btn-inverse-bg, $btn-inverse-border-color, $btn-inverse-bg-hover);\n }\n\n .btn-success {\n @include button-variant($btn-success-color, $btn-success-bg, $btn-success-border-color, $btn-success-bg-hover);\n }\n\n .btn-info {\n @include button-variant($btn-info-color, $btn-info-bg, $btn-info-border-color, $btn-info-bg-hover);\n }\n\n .btn-warning {\n @include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border-color, $btn-warning-bg-hover);\n }\n\n .btn-danger {\n @include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border-color, $btn-danger-bg-hover);\n }\n\n // Button Sizes\n .btn-lg {\n font-size: $font-size-large;\n\n img {\n height: calc(#{$font-size-small} + 4px);\n }\n }\n\n .btn-sm {\n font-size: $font-size-small;\n\n img {\n height: calc(#{$font-size-small} + 4px);\n }\n }\n\n // Button Image\n .btn-image {\n padding: 0;\n vertical-align: middle;\n border-style: none;\n background-color: transparent;\n\n img {\n display: block; // or else the button doesn't get a width\n height: auto; // Image set height\n }\n\n &:hover,\n &:focus {\n background-color: transparent;\n }\n }\n\n // Icon buttons\n .btn-icon {\n & > img,\n & > .glyphicon,\n & > .mx-icon-lined,\n & > .mx-icon-filled {\n margin: 0;\n }\n }\n\n .btn-icon-right {\n display: inline-flex;\n flex-direction: row-reverse;\n align-items: center;\n\n & > img,\n & > .glyphicon,\n & > .mx-icon-lined,\n & > .mx-icon-filled {\n top: 0;\n margin-left: 4px;\n }\n }\n\n .btn-icon-top {\n padding-right: 0;\n padding-left: 0;\n\n & > img,\n & > .glyphicon,\n & > .mx-icon-lined,\n & > .mx-icon-filled {\n display: block;\n margin: 0 0 4px 0;\n }\n }\n\n .btn-icon-only {\n @extend .btn-icon;\n padding: 0;\n color: $btn-default-icon-color;\n border: none;\n }\n\n .btn-block {\n display: block;\n width: 100%;\n }\n\n .btn-block + .btn-block {\n margin-top: 4px;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin button-variant($color, $background, $border, $hover) {\n @if not $exclude-button {\n color: $color;\n border-color: $border;\n background-color: $background;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open > &.dropdown-toggle {\n color: $color;\n border-color: $hover;\n background-color: $hover;\n }\n &:active,\n &.active,\n .open > &.dropdown-toggle {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n &[aria-disabled],\n fieldset[disabled] {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n border-color: $border;\n background-color: $background;\n }\n }\n // Button bordered\n &.btn-bordered {\n background-color: transparent;\n @if $color != $btn-default-color {\n color: $border;\n }\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open > &.dropdown-toggle {\n color: $color;\n border-color: $border;\n background-color: $border;\n }\n }\n // Button as link\n &.btn-link {\n text-decoration: none;\n border-color: transparent;\n background-color: transparent;\n @if $color != $btn-default-color {\n color: $background;\n }\n\n &:hover {\n border-color: $btn-link-bg-hover;\n background-color: $btn-link-bg-hover;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin check-box() {\n /* ==========================================================================\n Check box\n\n Default Mendix check box widget\n ========================================================================== */\n\n .mx-checkbox.label-after {\n flex-wrap: wrap;\n\n .control-label {\n display: flex;\n align-items: center;\n padding: 0;\n }\n }\n\n input[type=\"checkbox\"] {\n position: relative !important; //Remove after mxui merge\n width: 16px;\n height: 16px;\n margin: 0 !important; // Remove after mxui merge\n cursor: pointer;\n -webkit-user-select: none;\n user-select: none;\n appearance: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n transform: translateZ(0);\n\n &:before,\n &:after {\n position: absolute;\n display: block;\n transition: all 0.3s ease;\n }\n\n &:before {\n // Checkbox\n width: 100%;\n height: 100%;\n content: \"\";\n border: 1px solid $form-input-border-color;\n border-radius: $form-input-border-radius;\n background-color: transparent;\n }\n\n &:after {\n // Checkmark\n width: 8px;\n height: 4px;\n margin: 5px 4px;\n transform: rotate(-45deg);\n pointer-events: none;\n border: 2px solid #ffffff;\n border-top: 0;\n border-right: 0;\n }\n\n &:not(:disabled):not(:checked):hover:after {\n content: \"\";\n border-color: $form-input-bg-hover; // color of checkmark on hover\n }\n\n &:checked:before {\n border-color: $form-input-border-focus-color;\n background-color: $form-input-border-focus-color;\n }\n\n &:checked:after {\n content: \"\";\n }\n\n &:disabled:before {\n background-color: $form-input-bg-disabled;\n }\n\n &:checked:disabled:before {\n border-color: transparent;\n background-color: rgba($form-input-border-focus-color, 0.4);\n }\n\n &:disabled:after,\n &:checked:disabled:after {\n border-color: $form-input-bg-disabled;\n }\n\n & + .control-label {\n margin-left: $form-label-gutter;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin grid() {\n /* ==========================================================================\n Grid\n\n Default Mendix grid (used for Mendix data grid)\n ========================================================================== */\n\n .mx-grid {\n padding: 0px;\n border: 0;\n border-radius: 0;\n\n .mx-grid-controlbar {\n margin: 10px 0;\n /* Paging */\n .mx-grid-pagingbar {\n /* Buttons */\n .mx-button {\n padding: 8px;\n color: $grid-paging-color;\n border-color: $grid-paging-border-color;\n background-color: $grid-paging-bg;\n\n &:hover {\n color: $grid-paging-color-hover;\n border-color: $grid-paging-border-color-hover;\n background-color: $grid-paging-bg-hover;\n }\n }\n\n /* Text Paging .. to .. to .. */\n .mx-grid-paging-status {\n padding: 0 8px 8px;\n }\n }\n }\n\n .mx-grid-searchbar {\n margin: 10px 0;\n\n .mx-grid-search-item {\n .mx-grid-search-label {\n vertical-align: middle;\n\n label {\n padding-top: 5px;\n }\n }\n\n .mx-grid-search-input {\n display: inline-flex;\n\n .form-control {\n height: 28px;\n font-size: 11px;\n }\n\n select.form-control {\n padding: 3px;\n vertical-align: middle;\n }\n\n .mx-button {\n height: 28px;\n padding-top: 2px;\n padding-bottom: 2px;\n }\n }\n }\n }\n }\n\n // Remove default border from grid inside a Mendix Dataview\n .mx-dataview .mx-grid {\n border: 0;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin data-grid() {\n /* ==========================================================================\n Data grid default\n\n Default Mendix data grid widget. The data grid shows a list of objects in a grid\n ========================================================================== */\n\n .mx-datagrid {\n table {\n border-width: 0;\n background-color: transparent;\n /* Table header */\n th {\n border-style: solid;\n border-color: $grid-border-color;\n border-top-width: 0;\n border-right: 0;\n border-bottom-width: 1px;\n border-left: 0;\n background-color: $grid-bg-header;\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\n vertical-align: middle;\n\n .mx-datagrid-head-caption {\n white-space: normal;\n }\n }\n\n /* Table Body */\n tbody tr {\n td {\n @include transition();\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\n vertical-align: middle;\n border-width: 0;\n border-color: $grid-border-color;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n background-color: $grid-bg;\n\n &:focus {\n outline: none;\n }\n\n /* Text without spaces */\n .mx-datagrid-data-wrapper {\n text-overflow: ellipsis;\n }\n }\n\n &.selected td,\n &.selected:hover td {\n color: $grid-selected-color;\n background-color: $grid-bg-selected !important;\n }\n }\n\n /* Table Footer */\n tfoot {\n > tr > th {\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\n border-width: 0;\n background-color: $grid-footer-bg;\n }\n\n > tr > td {\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\n border-width: 0;\n background-color: $grid-bg;\n font-weight: $font-weight-bold;\n }\n }\n\n & *:focus {\n outline: 0;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin transition(\n $style: initial,\n $delay: 0s,\n $duration: 0.3s,\n $property: all,\n $timing-function: cubic-bezier(0.4, 0, 0.2, 1)\n) {\n @if not $exclude-animations {\n transition: $property $duration $delay $timing-function;\n transform-style: $style;\n }\n}\n\n@mixin ripple($color: #000, $transparency: 10%, $scale: 10) {\n @if not $exclude-animations {\n position: relative;\n overflow: hidden;\n transform: translate3d(0, 0, 0);\n\n &:after {\n content: \"\";\n display: block;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n pointer-events: none;\n background-image: radial-gradient(circle, $color $transparency, transparent $transparency);\n background-repeat: no-repeat;\n background-position: 50%;\n transform: scale($scale, $scale);\n opacity: 0;\n transition: transform 0.5s, opacity 1s;\n }\n\n &:active:after {\n transform: scale(0, 0);\n opacity: 0.1;\n transition: 0s;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin data-grid-helpers() {\n /* ==========================================================================\n Data grid default\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Striped style\n .datagrid-striped.mx-datagrid {\n table {\n th {\n border-width: 0;\n }\n\n tbody tr {\n td {\n border-top-width: 0;\n }\n\n &:nth-child(odd) td {\n background-color: $grid-bg-striped;\n }\n }\n }\n }\n\n // Bordered style\n .datagrid-bordered.mx-datagrid {\n table {\n border: 1px solid;\n\n th {\n border: 1px solid $grid-border-color;\n }\n\n tbody tr {\n td {\n border: 1px solid $grid-border-color;\n }\n }\n }\n\n tfoot {\n > tr > th {\n border-width: 0;\n background-color: $grid-footer-bg;\n }\n\n > tr > td {\n border-width: 1px;\n }\n }\n }\n\n // Transparent style so you can see the background\n .datagrid-transparent.mx-datagrid {\n table {\n background-color: transparent;\n\n tbody tr {\n &:nth-of-type(odd) {\n background-color: transparent;\n }\n\n td {\n background-color: transparent;\n }\n }\n }\n }\n\n // Hover style activated\n .datagrid-hover.mx-datagrid {\n table {\n tbody tr {\n &:hover td {\n background-color: $grid-bg-hover !important;\n }\n\n &.selected:hover td {\n background-color: $grid-bg-selected-hover !important;\n }\n }\n }\n }\n\n // Datagrid Row Sizes\n .datagrid-lg.mx-datagrid {\n table {\n th {\n padding: ($grid-padding-top * 2) ($grid-padding-right * 2) ($grid-padding-bottom * 2)\n ($grid-padding-left * 2);\n }\n\n tbody tr {\n td {\n padding: ($grid-padding-top * 2) ($grid-padding-right * 2) ($grid-padding-bottom * 2)\n ($grid-padding-left * 2);\n }\n }\n }\n }\n\n .datagrid-sm.mx-datagrid {\n table {\n th {\n padding: ($grid-padding-top / 2) ($grid-padding-right / 2) ($grid-padding-bottom / 2)\n ($grid-padding-left / 2);\n }\n\n tbody tr {\n td {\n padding: ($grid-padding-top / 2) ($grid-padding-right / 2) ($grid-padding-bottom / 2)\n ($grid-padding-left/ 2);\n }\n }\n }\n }\n\n // Datagrid Full Search\n // Default Mendix Datagrid Widget with adjusted search field. Only 1 search field is allowed\n .datagrid-fullsearch.mx-grid {\n .mx-grid-search-button {\n @extend .btn-primary;\n }\n\n .mx-grid-reset-button {\n display: none;\n }\n\n .mx-grid-search-item {\n display: block;\n }\n\n .mx-grid-search-label {\n display: none;\n }\n\n .mx-grid-searchbar {\n .mx-grid-search-controls {\n position: absolute;\n right: 0;\n }\n\n .mx-grid-search-input {\n width: 80%;\n padding-left: 0;\n\n .btn,\n .form-control {\n height: 35px;\n font-size: 12px;\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin data-view() {\n /* ==========================================================================\n Data view\n\n Default Mendix data view widget. The data view is used for showing the contents of exactly one object\n ========================================================================== */\n\n .mx-dataview {\n /* Dataview-content gives problems for nexted layout grid containers */\n > .mx-dataview-content > .mx-container-nested {\n > .row {\n margin-right: 0;\n margin-left: 0;\n }\n }\n\n /* Dataview empty message */\n .mx-dataview-message {\n color: $dataview-emptymessage-color;\n background: $dataview-emptymessage-bg;\n }\n }\n\n .mx-dataview-controls {\n margin-top: $spacing-medium;\n padding: $spacing-medium 0 0;\n border-top: 1px solid $dataview-controls-border-color;\n border-radius: 0;\n background-color: $dataview-controls-bg;\n /* Buttons */\n .mx-button {\n margin-right: $spacing-small;\n margin-bottom: 0;\n\n &:last-child {\n margin-right: 0;\n }\n }\n\n background-color: inherit;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin date-picker() {\n /* ==========================================================================\n Date picker\n\n Default Mendix date picker widget\n ========================================================================== */\n\n .mx-calendar {\n /* (must be higher than popup z-index) */\n z-index: 10010 !important;\n padding: 8px;\n font-size: 12px;\n background: $bg-color;\n border-radius: $border-radius-default;\n border: 1px solid $border-color-default;\n box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);\n\n .mx-calendar-month-header {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n margin: 0 3px 10px 3px;\n }\n\n .mx-calendar-month-next,\n .mx-calendar-month-previous,\n .mx-calendar-month-dropdown {\n border: 0;\n cursor: pointer;\n background: transparent;\n }\n\n .mx-calendar-month-next,\n .mx-calendar-month-previous {\n &:hover {\n color: $brand-primary;\n }\n }\n\n .mx-calendar-month-dropdown {\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n\n .mx-calendar-month-current:first-child {\n margin-right: 10px;\n }\n }\n\n th {\n color: $brand-primary;\n }\n\n th,\n td {\n width: 35px;\n height: 35px;\n text-align: center;\n }\n\n td {\n color: $font-color-default;\n\n &:hover {\n cursor: pointer;\n border-radius: 50%;\n color: $brand-primary;\n background-color: $brand-default;\n }\n }\n\n .mx-calendar-day-month-next,\n .mx-calendar-day-month-previous {\n color: lighten($font-color-default, 45%);\n }\n\n .mx-calendar-day-selected,\n .mx-calendar-day-selected:hover {\n color: #fff;\n border-radius: 50%;\n background: $brand-primary;\n }\n\n //\n\n .mx-calendar-year-switcher {\n text-align: center;\n margin-top: 10px;\n color: lighten($brand-primary, 30%);\n\n span.mx-calendar-year-selected {\n color: $brand-primary;\n margin-left: 10px;\n margin-right: 10px;\n }\n\n span:hover {\n cursor: pointer;\n text-decoration: underline;\n background-color: transparent;\n }\n }\n }\n\n .mx-calendar-month-dropdown-options {\n /* (must be higher than popup z-index) */\n z-index: 10020 !important;\n position: absolute;\n top: 25px;\n padding: 2px 10px;\n border-radius: $border-radius-default;\n background-color: $bg-color;\n\n div {\n cursor: pointer;\n font-size: 12px;\n padding: 2px 0;\n\n &:hover,\n &:focus {\n color: $brand-primary;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin header() {\n /* ==========================================================================\n Header\n\n Default Mendix mobile header\n ========================================================================== */\n\n .mx-header {\n z-index: 100;\n display: flex;\n width: 100%;\n height: $m-header-height;\n padding: 0;\n text-align: initial;\n color: $m-header-color;\n background-color: $m-header-bg;\n box-shadow: 0px 2px 2px rgba(194, 196, 201, 0.30354);\n\n // Reset mxui\n div.mx-header-left,\n div.mx-header-right {\n position: relative;\n top: initial;\n right: initial;\n left: initial;\n display: flex;\n align-items: center;\n width: 25%;\n height: 100%;\n\n .mx-placeholder {\n display: flex;\n align-items: center;\n height: 100%;\n }\n }\n\n div.mx-header-left .mx-placeholder {\n order: 1;\n\n .mx-placeholder {\n justify-content: flex-start;\n }\n }\n\n div.mx-header-center {\n overflow: hidden;\n flex: 1;\n order: 2;\n text-align: center;\n\n .mx-title {\n overflow: hidden;\n width: 100%;\n margin: 0;\n text-overflow: ellipsis;\n color: $m-header-color;\n font-size: $m-header-title-size;\n line-height: $m-header-height;\n }\n }\n\n div.mx-header-right {\n order: 3;\n\n .mx-placeholder {\n justify-content: flex-end;\n }\n }\n\n // Content magic\n .mx-link {\n display: flex;\n align-items: center;\n height: 100%;\n transition: all 0.2s;\n text-decoration: none;\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n top: 0;\n font-size: 23px;\n }\n\n &:active {\n transform: translateY(1px);\n color: $link-hover-color;\n }\n }\n\n .mx-link,\n .btn,\n img {\n padding: 0 $spacing-medium;\n }\n\n .mx-sidebartoggle {\n font-size: 24px;\n line-height: $m-header-height;\n\n img {\n height: 20px;\n }\n }\n }\n\n // RTL support\n body[dir=\"rtl\"] {\n .mx-header-left {\n order: 3;\n }\n\n .mx-header-right {\n order: 1;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin glyphicon() {\n /* ==========================================================================\n Glyphicon\n\n Default Mendix glyphicon\n ========================================================================== */\n\n .mx-glyphicon {\n &:before {\n display: inline-block;\n margin-top: -0.2em;\n margin-right: 0.4555555em;\n vertical-align: middle;\n font-family: \"Glyphicons Halflings\";\n font-weight: $font-weight-normal;\n font-style: normal;\n line-height: inherit;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin group-box() {\n /* ==========================================================================\n Group box\n\n Default Mendix group box\n ========================================================================== */\n\n .mx-groupbox {\n margin: 0;\n\n > .mx-groupbox-header {\n margin: 0;\n color: $groupbox-default-color;\n border-width: 1px 1px 0 1px;\n border-style: solid;\n border-color: $groupbox-default-bg;\n background: $groupbox-default-bg;\n font-size: $font-size-h5;\n border-radius: $border-radius-default $border-radius-default 0 0;\n padding: $spacing-small * 1.5 $spacing-medium;\n\n .mx-groupbox-collapse-icon {\n margin-top: 0.1em;\n }\n }\n\n // Header options\n > h1.mx-groupbox-header {\n font-size: $font-size-h1;\n }\n\n > h2.mx-groupbox-header {\n font-size: $font-size-h2;\n }\n\n > h3.mx-groupbox-header {\n font-size: $font-size-h3;\n }\n\n > h4.mx-groupbox-header {\n font-size: $font-size-h4;\n }\n\n > h5.mx-groupbox-header {\n font-size: $font-size-h5;\n }\n\n > h6.mx-groupbox-header {\n font-size: $font-size-h6;\n }\n\n > .mx-groupbox-body {\n padding: $spacing-small * 1.5 $spacing-medium;\n border-width: 1px;\n border-style: solid;\n border-color: $groupbox-default-bg;\n background-color: #ffffff;\n border-radius: $border-radius-default;\n }\n\n .mx-groupbox-header + .mx-groupbox-body {\n border-top: none;\n }\n\n &.collapsed > .mx-groupbox-header {\n }\n }\n\n //With header\n .mx-groupbox-header ~ .mx-groupbox-body {\n border-radius: 0 0 $border-radius-default $border-radius-default;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin group-box-helpers() {\n /* ==========================================================================\n Group box\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Color variations\n .groupbox-secondary,\n .groupbox-default {\n @include groupbox-variant($groupbox-default-color, $groupbox-default-bg);\n }\n\n .groupbox-primary {\n @include groupbox-variant($groupbox-primary-color, $groupbox-primary-bg);\n }\n\n // Success appears as green\n .groupbox-success {\n @include groupbox-variant($groupbox-success-color, $groupbox-success-bg);\n }\n\n // Warning appears as orange\n .groupbox-warning {\n @include groupbox-variant($groupbox-warning-color, $groupbox-warning-bg);\n }\n\n // Danger and error appear as red\n .groupbox-danger {\n @include groupbox-variant($groupbox-danger-color, $groupbox-danger-bg);\n }\n\n .groupbox-transparent {\n > .mx-groupbox-header {\n padding: $spacing-small * 1.5 0;\n color: $gray-darker;\n border-style: none;\n background: transparent;\n font-weight: $font-weight-semibold;\n }\n\n .mx-groupbox-body {\n padding: $spacing-small 0;\n border-radius: 0;\n border: 0;\n border-bottom: 1px solid $groupbox-default-bg;\n background-color: transparent;\n }\n\n .mx-groupbox-collapse-icon {\n color: $brand-primary;\n }\n }\n\n // Callout Look and Feel\n .groupbox-callout {\n > .mx-groupbox-header,\n > .mx-groupbox-body {\n border: 0;\n background-color: $callout-primary-bg;\n }\n\n > .mx-groupbox-header {\n color: $callout-primary-color;\n }\n\n .mx-groupbox-header + .mx-groupbox-body {\n padding-top: 0;\n }\n }\n\n .groupbox-success.groupbox-callout {\n > .mx-groupbox-header,\n > .mx-groupbox-body {\n background-color: $callout-success-bg;\n }\n\n > .mx-groupbox-header {\n color: $callout-success-color;\n }\n }\n\n .groupbox-warning.groupbox-callout {\n > .mx-groupbox-header,\n > .mx-groupbox-body {\n background-color: $callout-warning-bg;\n }\n\n > .mx-groupbox-header {\n color: $callout-warning-color;\n }\n }\n\n .groupbox-danger.groupbox-callout {\n > .mx-groupbox-header,\n > .mx-groupbox-body {\n background-color: $callout-danger-bg;\n }\n\n > .mx-groupbox-header {\n color: $callout-danger-color;\n }\n }\n\n //Bootstrap variations\n\n .groupbox-info {\n @include groupbox-variant($groupbox-info-color, $groupbox-info-bg);\n }\n\n .groupbox-inverse {\n @include groupbox-variant($groupbox-inverse-color, $groupbox-inverse-bg);\n }\n\n .groupbox-white {\n @include groupbox-variant($groupbox-white-color, $groupbox-white-bg);\n }\n\n .groupbox-info.groupbox-callout {\n > .mx-groupbox-header,\n > .mx-groupbox-body {\n background-color: $callout-info-bg;\n }\n\n > .mx-groupbox-header {\n color: $callout-info-color;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin groupbox-variant($color, $background) {\n @if not $exclude-group-box {\n > .mx-groupbox-header {\n color: $color;\n border-color: $background;\n background: $background;\n }\n > .mx-groupbox-body {\n border-color: $background;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n//\n// ██████╗ █████╗ ███████╗██╗ ██████╗\n// ██╔══██╗██╔══██╗██╔════╝██║██╔════╝\n// ██████╔╝███████║███████╗██║██║\n// ██╔══██╗██╔══██║╚════██║██║██║\n// ██████╔╝██║ ██║███████║██║╚██████╗\n// ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝\n//\n\n//== Gray Shades\n//## Different gray shades to be used for our variables and components\n$gray-darker: #3b4251 !default;\n$gray-dark: #606671 !default;\n$gray: #787d87 !default;\n$gray-light: #6c7180 !default;\n$gray-primary: #ced0d3 !default;\n$gray-lighter: #f8f8f8 !default;\n\n//== Step 1: Brand Colors\n$brand-default: $gray-primary !default;\n$brand-primary: #264ae5 !default;\n$brand-success: #3cb33d !default;\n$brand-warning: #eca51c !default;\n$brand-danger: #e33f4e !default;\n\n$brand-logo: false !default;\n$brand-logo-height: 26px !default;\n$brand-logo-width: 26px !default; // Only used for CSS brand logo\n\n//== Step 2: UI Customization\n\n// Default Font Size & Color\n$font-size-default: 14px !default;\n$font-color-default: #6c717e !default;\n\n// Global Border Color\n$border-color-default: #ced0d3 !default;\n$border-radius-default: 5px !default;\n\n// Topbar\n$topbar-bg: #fff !default;\n$topbar-minimalheight: 60px !default;\n$topbar-border-color: $border-color-default !default;\n\n// Topbar mobile\n$m-header-height: 45px !default;\n$m-header-bg: $brand-primary !default;\n$m-header-color: #fff !default;\n$m-header-title-size: 16px !default;\n\n// Navbar Brand Name / For your company, product, or project name (used in layouts/base/)\n$navbar-brand-name: $font-color-default !default;\n\n// Background Colors\n// Backgrounds\n$bg-color: #f8f8f8 !default;\n$bg-color-secondary: #fff !default;\n\n// Default Link Color\n$link-color: $brand-primary !default;\n$link-hover-color: darken($link-color, 15%) !default;\n\n//\n// █████╗ ██████╗ ██╗ ██╗ █████╗ ███╗ ██╗ ██████╗███████╗██████╗\n// ██╔══██╗██╔══██╗██║ ██║██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗\n// ███████║██║ ██║██║ ██║███████║██╔██╗ ██║██║ █████╗ ██║ ██║\n// ██╔══██║██║ ██║╚██╗ ██╔╝██╔══██║██║╚██╗██║██║ ██╔══╝ ██║ ██║\n// ██║ ██║██████╔╝ ╚████╔╝ ██║ ██║██║ ╚████║╚██████╗███████╗██████╔╝\n// ╚═╝ ╚═╝╚═════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚══════╝╚═════╝\n//\n\n//== Typography\n//## Change your font family, weight, line-height, headings and more (used in components/typography)\n\n// Font Family Import (Used for google font plugin in theme creater)\n$font-family-import: \"resources/fonts/open-sans/open-sans.css\" !default;\n\n// Font Family / False = fallback from Bootstrap (Helvetica Neue)\n$font-family-base: \"Open Sans\", sans-serif !default;\n\n// Font Sizes\n$font-size-large: 18px !default;\n$font-size-small: 12px !default;\n\n// Font Weights\n$font-weight-light: 100 !default;\n$font-weight-normal: normal !default;\n$font-weight-semibold: 600 !default;\n$font-weight-bold: bold !default;\n\n// Font Size Headers\n$font-size-h1: 31px !default;\n$font-size-h2: 26px !default;\n$font-size-h3: 24px !default;\n$font-size-h4: 18px !default;\n$font-size-h5: $font-size-default !default;\n$font-size-h6: 12px !default;\n\n// Font Weight Headers\n$font-weight-header: $font-weight-semibold !default;\n\n// Line Height\n$line-height-base: 1.428571429 !default;\n\n// Spacing\n$font-header-margin: 0 0 8px 0 !default;\n\n// Text Colors\n$font-color-detail: #6c717e !default;\n$font-color-header: #0a1326 !default;\n\n//== Navigation\n//## Used in components/navigation\n\n// Default Navigation styling\n$navigation-item-height: unset !default;\n$navigation-item-padding: 16px !default;\n\n$navigation-font-size: $font-size-default !default;\n$navigation-sub-font-size: $font-size-small !default;\n$navigation-glyph-size: 20px !default; // For glyphicons that you can select in the Mendix Modeler\n\n$navigation-color: #fff !default;\n$navigation-color-hover: #fff !default;\n$navigation-color-active: #fff !default;\n\n$navigation-sub-color: #aaa !default;\n$navigation-sub-color-hover: $brand-primary !default;\n$navigation-sub-color-active: $brand-primary !default;\n\n// Navigation Sidebar\n$navsidebar-font-size: $font-size-default !default;\n$navsidebar-sub-font-size: $font-size-small !default;\n$navsidebar-glyph-size: 20px !default; // For glyphicons that you can select in the Mendix Modeler\n\n$navsidebar-color: #fff !default;\n$navsidebar-color-hover: #fff !default;\n$navsidebar-color-active: #fff !default;\n\n$navsidebar-sub-color: #aaa !default;\n$navsidebar-sub-color-hover: $brand-primary !default;\n$navsidebar-sub-color-active: $brand-primary !default;\n\n$navsidebar-width-closed: 52px !default;\n$navsidebar-width-open: 232px !default;\n\n// Navigation topbar\n$navtopbar-font-size: $font-size-default !default;\n$navtopbar-sub-font-size: $font-size-small !default;\n$navtopbar-glyph-size: 1.2em !default; // For glyphicons that you can select in the Mendix Modeler\n\n$navtopbar-bg: $topbar-bg !default;\n$navtopbar-bg-hover: darken($navtopbar-bg, 4) !default;\n$navtopbar-bg-active: darken($navtopbar-bg, 8) !default;\n$navtopbar-color: $font-color-default !default;\n$navtopbar-color-hover: $navtopbar-color !default;\n$navtopbar-color-active: $navtopbar-color !default;\n\n$navtopbar-sub-bg: lighten($navtopbar-bg, 4) !default;\n$navtopbar-sub-bg-hover: $navtopbar-sub-bg !default;\n$navtopbar-sub-bg-active: $navtopbar-sub-bg !default;\n$navtopbar-sub-color: #aaa !default;\n$navtopbar-sub-color-hover: $brand-primary !default;\n$navtopbar-sub-color-active: $brand-primary !default;\n\n//== Cards\n// Shadow color\n$shadow-color-border: rgba($gray-primary, 0.5);\n$shadow-color: rgba($gray-primary, 0.66);\n\n//Shadow size\n$shadow-small: 0 2px 4px 0;\n$shadow-medium: 0 5px 7px 0;\n$shadow-large: 0 8px 10px 0;\n\n//## Used in layouts/base\n$navtopbar-border-color: $topbar-border-color !default;\n\n//== Form\n//## Used in components/inputs\n\n// Values that can be used default | lined\n$form-input-style: default !default;\n\n// Form Label\n$form-label-size: $font-size-default !default;\n$form-label-weight: $font-weight-semibold !default;\n$form-label-gutter: 8px !default;\n\n// Form Input dimensions\n$form-input-height: auto !default;\n$form-input-padding-y: 8px !default;\n$form-input-padding-x: 8px !default;\n$form-input-static-padding-y: 8px !default;\n$form-input-static-padding-x: 0 !default;\n$form-input-font-size: $form-label-size !default;\n$form-input-line-height: $line-height-base !default;\n$form-input-border-radius: $border-radius-default !default;\n\n// Form Input styling\n$form-input-bg: #fff !default;\n$form-input-bg-focus: #fff !default;\n$form-input-bg-hover: $gray-primary !default;\n$form-input-bg-disabled: $bg-color !default;\n$form-input-color: $font-color-default !default;\n$form-input-focus-color: $form-input-color !default;\n$form-input-disabled-color: #9da1a8 !default;\n$form-input-placeholder-color: #6c717c !default;\n$form-input-border-color: $gray-primary !default;\n$form-input-border-focus-color: $brand-primary !default;\n\n// Form Input Static styling\n$form-input-static-border-color: $gray-primary !default;\n\n// Form Group\n$form-group-margin-bottom: 16px !default;\n$form-group-gutter: 16px !default;\n\n//== Buttons\n//## Define background-color, border-color and text. Used in components/buttons\n\n// Default button style\n$btn-font-size: 14px !default;\n$btn-bordered: false !default; // Default value false, set to true if you want this effect\n$btn-border-radius: $border-radius-default !default;\n\n// Button Background Color\n$btn-default-bg: #fff !default;\n$btn-primary-bg: $brand-primary !default;\n$btn-success-bg: $brand-success !default;\n$btn-warning-bg: $brand-warning !default;\n$btn-danger-bg: $brand-danger !default;\n\n// Button Border Color\n$btn-default-border-color: $gray-primary !default;\n$btn-primary-border-color: $brand-primary !default;\n$btn-success-border-color: $brand-success !default;\n$btn-warning-border-color: $brand-warning !default;\n$btn-danger-border-color: $brand-danger !default;\n\n// Button Text Color\n$btn-default-color: $brand-primary !default;\n$btn-primary-color: #fff !default;\n$btn-success-color: #fff !default;\n$btn-warning-color: #fff !default;\n$btn-danger-color: #fff !default;\n\n// Button Icon Color\n$btn-default-icon-color: $gray !default;\n\n// Button Background Color\n$btn-default-bg-hover: $btn-default-border-color !default;\n$btn-primary-bg-hover: mix($btn-primary-bg, black, 80%) !default;\n$btn-success-bg-hover: mix($btn-success-bg, black, 80%) !default;\n$btn-warning-bg-hover: mix($btn-warning-bg, black, 80%) !default;\n$btn-danger-bg-hover: mix($btn-danger-bg, black, 80%) !default;\n$btn-link-bg-hover: $gray-lighter !default;\n\n//== Header blocks\n//## Define look and feel over multible building blocks that serve as header\n\n$header-min-height: 240px !default;\n$header-bg-color: $brand-primary !default;\n$header-bgimage-filter: brightness(60%) !default;\n$header-text-color: #fff !default;\n$header-text-color-detail: rgba(0, 0, 0, 0.2) !default;\n\n//\n// ███████╗██╗ ██╗██████╗ ███████╗██████╗ ████████╗\n// ██╔════╝╚██╗██╔╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝\n// █████╗ ╚███╔╝ ██████╔╝█████╗ ██████╔╝ ██║\n// ██╔══╝ ██╔██╗ ██╔═══╝ ██╔══╝ ██╔══██╗ ██║\n// ███████╗██╔╝ ██╗██║ ███████╗██║ ██║ ██║\n// ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝\n//\n\n//== Color variations\n//## These variations are used to support several other variables and components\n\n// Color variations\n$color-default-darker: mix($brand-default, black, 60%) !default;\n$color-default-dark: mix($brand-default, black, 70%) !default;\n$color-default-light: mix($brand-default, white, 20%) !default;\n$color-default-lighter: mix($brand-default, white, 10%) !default;\n\n$color-primary-darker: mix($brand-primary, black, 60%) !default;\n$color-primary-dark: mix($brand-primary, black, 70%) !default;\n$color-primary-light: mix($brand-primary, white, 20%) !default;\n$color-primary-lighter: mix($brand-primary, white, 10%) !default;\n\n$color-success-darker: mix($brand-success, black, 60%) !default;\n$color-success-dark: mix($brand-success, black, 70%) !default;\n$color-success-light: mix($brand-success, white, 20%) !default;\n$color-success-lighter: mix($brand-success, white, 10%) !default;\n\n$color-warning-darker: mix($brand-warning, black, 60%) !default;\n$color-warning-dark: mix($brand-warning, black, 70%) !default;\n$color-warning-light: mix($brand-warning, white, 20%) !default;\n$color-warning-lighter: mix($brand-warning, white, 10%) !default;\n\n$color-danger-darker: mix($brand-danger, black, 60%) !default;\n$color-danger-dark: mix($brand-danger, black, 70%) !default;\n$color-danger-light: mix($brand-danger, white, 20%) !default;\n$color-danger-lighter: mix($brand-danger, white, 10%) !default;\n\n$brand-gradient: linear-gradient(to right top, #264ae5, #2239c5, #1b29a6, #111988, #03096c) !default;\n\n//== Grids\n//## Used for Datagrid, Templategrid, Listview & Tables (see components folder)\n\n// Default Border Colors\n$grid-border-color: $border-color-default !default;\n\n// Spacing\n// Default\n$grid-padding-top: 16px !default;\n$grid-padding-right: 16px !default;\n$grid-padding-bottom: 16px !default;\n$grid-padding-left: 16px !default;\n\n// Listview\n$listview-padding-top: 16px !default;\n$listview-padding-right: 16px !default;\n$listview-padding-bottom: 16px !default;\n$listview-padding-left: 16px !default;\n\n// Background Colors\n$grid-bg: transparent !default;\n$grid-bg-header: transparent !default; // Grid Headers\n$grid-bg-hover: mix($grid-border-color, #fff, 20%) !default;\n$grid-bg-selected: mix($grid-border-color, #fff, 30%) !default;\n$grid-bg-selected-hover: mix($grid-border-color, #fff, 50%) !default;\n\n// Striped Background Color\n$grid-bg-striped: mix($grid-border-color, #fff, 10%) !default;\n\n// Background Footer Color\n$grid-footer-bg: $gray-primary !default;\n\n// Text Color\n$grid-selected-color: $font-color-default !default;\n\n// Paging Colors\n$grid-paging-bg: transparent !default;\n$grid-paging-bg-hover: transparent !default;\n$grid-paging-border-color: transparent !default;\n$grid-paging-border-color-hover: transparent !default;\n$grid-paging-color: $gray-light !default;\n$grid-paging-color-hover: $brand-primary !default;\n\n//== Tabs\n//## Default variables for Tab Container Widget (used in components/tabcontainer)\n\n// Text Color\n$tabs-color: $font-color-detail !default;\n$tabs-color-active: $font-color-default !default;\n$tabs-lined-color-active: $font-color-default !default;\n\n$tabs-lined-border-width: 3px !default;\n\n// Border Color\n$tabs-border-color: $border-color-default !default;\n$tabs-lined-border-color: $brand-primary !default;\n\n// Background Color\n$tabs-bg: transparent !default;\n$tabs-bg-pills: #e7e7e9 !default;\n$tabs-bg-hover: lighten($tabs-border-color, 5) !default;\n$tabs-bg-active: $brand-primary !default;\n\n//== Modals\n//## Default Mendix Modal, Blocking Modal and Login Modal (used in components/modals)\n\n// Background Color\n$modal-header-bg: transparent !default;\n\n// Border Color\n$modal-header-border-color: $border-color-default !default;\n\n// Text Color\n$modal-header-color: $font-color-default !default;\n\n//== Dataview\n//## Default variables for Dataview Widget (used in components/dataview)\n\n// Controls\n$dataview-controls-bg: transparent !default;\n$dataview-controls-border-color: $border-color-default !default;\n\n// Empty Message\n$dataview-emptymessage-bg: $bg-color !default;\n$dataview-emptymessage-color: $font-color-default !default;\n\n//== Alerts\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\n\n// Background Color\n$alert-primary-bg: $color-primary-lighter !default;\n$alert-secondary-bg: $color-primary-lighter !default;\n$alert-success-bg: $color-success-lighter !default;\n$alert-warning-bg: $color-warning-lighter !default;\n$alert-danger-bg: $color-danger-lighter !default;\n\n// Text Color\n$alert-primary-color: $color-primary-darker !default;\n$alert-secondary-color: $color-primary-darker !default;\n$alert-success-color: $color-success-darker !default;\n$alert-warning-color: $color-warning-darker !default;\n$alert-danger-color: $color-danger-darker !default;\n\n// Border Color\n$alert-primary-border-color: $color-primary-dark !default;\n$alert-secondary-border-color: $color-primary-dark !default;\n$alert-success-border-color: $color-success-dark !default;\n$alert-warning-border-color: $color-warning-dark !default;\n$alert-danger-border-color: $color-danger-dark !default;\n\n//== Wizard\n\n$wizard-step-height: 48px !default;\n$wizard-step-number-size: 64px !default;\n$wizard-step-number-font-size: $font-size-h3 !default;\n\n//Wizard states\n$wizard-default: #fff !default;\n$wizard-active: $brand-primary !default;\n$wizard-visited: $brand-success !default;\n\n//Wizard step states\n$wizard-default-bg: $wizard-default !default;\n$wizard-default-color: $wizard-default !default;\n$wizard-default-step-color: $font-color-default !default;\n$wizard-default-border-color: $border-color-default !default;\n\n$wizard-active-bg: $wizard-active !default;\n$wizard-active-color: $wizard-default !default;\n$wizard-active-step-color: $wizard-active !default;\n$wizard-active-border-color: $wizard-active !default;\n\n$wizard-visited-bg: $wizard-visited !default;\n$wizard-visited-color: $wizard-default !default;\n$wizard-visited-step-color: $wizard-visited !default;\n$wizard-visited-border-color: $wizard-visited !default;\n\n//== Labels\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\n\n// Background Color\n$label-default-bg: $brand-default !default;\n$label-primary-bg: $brand-primary !default;\n$label-success-bg: $brand-success !default;\n$label-warning-bg: $brand-warning !default;\n$label-danger-bg: $brand-danger !default;\n\n// Border Color\n$label-default-border-color: $brand-default !default;\n$label-primary-border-color: $brand-primary !default;\n$label-success-border-color: $brand-success !default;\n$label-warning-border-color: $brand-warning !default;\n$label-danger-border-color: $brand-danger !default;\n\n// Text Color\n$label-default-color: $font-color-default !default;\n$label-primary-color: #fff !default;\n$label-success-color: #fff !default;\n$label-warning-color: #fff !default;\n$label-danger-color: #fff !default;\n\n//== Groupbox\n//## Default variables for Groupbox Widget (used in components/groupbox)\n\n// Background Color\n$groupbox-default-bg: $gray-primary !default;\n$groupbox-primary-bg: $brand-primary !default;\n$groupbox-success-bg: $brand-success !default;\n$groupbox-warning-bg: $brand-warning !default;\n$groupbox-danger-bg: $brand-danger !default;\n$groupbox-white-bg: #fff !default;\n\n// Text Color\n$groupbox-default-color: $font-color-default !default;\n$groupbox-primary-color: #fff !default;\n$groupbox-success-color: #fff !default;\n$groupbox-warning-color: #fff !default;\n$groupbox-danger-color: #fff !default;\n$groupbox-white-color: $font-color-default !default;\n\n//== Callout (groupbox) Colors\n//## Extended variables for Groupbox Widget (used in components/groupbox)\n\n// Text and Border Color\n$callout-default-color: $font-color-default !default;\n$callout-primary-color: $brand-primary !default;\n$callout-success-color: $brand-success !default;\n$callout-warning-color: $brand-warning !default;\n$callout-danger-color: $brand-danger !default;\n\n// Background Color\n$callout-default-bg: $color-default-lighter !default;\n$callout-primary-bg: $color-primary-lighter !default;\n$callout-success-bg: $color-success-lighter !default;\n$callout-warning-bg: $color-warning-lighter !default;\n$callout-danger-bg: $color-danger-lighter !default;\n\n//== Timeline\n//## Extended variables for Timeline Widget\n// Colors\n$timeline-icon-color: $brand-primary !default;\n$timeline-border-color: $border-color-default !default;\n$timeline-event-time-color: $brand-primary !default;\n\n// Sizes\n$timeline-icon-size: 18px !default;\n$timeline-image-size: 36px !default;\n\n//Timeline grouping\n$timeline-grouping-size: 120px !default;\n$timeline-grouping-border-radius: 30px !default;\n$timeline-grouping-border-color: $timeline-border-color !default;\n\n//== Accordions\n//## Extended variables for Accordion Widget\n\n// Default\n$accordion-header-default-bg: $bg-color-secondary !default;\n$accordion-header-default-bg-hover: $bg-color !default;\n$accordion-header-default-color: $font-color-header !default;\n$accordion-default-border-color: $border-color-default !default;\n\n$accordion-bg-striped: $grid-bg-striped !default;\n$accordion-bg-striped-hover: $grid-bg-selected !default;\n\n// Semantic background colors\n$accordion-header-primary-bg: $btn-primary-bg !default;\n$accordion-header-secondary-bg: $btn-default-bg !default;\n$accordion-header-success-bg: $btn-success-bg !default;\n$accordion-header-warning-bg: $btn-warning-bg !default;\n$accordion-header-danger-bg: $btn-danger-bg !default;\n\n$accordion-header-primary-bg-hover: $btn-primary-bg-hover !default;\n$accordion-header-secondary-bg-hover: $btn-default-bg-hover !default;\n$accordion-header-success-bg-hover: $btn-success-bg-hover !default;\n$accordion-header-warning-bg-hover: $btn-warning-bg-hover !default;\n$accordion-header-danger-bg-hover: $btn-danger-bg-hover !default;\n\n// Semantic text colors\n$accordion-header-primary-color: $btn-primary-color !default;\n$accordion-header-secondary-color: $btn-default-color !default;\n$accordion-header-success-color: $btn-success-color !default;\n$accordion-header-warning-color: $btn-warning-color !default;\n$accordion-header-danger-color: $btn-danger-color !default;\n\n// Semantic border colors\n$accordion-primary-border-color: $btn-primary-border-color !default;\n$accordion-secondary-border-color: $btn-default-border-color !default;\n$accordion-success-border-color: $btn-success-border-color !default;\n$accordion-warning-border-color: $btn-warning-border-color !default;\n$accordion-danger-border-color: $btn-danger-border-color !default;\n\n//== Spacing\n//## Advanced layout options (used in base/mixins/default-spacing)\n\n// Smallest spacing\n$spacing-smallest: 2px !default;\n\n// Smaller spacing\n$spacing-smaller: 4px !default;\n\n// Small spacing\n$spacing-small: 8px !default;\n\n// Medium spacing\n$spacing-medium: 16px !default;\n$t-spacing-medium: 16px !default;\n$m-spacing-medium: 16px !default;\n\n// Large spacing\n$spacing-large: 24px !default;\n$t-spacing-large: 24px !default;\n$m-spacing-large: 16px !default;\n\n// Larger spacing\n$spacing-larger: 32px !default;\n\n// Largest spacing\n$spacing-largest: 48px !default;\n\n// Layout spacing\n$layout-spacing-top: 24px !default;\n$layout-spacing-right: 24px !default;\n$layout-spacing-bottom: 24px !default;\n$layout-spacing-left: 24px !default;\n\n$t-layout-spacing-top: 24px !default;\n$t-layout-spacing-right: 24px !default;\n$t-layout-spacing-bottom: 24px !default;\n$t-layout-spacing-left: 24px !default;\n\n$m-layout-spacing-top: 16px !default;\n$m-layout-spacing-right: 16px !default;\n$m-layout-spacing-bottom: 16px !default;\n$m-layout-spacing-left: 16px !default;\n\n// Combined layout spacing\n$layout-spacing: $layout-spacing-top $layout-spacing-right $layout-spacing-bottom $layout-spacing-left !default;\n$m-layout-spacing: $m-layout-spacing-top $m-layout-spacing-right $m-layout-spacing-bottom $m-layout-spacing-left !default;\n$t-layout-spacing: $t-layout-spacing-top $t-layout-spacing-right $t-layout-spacing-bottom $t-layout-spacing-left !default;\n\n// Gutter size\n$gutter-size: 8px !default;\n\n//== Tables\n//## Table spacing options (used in components/tables)\n\n$padding-table-cell-top: 8px !default;\n$padding-table-cell-bottom: 8px !default;\n$padding-table-cell-left: 8px !default;\n$padding-table-cell-right: 8px !default;\n\n//== Media queries breakpoints\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n$screen-xs: 480px !default;\n$screen-sm: 576px !default;\n$screen-md: 768px !default;\n$screen-lg: 992px !default;\n$screen-xl: 1200px !default;\n\n// So media queries don't overlap when required, provide a maximum (used for max-width)\n$screen-xs-max: calc(#{$screen-sm} - 1px) !default;\n$screen-sm-max: calc(#{$screen-md} - 1px) !default;\n$screen-md-max: calc(#{$screen-lg} - 1px) !default;\n$screen-lg-max: calc(#{$screen-xl} - 1px) !default;\n\n//== Settings\n//## Enable or disable your desired framework features\n// Use of !important\n$important-flex: true !default; // ./base/flex.scss\n$important-spacing: true !default; // ./base/spacing.scss\n$important-helpers: true !default; // ./helpers/helperclasses.scss\n\n//===== Legacy variables =====\n\n//== Step 1: Brand Colors\n$brand-inverse: #24276c !default;\n$brand-info: #0086d9 !default;\n\n//== Step 2: UI Customization\n// Sidebar\n$sidebar-bg: $brand-inverse !default;\n\n//== Navigation\n//## Used in components/navigation\n\n// Default Navigation styling\n$navigation-bg: $brand-inverse !default;\n$navigation-bg-hover: lighten($navigation-bg, 4) !default;\n$navigation-bg-active: lighten($navigation-bg, 8) !default;\n\n$navigation-sub-bg: darken($navigation-bg, 4) !default;\n$navigation-sub-bg-hover: $navigation-sub-bg !default;\n$navigation-sub-bg-active: $navigation-sub-bg !default;\n\n$navigation-border-color: $navigation-bg-hover !default;\n\n// Navigation Sidebar\n$navsidebar-bg: $sidebar-bg !default;\n$navsidebar-bg-hover: darken($navsidebar-bg, 4) !default;\n$navsidebar-bg-active: darken($navsidebar-bg, 8) !default;\n\n$navsidebar-sub-bg: darken($navsidebar-bg, 4) !default;\n$navsidebar-sub-bg-hover: $navsidebar-sub-bg !default;\n$navsidebar-sub-bg-active: $navsidebar-sub-bg !default;\n\n$navsidebar-border-color: $navsidebar-bg-hover !default;\n\n//== Form\n//## Used in components/inputs\n\n// Form Label\n$form-label-color: $brand-inverse !default;\n\n//== Buttons\n//## Define background-color, border-color and text. Used in components/buttons\n\n// Button Background Color\n$btn-inverse-bg: $brand-inverse !default;\n$btn-info-bg: $brand-info !default;\n\n// Button Border Color\n$btn-inverse-border-color: $brand-inverse !default;\n$btn-info-border-color: $brand-info !default;\n\n// Button Text Color\n$btn-inverse-color: #fff !default;\n$btn-info-color: #fff !default;\n\n// Button Background Color\n$btn-inverse-bg-hover: mix($btn-inverse-bg, white, 80%) !default;\n$btn-info-bg-hover: mix($btn-info-bg, black, 80%) !default;\n\n//== Color variations\n//## These variations are used to support several other variables and components\n\n// Color variations\n$color-inverse-darker: mix($brand-inverse, black, 60%) !default;\n$color-inverse-dark: mix($brand-inverse, black, 70%) !default;\n$color-inverse-light: mix($brand-inverse, white, 40%) !default;\n$color-inverse-lighter: mix($brand-inverse, white, 20%) !default;\n\n$color-info-darker: mix($brand-info, black, 60%) !default;\n$color-info-dark: mix($brand-info, black, 70%) !default;\n$color-info-light: mix($brand-info, white, 60%) !default;\n$color-info-lighter: mix($brand-info, white, 20%) !default;\n\n//== Alerts\n//## Default Bootstrap alerts, not a widget in the Modeler (used in components/alerts)\n\n// Background Color\n$alert-info-bg: $color-primary-lighter !default;\n\n// Text Color\n$alert-info-color: $color-primary-darker !default;\n\n// Border Color\n$alert-info-border-color: $color-primary-dark !default;\n//== Labels\n//## Default Bootstrap Labels, not a widget in the Modeler (used in components/labels)\n\n// Background Color\n$label-info-bg: $brand-info !default;\n$label-inverse-bg: $brand-inverse !default;\n\n// Border Color\n$label-info-border-color: $brand-info !default;\n$label-inverse-border-color: $brand-inverse !default;\n\n// Text Color\n$label-info-color: #fff !default;\n$label-inverse-color: #fff !default;\n\n//== Groupbox\n//## Default variables for Groupbox Widget (used in components/groupbox)\n\n// Background Color\n$groupbox-inverse-bg: $brand-inverse !default;\n$groupbox-info-bg: $brand-info !default;\n\n// Text Color\n$groupbox-inverse-color: #fff !default;\n$groupbox-info-color: #fff !default;\n//== Callout (groupbox) Colors\n//## Extended variables for Groupbox Widget (used in components/groupbox)\n\n// Text and Border Color\n$callout-info-color: $brand-info !default;\n\n// Background Color\n$callout-info-bg: $color-info-lighter !default;\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin image-helpers() {\n /* ==========================================================================\n Image\n\n Default Mendix image widgets\n ========================================================================== */\n\n img.img-rounded,\n .img-rounded img {\n border-radius: 6px;\n }\n\n img.img-thumbnail,\n .img-thumbnail img {\n display: inline-block;\n max-width: 100%;\n height: auto;\n padding: 4px;\n transition: all 0.2s ease-in-out;\n border: 1px solid $brand-default;\n border-radius: 4px;\n background-color: #ffffff;\n line-height: $line-height-base;\n }\n\n img.img-circle,\n .img-circle img {\n border-radius: 50%;\n }\n\n img.img-auto,\n .img-auto img {\n width: auto !important;\n max-width: 100% !important;\n height: auto !important;\n max-height: 100% !important;\n }\n\n img.img-center,\n .img-center img {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n img.img-icon {\n width: 20px;\n height: 20px;\n padding: 2px;\n border-radius: 50%;\n }\n\n img.img-fill,\n .img-fill img {\n object-fit: fill;\n }\n\n img.img-contain,\n .img-contain img {\n object-fit: contain;\n }\n\n img.img-cover,\n .img-cover img {\n object-fit: cover;\n }\n\n img.img-scale-down,\n .img-scale-down img {\n object-fit: scale-down;\n }\n\n .img-contain.mx-image-background {\n background-size: contain;\n }\n\n .img-cover.mx-image-background {\n background-size: cover;\n }\n\n .img-auto.mx-image-background {\n background-size: auto;\n }\n\n .img-opacity-low img,\n .img-opacity-low.mx-image-background {\n opacity: 0.3;\n }\n\n .img-opacity-medium img,\n .img-opacity-medium.mx-image-background {\n opacity: 0.5;\n }\n\n .img-opacity-high img,\n .img-opacity-high.mx-image-background {\n opacity: 0.7;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin list-view() {\n /* ==========================================================================\n List view\n\n Default Mendix list view widget. The list view shows a list of objects arranged vertically. Each object is shown using a template\n ========================================================================== */\n .mx-listview {\n // Remove widget padding\n padding: 0;\n /* Clear search button (overrides load more button stying) */\n & > ul {\n margin: 0 0 $spacing-medium;\n\n .mx-listview-empty {\n border-style: none;\n background-color: transparent;\n }\n\n & > li {\n @include transition();\n background-color: #fff;\n padding: $spacing-medium;\n border-top: 1px solid $grid-border-color;\n\n &:last-child {\n border-bottom: 1px solid $grid-border-color;\n }\n\n &:focus,\n &:active {\n outline: 0;\n }\n }\n }\n\n .selected {\n background: $color-primary-light;\n }\n\n .mx-layoutgrid {\n padding: 0 !important;\n }\n }\n\n // Search bar\n .mx-listview-searchbar {\n margin-bottom: $spacing-medium;\n\n .btn {\n width: auto;\n }\n }\n\n /* Load more button */\n .btn.mx-listview-loadMore {\n width: 100%;\n margin: 0 0 $spacing-medium;\n }\n\n //== Phone specific\n //-------------------------------------------------------------------------------------------------------------------//\n .profile-phone .mx-listview {\n .mx-listview-searchbar {\n margin-bottom: 3px;\n background: #ffffff;\n box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);\n\n input {\n padding: 14px 15px;\n color: #555555;\n border-style: none;\n border-radius: 0;\n box-shadow: none;\n }\n\n .btn {\n padding: 14px 15px;\n color: inherit;\n border-style: none;\n }\n }\n\n & > ul > li {\n &:first-child {\n border-top: none;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin list-view-helpers() {\n /* ==========================================================================\n List view\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n\n // List items lined\n .listview-lined.mx-listview {\n & > ul > li {\n border-top: 1px solid $grid-border-color;\n\n &:first-child {\n border-top: 1px solid $grid-border-color;\n }\n\n &:last-child {\n border-bottom: 1px solid $grid-border-color;\n }\n }\n }\n\n //List items Bordered\n .listview-bordered.mx-listview {\n & > ul > li {\n border: 1px solid $grid-border-color;\n border-top: 0;\n\n &:first-child {\n border-top: 1px solid $grid-border-color;\n }\n\n &:last-child {\n }\n }\n }\n\n // List items striped\n .listview-striped.mx-listview {\n & > ul > li:nth-child(2n + 1) {\n background-color: $grid-bg-striped;\n }\n }\n\n // Items as seperated blocks\n .listview-seperated.mx-listview {\n & > ul > li {\n margin-bottom: $spacing-medium;\n border: 1px solid $grid-border-color;\n border-radius: $border-radius-default;\n }\n }\n\n // Remove all styling - deprecated\n .listview-stylingless.mx-listview {\n & > ul > li {\n padding: unset;\n cursor: default;\n border: unset;\n background-color: transparent;\n\n &:hover,\n &:focus,\n &:active {\n background-color: transparent;\n }\n\n &.selected {\n background-color: transparent !important;\n\n &:hover,\n &:focus,\n &:active {\n background-color: transparent !important;\n }\n }\n }\n }\n\n // Hover style activated\n .listview-hover.mx-listview {\n & > ul > li {\n cursor: pointer;\n\n &:hover,\n &:focus,\n &:active {\n background-color: $grid-bg-hover;\n }\n\n &.selected {\n &:hover,\n &:focus,\n &:active {\n background-color: $grid-bg-selected-hover;\n }\n }\n }\n }\n\n // Row Sizes\n\n .listview-sm.mx-listview {\n & > ul > li {\n padding: $spacing-small;\n }\n }\n\n .listview-lg.mx-listview {\n & > ul > li {\n padding: $spacing-large;\n }\n }\n\n // Bootstrap columns\n .mx-listview[class*=\"lv-col\"] {\n overflow: hidden; // For if it is not in a layout, to prevent scrollbars\n & > ul {\n display: flex; // normal a table\n flex-wrap: wrap;\n margin-right: -1 * $gutter-size;\n margin-left: -1 * $gutter-size;\n\n &::before,\n &::after {\n // clearfix\n display: table;\n clear: both;\n content: \" \";\n }\n\n & > li {\n // bootstrap col\n position: relative;\n min-height: 1px;\n padding-right: $gutter-size;\n padding-left: $gutter-size;\n border: 0;\n @media (max-width: $screen-md-max) {\n width: 100% !important;\n }\n\n & > .mx-dataview {\n overflow: hidden;\n }\n }\n }\n\n &.lv-col-xs-12 > ul > li {\n width: 100% !important;\n }\n\n &.lv-col-xs-11 > ul > li {\n width: 91.66666667% !important;\n }\n\n &.lv-col-xs-10 > ul > li {\n width: 83.33333333% !important;\n }\n\n &.lv-col-xs-9 > ul > li {\n width: 75% !important;\n }\n\n &.lv-col-xs-8 > ul > li {\n width: 66.66666667% !important;\n }\n\n &.lv-col-xs-7 > ul > li {\n width: 58.33333333% !important;\n }\n\n &.lv-col-xs-6 > ul > li {\n width: 50% !important;\n }\n\n &.lv-col-xs-5 > ul > li {\n width: 41.66666667% !important;\n }\n\n &.lv-col-xs-4 > ul > li {\n width: 33.33333333% !important;\n }\n\n &.lv-col-xs-3 > ul > li {\n width: 25% !important;\n }\n\n &.lv-col-xs-2 > ul > li {\n width: 16.66666667% !important;\n }\n\n &.lv-col-xs-1 > ul > li {\n width: 8.33333333% !important;\n }\n\n @media (min-width: $screen-md) {\n &.lv-col-sm-12 > ul > li {\n width: 100% !important;\n }\n &.lv-col-sm-11 > ul > li {\n width: 91.66666667% !important;\n }\n &.lv-col-sm-10 > ul > li {\n width: 83.33333333% !important;\n }\n &.lv-col-sm-9 > ul > li {\n width: 75% !important;\n }\n &.lv-col-sm-8 > ul > li {\n width: 66.66666667% !important;\n }\n &.lv-col-sm-7 > ul > li {\n width: 58.33333333% !important;\n }\n &.lv-col-sm-6 > ul > li {\n width: 50% !important;\n }\n &.lv-col-sm-5 > ul > li {\n width: 41.66666667% !important;\n }\n &.lv-col-sm-4 > ul > li {\n width: 33.33333333% !important;\n }\n &.lv-col-sm-3 > ul > li {\n width: 25% !important;\n }\n &.lv-col-sm-2 > ul > li {\n width: 16.66666667% !important;\n }\n &.lv-col-sm-1 > ul > li {\n width: 8.33333333% !important;\n }\n }\n @media (min-width: $screen-lg) {\n &.lv-col-md-12 > ul > li {\n width: 100% !important;\n }\n &.lv-col-md-11 > ul > li {\n width: 91.66666667% !important;\n }\n &.lv-col-md-10 > ul > li {\n width: 83.33333333% !important;\n }\n &.lv-col-md-9 > ul > li {\n width: 75% !important;\n }\n &.lv-col-md-8 > ul > li {\n width: 66.66666667% !important;\n }\n &.lv-col-md-7 > ul > li {\n width: 58.33333333% !important;\n }\n &.lv-col-md-6 > ul > li {\n width: 50% !important;\n }\n &.lv-col-md-5 > ul > li {\n width: 41.66666667% !important;\n }\n &.lv-col-md-4 > ul > li {\n width: 33.33333333% !important;\n }\n &.lv-col-md-3 > ul > li {\n width: 25% !important;\n }\n &.lv-col-md-2 > ul > li {\n width: 16.66666667% !important;\n }\n &.lv-col-md-1 > ul > li {\n width: 16.66666667% !important;\n }\n }\n @media (min-width: $screen-xl) {\n &.lv-col-lg-12 > ul > li {\n width: 100% !important;\n }\n &.lv-col-lg-11 > ul > li {\n width: 91.66666667% !important;\n }\n &.lv-col-lg-10 > ul > li {\n width: 83.33333333% !important;\n }\n &.lv-col-lg-9 > ul > li {\n width: 75% !important;\n }\n &.lv-col-lg-8 > ul > li {\n width: 66.66666667% !important;\n }\n &.lv-col-lg-7 > ul > li {\n width: 58.33333333% !important;\n }\n &.lv-col-lg-6 > ul > li {\n width: 50% !important;\n }\n &.lv-col-lg-5 > ul > li {\n width: 41.66666667% !important;\n }\n &.lv-col-lg-4 > ul > li {\n width: 33.33333333% !important;\n }\n &.lv-col-lg-3 > ul > li {\n width: 25% !important;\n }\n &.lv-col-lg-2 > ul > li {\n width: 16.66666667% !important;\n }\n &.lv-col-lg-1 > ul > li {\n width: 8.33333333% !important;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin modal() {\n /* ==========================================================================\n Modal\n\n Default Mendix modals. Modals are streamlined, but flexible, dialog prompts with the minimum required functionality and smart defaults\n ========================================================================== */\n .modal-dialog {\n .modal-content {\n border: 1px solid $modal-header-border-color;\n border-radius: 4px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n\n .modal-header {\n padding: 15px 20px;\n border-bottom-color: $modal-header-border-color;\n border-radius: 0; // Because of the class .mx-window-active in mxui.css\n background-color: $modal-header-bg;\n\n h4 {\n margin: 0;\n color: $modal-header-color;\n font-size: 16px;\n font-weight: $font-weight-bold;\n }\n\n .close {\n margin-top: -3px;\n opacity: 1;\n /* For IE8 and earlier */\n color: $modal-header-color;\n text-shadow: none;\n &:focus {\n border-radius: 4px;\n outline: 2px solid $brand-primary;\n }\n }\n }\n\n .modal-body {\n }\n\n .modal-footer {\n display: flex;\n justify-content: flex-end;\n margin-top: 0;\n padding: 20px;\n border-style: none;\n }\n }\n }\n\n // Default Mendix Window Modal\n .mx-window {\n // If popup direct child is a dataview it gets the class mx-window-view\n &.mx-window-view .mx-window-body {\n overflow: hidden; // hide second scrollbar in edit page\n padding: 0;\n // Dataview in popup\n > .mx-dataview > .mx-dataview-content,\n > .mx-placeholder > .mx-dataview > .mx-dataview-content {\n padding: 20px;\n }\n\n > .mx-dataview > .mx-dataview-controls,\n > .mx-placeholder > .mx-dataview > .mx-dataview-controls {\n display: flex;\n justify-content: flex-end;\n margin: 0;\n padding: 20px;\n text-align: left;\n border-top: 1px solid $modal-header-border-color;\n }\n }\n\n .mx-dataview-controls {\n padding-bottom: 0;\n }\n\n .mx-layoutgrid {\n padding-right: 0;\n padding-left: 0;\n }\n }\n\n .mx-dialog .modal-body {\n padding: 24px;\n }\n\n // Login modal\n .mx-login {\n .modal-body {\n padding: 0 15px;\n }\n\n .modal-content {\n input {\n height: 56px;\n padding: 12px 12px;\n border: 1px solid #eeeeee;\n background: #eeeeee;\n box-shadow: none;\n font-size: 16px;\n\n &:focus {\n border-color: #66afe9;\n }\n }\n }\n\n .modal-header,\n .modal-footer {\n border: 0;\n }\n\n button {\n font-size: 16px;\n }\n\n h4 {\n color: #aaaaaa;\n font-size: 20px;\n font-weight: $font-weight-bold;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin navigation-bar() {\n /* ==========================================================================\n Navigation\n\n Default Mendix navigation bar\n ========================================================================== */\n .mx-navbar {\n margin: 0;\n border-style: none;\n border-radius: 0;\n background-color: $navigation-bg;\n\n ul.nav {\n margin: 0; // weird -margin if screen gets small (bootstrap)\n /* Navigation item */\n & > li.mx-navbar-item > a {\n display: flex;\n align-items: center;\n padding: $navigation-item-padding;\n vertical-align: middle;\n color: $navigation-color;\n border-radius: 0;\n font-size: $navigation-font-size;\n font-weight: $font-weight-normal;\n border-radius: $border-radius-default;\n\n /* Dropdown arrow */\n .caret {\n border-top-color: $navigation-color;\n border-bottom-color: $navigation-color;\n }\n\n &:hover,\n &:focus,\n &.active {\n text-decoration: none;\n color: $navigation-color-hover;\n background-color: $navigation-bg-hover;\n\n .caret {\n border-top-color: $navigation-color-active;\n border-bottom-color: $navigation-color-active;\n }\n }\n\n &.active {\n color: $navigation-color-active;\n background-color: $navigation-bg-active;\n opacity: 1;\n }\n\n /* Dropdown */\n .mx-navbar-submenu::before {\n position: absolute;\n top: -9px;\n left: 15px;\n width: 0;\n height: 0;\n content: \"\";\n transform: rotate(360deg);\n border-width: 0 9px 9px 9px;\n border-style: solid;\n border-color: transparent transparent $navigation-border-color transparent;\n }\n\n // Image\n img {\n width: 20px; // Default size (so it looks good)\n height: auto;\n margin-right: 0.5em;\n }\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n top: 0;\n margin-right: 0.5em;\n vertical-align: middle;\n font-size: $navigation-glyph-size;\n }\n }\n\n & > .mx-navbar-item.active a {\n color: $navigation-color-active;\n }\n\n /* When hovering or the dropdown is open */\n & > .mx-navbar-item > a:hover,\n & > .mx-navbar-item > a:focus,\n & > .mx-navbar-item.open > a,\n & > .mx-navbar-item.open > a:hover,\n & > .mx-navbar-item.open > a:focus {\n text-decoration: none;\n color: $navigation-color-hover;\n background-color: $navigation-bg-hover;\n\n .caret {\n border-top-color: $navigation-color-hover;\n border-bottom-color: $navigation-color-hover;\n }\n }\n\n & > .mx-navbar-item.open .dropdown-menu > li.mx-navbar-subitem.active a {\n color: $navigation-sub-color-active;\n background-color: $navigation-sub-bg-active;\n\n .caret {\n border-top-color: $navigation-sub-color-active;\n border-bottom-color: $navigation-sub-color-active;\n }\n }\n }\n @media (max-width: $screen-md) {\n ul.nav > li.mx-navbar-item > a {\n padding: 10px 24px;\n }\n .mx-navbar-item.open .dropdown-menu {\n padding: 0;\n border-radius: 0;\n background-color: $navigation-sub-bg;\n\n & > li.mx-navbar-subitem > a {\n padding: 10px 24px;\n color: $navigation-sub-color;\n border-radius: 0;\n font-size: $navigation-sub-font-size;\n font-weight: $font-weight-normal;\n\n &:hover,\n &:focus {\n color: $navigation-sub-color-hover;\n background-color: $navigation-sub-bg-hover;\n }\n\n &.active {\n color: $navigation-sub-color-active;\n background-color: $navigation-sub-bg-active;\n }\n }\n }\n }\n\n /* remove focus */\n &:focus {\n outline: 0;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin navigation-bar-helpers() {\n /* ==========================================================================\n Navigation\n\n //== Regions\n //## Behavior in the different regions\n ========================================================================== */\n // When used in topbar\n .region-topbar {\n .mx-navbar {\n background-color: $navtopbar-bg;\n min-height: auto;\n ul.nav {\n > .mx-navbar-item {\n margin-left: $spacing-small;\n }\n /* Navigation item */\n & > li.mx-navbar-item > a {\n color: $navtopbar-color;\n font-size: $navtopbar-font-size;\n line-height: 1.2;\n /* Dropdown arrow */\n .caret {\n border-top-color: $navtopbar-color;\n border-bottom-color: $navtopbar-color;\n }\n &:hover,\n &:focus,\n &.active {\n color: $navtopbar-color-hover;\n background-color: $navtopbar-bg-hover;\n .caret {\n border-top-color: $navtopbar-color-active;\n border-bottom-color: $navtopbar-color-active;\n }\n }\n &.active {\n color: $navtopbar-color-active;\n background-color: $navtopbar-bg-active;\n }\n\n /* Dropdown */\n .mx-navbar-submenu::before {\n border-color: transparent transparent $navtopbar-border-color transparent;\n }\n\n // Image\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: $navtopbar-glyph-size;\n }\n }\n\n /* When hovering or the dropdown is open */\n & > .mx-navbar-item > a:hover,\n & > .mx-navbar-item > a:focus,\n & > .mx-navbar-item.active a,\n & > .mx-navbar-item.open > a,\n & > .mx-navbar-item.open > a:hover,\n & > .mx-navbar-item.open > a:focus {\n color: $navtopbar-color-hover;\n background-color: $navtopbar-bg-hover;\n .caret {\n border-top-color: $navtopbar-color-hover;\n border-bottom-color: $navtopbar-color-hover;\n }\n }\n\n & > .mx-navbar-item.open .dropdown-menu {\n border-radius: $border-radius-default;\n background-color: $navtopbar-sub-bg;\n padding: $spacing-small $spacing-small 0;\n margin: 0;\n border: 0;\n box-shadow: 0px 2px 2px rgba(194, 196, 201, 0.30354);\n & > li.mx-navbar-subitem a {\n padding: $spacing-small;\n color: $navtopbar-color;\n border-radius: $border-radius-default;\n margin-bottom: $spacing-small;\n line-height: 1.2;\n &:hover,\n &:focus {\n color: $navtopbar-color-hover;\n background-color: $navtopbar-sub-bg-hover;\n }\n }\n }\n & > .mx-navbar-item.open .dropdown-menu > li.mx-navbar-subitem.active a {\n color: $navtopbar-sub-color-active;\n background-color: $navtopbar-sub-bg-active;\n .caret {\n border-top-color: $navtopbar-sub-color-active;\n border-bottom-color: $navtopbar-sub-color-active;\n }\n }\n }\n @media (max-width: $screen-md) {\n ul.nav > li.mx-navbar-item > a {\n }\n .mx-navbar-item.open .dropdown-menu {\n background-color: $navtopbar-sub-bg;\n & > li.mx-navbar-subitem > a {\n color: $navtopbar-sub-color;\n font-size: $navtopbar-sub-font-size;\n &:hover,\n &:focus {\n color: $navtopbar-sub-color-hover;\n background-color: $navtopbar-sub-bg-hover;\n }\n &.active {\n color: $navtopbar-sub-color-active;\n background-color: $navtopbar-sub-bg-active;\n }\n }\n }\n }\n }\n }\n\n // When used in sidebar\n .region-sidebar {\n .mx-navbar {\n background-color: $navsidebar-bg;\n ul.nav {\n /* Navigation item */\n & > li.mx-navbar-item > a {\n color: $navsidebar-color;\n font-size: $navsidebar-font-size;\n\n /* Dropdown arrow */\n .caret {\n border-top-color: $navsidebar-color;\n border-bottom-color: $navsidebar-color;\n }\n &:hover,\n &:focus,\n &.active {\n color: $navsidebar-color-hover;\n background-color: $navsidebar-bg-hover;\n .caret {\n border-top-color: $navsidebar-color-active;\n border-bottom-color: $navsidebar-color-active;\n }\n }\n &.active {\n color: $navsidebar-color-active;\n background-color: $navsidebar-bg-active;\n }\n\n /* Dropdown */\n .mx-navbar-submenu::before {\n border-color: transparent transparent $navsidebar-border-color transparent;\n }\n\n // Image\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: $navsidebar-glyph-size;\n }\n }\n\n /* When hovering or the dropdown is open */\n & > .mx-navbar-item > a:hover,\n & > .mx-navbar-item > a:focus,\n & > .mx-navbar-item.active a,\n & > .mx-navbar-item.open > a,\n & > .mx-navbar-item.open > a:hover,\n & > .mx-navbar-item.open > a:focus {\n color: $navsidebar-color-hover;\n background-color: $navsidebar-bg-hover;\n .caret {\n border-top-color: $navsidebar-color-hover;\n border-bottom-color: $navsidebar-color-hover;\n }\n }\n & > .mx-navbar-item.open .dropdown-menu > li.mx-navbar-subitem.active a {\n color: $navsidebar-sub-color-active;\n background-color: $navsidebar-sub-bg-active;\n .caret {\n border-top-color: $navsidebar-sub-color-active;\n border-bottom-color: $navsidebar-sub-color-active;\n }\n }\n }\n @media (max-width: $screen-md) {\n ul.nav > li.mx-navbar-item > a {\n }\n .mx-navbar-item.open .dropdown-menu {\n background-color: $navtopbar-sub-bg;\n & > li.mx-navbar-subitem > a {\n color: $navsidebar-sub-color;\n font-size: $navsidebar-sub-font-size;\n &:hover,\n &:focus {\n color: $navsidebar-sub-color-hover;\n background-color: $navsidebar-sub-bg-hover;\n }\n &.active {\n color: $navsidebar-sub-color-active;\n background-color: $navsidebar-sub-bg-active;\n }\n }\n }\n }\n }\n }\n\n .hide-icons.mx-navbar {\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n display: none;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin navigation-list() {\n /* ==========================================================================\n Navigation list\n\n Default Mendix navigation list widget. A navigation list can be used to attach an action to an entire row. Such a row is called a navigation list item\n ========================================================================== */\n .mx-navigationlist {\n margin: 0;\n padding: 0;\n list-style: none;\n\n li.mx-navigationlist-item {\n @include transition();\n padding: $spacing-medium;\n border-width: 1px;\n border-style: none none solid none;\n border-color: $grid-border-color;\n border-radius: 0;\n background-color: $grid-bg;\n\n &:hover,\n &:focus {\n color: inherit;\n background-color: $grid-bg-hover;\n }\n\n &.active {\n color: inherit;\n background-color: $grid-bg-selected;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin navigation-tree() {\n /* ==========================================================================\n Navigation\n\n Default Mendix navigation tree\n ========================================================================== */\n .mx-navigationtree {\n background-color: $navigation-bg;\n\n /* Every navigation item */\n .navbar-inner > ul {\n margin: 0;\n padding-left: 0;\n\n & > li {\n padding: 0;\n border-style: none;\n\n & > a {\n display: flex;\n align-items: center;\n height: $navigation-item-height;\n padding: $navigation-item-padding;\n color: $navigation-color;\n //border-bottom: 1px solid $navigation-border-color;\n //border-radius: 0;\n background-color: $navigation-bg;\n text-shadow: none;\n font-size: $navigation-font-size;\n font-weight: $font-weight-normal;\n\n .caret {\n border-top-color: $navigation-color;\n border-bottom-color: $navigation-color;\n }\n\n img {\n width: 20px; // Default size\n height: auto;\n margin-right: 0.5em;\n }\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n top: 0;\n margin-right: 0.5em;\n vertical-align: middle;\n font-size: $navigation-glyph-size;\n }\n }\n\n a:hover,\n a:focus,\n a.active {\n text-decoration: none;\n color: $navigation-color-hover;\n background-color: $navigation-bg-hover;\n\n .caret {\n border-top-color: $navigation-color-active;\n border-bottom-color: $navigation-color-active;\n }\n }\n\n a.active {\n color: $navigation-color-active;\n border-left-color: $navigation-color-active;\n background-color: $navigation-bg-active;\n }\n }\n }\n\n /* Sub navigation item specific */\n li.mx-navigationtree-has-items {\n & > ul {\n margin: 0;\n padding-left: 0;\n background-color: $navigation-sub-bg;\n\n li {\n margin: 0;\n padding: 0;\n border: 0;\n\n a {\n padding: $spacing-medium;\n text-decoration: none;\n color: $navigation-sub-color;\n border: 0;\n background-color: $navigation-sub-bg;\n text-shadow: none;\n font-size: $navigation-sub-font-size;\n font-weight: $font-weight-normal;\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n margin-right: $spacing-small;\n }\n\n &:hover,\n &:focus,\n &.active {\n color: $navigation-sub-color-hover;\n outline: 0;\n background-color: $navigation-sub-bg-hover;\n }\n\n &.active {\n color: $navigation-sub-color-active;\n border: 0;\n background-color: $navigation-sub-bg-active;\n }\n }\n }\n }\n }\n\n /* remove focus */\n &:focus {\n outline: 0;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin navigation-tree-helpers() {\n /* ==========================================================================\n Navigation\n\n //== Regions\n //## Behavior in the different regions\n ========================================================================== */\n // When used in topbar\n .region-topbar {\n .mx-navigationtree {\n background-color: $navtopbar-bg;\n .navbar-inner > ul {\n & > li {\n & > a {\n color: $navtopbar-color;\n border-color: $navtopbar-border-color;\n background-color: $navtopbar-bg;\n font-size: $navtopbar-font-size;\n .caret {\n border-top-color: $navtopbar-color;\n border-bottom-color: $navtopbar-color;\n }\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: $navtopbar-glyph-size;\n }\n }\n a:hover,\n a:focus,\n a.active {\n color: $navtopbar-color-hover;\n background-color: $navtopbar-bg-hover;\n .caret {\n border-top-color: $navtopbar-color-active;\n border-bottom-color: $navtopbar-color-active;\n }\n }\n a.active {\n color: $navtopbar-color-active;\n border-left-color: $navtopbar-color-active;\n background-color: $navtopbar-bg-active;\n }\n }\n }\n\n /* Sub navigation item specific */\n li.mx-navigationtree-has-items {\n & > ul {\n background-color: $navtopbar-sub-bg;\n li {\n a {\n color: $navtopbar-sub-color;\n background-color: $navtopbar-sub-bg;\n font-size: $navtopbar-sub-font-size;\n &:hover,\n &:focus,\n &.active {\n color: $navtopbar-sub-color-hover;\n background-color: $navtopbar-sub-bg-hover;\n }\n &.active {\n color: $navtopbar-sub-color-active;\n background-color: $navtopbar-sub-bg-active;\n }\n }\n }\n }\n }\n }\n }\n\n // When used in sidebar\n .region-sidebar {\n .mx-navigationtree {\n background-color: $navsidebar-bg;\n .navbar-inner > ul {\n & > li {\n & > a {\n color: $navsidebar-color;\n border-color: $navsidebar-border-color;\n background-color: $navsidebar-bg;\n font-size: $navsidebar-font-size;\n .caret {\n border-top-color: $navsidebar-color;\n border-bottom-color: $navsidebar-color;\n }\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: $navsidebar-glyph-size;\n }\n }\n a:hover,\n a:focus,\n a.active {\n color: $navsidebar-color-hover;\n background-color: $navsidebar-bg-hover;\n .caret {\n border-top-color: $navsidebar-color-active;\n border-bottom-color: $navsidebar-color-active;\n }\n }\n a.active {\n color: $navsidebar-color-active;\n border-left-color: $navsidebar-color-active;\n background-color: $navsidebar-bg-active;\n }\n }\n }\n\n /* Sub navigation item specific */\n li.mx-navigationtree-has-items {\n & > ul {\n background-color: $navsidebar-sub-bg;\n li {\n a {\n color: $navsidebar-sub-color;\n background-color: $navsidebar-sub-bg;\n font-size: $navsidebar-sub-font-size;\n &:hover,\n &:focus,\n &.active {\n color: $navsidebar-sub-color-hover;\n background-color: $navsidebar-sub-bg-hover;\n }\n &.active {\n color: $navsidebar-sub-color-active;\n background-color: $navsidebar-sub-bg-active;\n }\n }\n }\n }\n }\n }\n }\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n //-------------------------------------------------------------------------------------------------------------------//\n // Content Centerd text and icons\n .nav-content-center-text-icons.mx-navigationtree {\n .navbar-inner ul {\n a {\n flex-direction: column;\n justify-content: center;\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n margin: 0 0 5px 0;\n }\n }\n }\n }\n\n // Content Centerd icons only\n .nav-content-center.mx-navigationtree {\n .navbar-inner ul {\n a {\n justify-content: center;\n }\n }\n }\n\n .hide-icons.mx-navigationtree {\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n display: none;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin pop-up-menu() {\n /* ==========================================================================\n Pop-up menu\n\n Default Mendix pop-up menu\n ========================================================================== */\n .popupmenu {\n position: relative;\n display: inline-flex;\n }\n\n .popupmenu-trigger {\n cursor: pointer;\n }\n\n .popupmenu-menu {\n position: absolute;\n z-index: 999;\n display: none;\n flex-direction: column;\n width: max-content;\n border-radius: 8px;\n background-color: $bg-color;\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\n\n &.popupmenu-position-left:not(.popup-portal) {\n top: 0;\n left: 0;\n transform: translateX(-100%);\n }\n\n &.popupmenu-position-right:not(.popup-portal) {\n top: 0;\n right: 0;\n transform: translateX(100%);\n }\n\n &.popupmenu-position-top:not(.popup-portal) {\n top: 0;\n transform: translateY(-100%);\n }\n\n &.popupmenu-position-bottom:not(.popup-portal) {\n bottom: 0;\n transform: translateY(100%);\n }\n\n .popupmenu-basic-item:first-child,\n .popupmenu-custom-item:first-child {\n border-top-left-radius: 8px;\n border-top-right-radius: 8px;\n }\n\n .popupmenu-basic-item:last-child,\n .popupmenu-custom-item:last-child {\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n }\n }\n\n .popupmenu-basic-divider {\n width: 100%;\n height: 1px;\n background-color: $brand-default;\n }\n\n .popupmenu-basic-item {\n padding: 12px 16px;\n color: $font-color-default;\n font-size: 14px;\n\n &:hover,\n &:focus,\n &:active {\n cursor: pointer;\n border-color: $bg-color-secondary;\n background-color: $bg-color-secondary;\n }\n\n &-inverse {\n color: $brand-inverse;\n }\n\n &-primary {\n color: $brand-primary;\n }\n\n &-info {\n color: $brand-info;\n }\n\n &-success {\n color: $brand-success;\n }\n\n &-warning {\n color: $brand-warning;\n }\n\n &-danger {\n color: $brand-danger;\n }\n }\n\n .popupmenu-custom-item {\n &:hover,\n &:focus,\n &:active {\n cursor: pointer;\n border-color: $bg-color-secondary;\n background-color: $bg-color-secondary;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n@mixin simple-menu-bar() {\n /* ==========================================================================\n Navigation\n\n Default Mendix simple menu bar\n ========================================================================== */\n .mx-menubar {\n padding: 0;\n background-color: $navigation-bg;\n\n ul.mx-menubar-list {\n display: flex;\n width: 100%;\n min-height: 58px;\n\n li.mx-menubar-item {\n margin: 0;\n\n > a {\n display: flex;\n overflow: hidden;\n align-items: center;\n justify-content: center;\n height: 100%;\n padding: $navigation-item-padding;\n white-space: nowrap;\n color: $navigation-color;\n border-radius: 0;\n font-size: $navigation-font-size;\n font-weight: $font-weight-normal;\n\n img {\n margin-right: 0.5em;\n }\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n top: -1px;\n margin-right: 0.5em;\n vertical-align: middle;\n font-size: $navigation-glyph-size;\n }\n }\n\n a:hover,\n a:focus,\n &:hover a,\n &:focus a,\n &.active a {\n text-decoration: none;\n color: $navigation-color-hover;\n background-color: $navigation-bg-hover;\n }\n\n &.active a {\n color: $navigation-color-active;\n background-color: $navigation-bg-active;\n }\n }\n }\n\n /* remove focus */\n &:focus {\n outline: 0;\n }\n }\n\n // Vertical variation specifics\n .mx-menubar-vertical {\n background-color: $navigation-bg;\n\n ul.mx-menubar-list {\n display: flex;\n flex-direction: column;\n\n li.mx-menubar-item {\n display: block;\n\n a {\n border-bottom: 1px solid $navigation-border-color;\n }\n }\n }\n }\n\n // Horizontal variation specifics\n .mx-menubar-horizontal {\n box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 0.14);\n\n ul.mx-menubar-list {\n li.mx-menubar-item {\n width: auto;\n\n a {\n width: 100%;\n }\n }\n }\n\n /* Two menu items */\n &.menubar-col-6 ul.mx-menubar-list li.mx-menubar-item {\n width: 50%;\n }\n\n /* Three menu items */\n &.menubar-col-4 ul.mx-menubar-list li.mx-menubar-item {\n width: 33.33333333%;\n }\n\n /* Four menu items */\n &.menubar-col-3 ul.mx-menubar-list li.mx-menubar-item {\n width: 25%;\n }\n\n /* Five menu items */\n &.menubar-col-2 ul.mx-menubar-list li.mx-menubar-item {\n width: 20%;\n }\n }\n\n //== Regions\n //## Behavior in the different regions\n //-------------------------------------------------------------------------------------------------------------------//\n // When used in topbar\n .region-topbar {\n .mx-menubar {\n background-color: $navtopbar-bg;\n\n ul.mx-menubar-list {\n li.mx-menubar-item {\n a {\n color: $navtopbar-color;\n font-size: $navtopbar-font-size;\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: $navtopbar-glyph-size;\n }\n }\n\n a:hover,\n a:focus,\n &:hover a,\n &:focus a,\n &.active a {\n color: $navtopbar-color-hover;\n background-color: $navtopbar-bg-hover;\n }\n\n &.active a {\n color: $navtopbar-color-active;\n background-color: $navtopbar-bg-active;\n }\n }\n }\n }\n\n // Vertical variation specifics\n .mx-menubar-vertical {\n background-color: $navtopbar-bg;\n\n ul.mx-menubar-list {\n li.mx-menubar-item {\n a {\n height: $navigation-item-height;\n border-color: $navtopbar-border-color;\n }\n }\n }\n }\n }\n\n // When used in sidebar\n .region-sidebar {\n .mx-menubar {\n background-color: $navsidebar-bg;\n\n ul.mx-menubar-list {\n li.mx-menubar-item {\n a {\n color: $navsidebar-color;\n font-size: $navsidebar-font-size;\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: $navsidebar-glyph-size;\n }\n }\n\n a:hover,\n a:focus,\n &:hover a,\n &:focus a,\n &.active a {\n color: $navsidebar-color-hover;\n background-color: $navsidebar-bg-hover;\n }\n\n &.active a {\n color: $navsidebar-color-active;\n background-color: $navsidebar-bg-active;\n }\n }\n }\n }\n\n // Vertical variation specifics\n .mx-menubar-vertical {\n background-color: $navsidebar-bg;\n\n ul.mx-menubar-list {\n li.mx-menubar-item {\n a {\n border-color: $navsidebar-border-color;\n }\n }\n }\n }\n }\n\n @supports (padding-bottom: env(safe-area-inset-bottom)) {\n .mx-menubar {\n padding-bottom: env(safe-area-inset-bottom);\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin simple-menu-bar-helpers() {\n /* ==========================================================================\n Navigation\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Center text and icons\n .bottom-nav-text-icons.mx-menubar {\n ul.mx-menubar-list {\n li.mx-menubar-item {\n flex: 1;\n a {\n flex-direction: column;\n padding: $spacing-small $spacing-small $spacing-small/2;\n line-height: normal;\n font-size: $font-size-small;\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n display: block;\n margin: 0 0 $spacing-small/2 0;\n font-size: $font-size-large;\n }\n img {\n display: block;\n height: $font-size-large;\n margin: 0 0 $spacing-small/2 0;\n }\n }\n }\n }\n }\n\n .hide-icons.mx-menubar {\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n display: none;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin radio-button() {\n /* ==========================================================================\n Radio button\n\n Default Mendix radio button widget\n ========================================================================== */\n .mx-radiobuttons.inline .mx-radiogroup {\n display: flex;\n flex-direction: row;\n\n .radio {\n margin: 0 20px 0 0;\n }\n }\n\n .mx-radiobuttons .radio:last-child {\n margin-bottom: 0;\n }\n\n .radio {\n display: flex !important; // Remove after mxui merge\n align-items: center;\n margin-top: 0;\n }\n\n input[type=\"radio\"] {\n position: relative !important; // Remove after mxui merge\n width: 16px;\n height: 16px;\n margin: 0;\n cursor: pointer;\n -webkit-user-select: none;\n user-select: none;\n appearance: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n\n &:before,\n &:after {\n position: absolute;\n display: block;\n transition: all 0.3s ease-in-out;\n border-radius: 50%;\n }\n\n &:before {\n width: 100%;\n height: 100%;\n content: \"\";\n border: 1px solid $form-input-border-color;\n background-color: transparent;\n }\n\n &:after {\n top: 50%;\n left: 50%;\n width: 50%;\n height: 50%;\n transform: translate(-50%, -50%);\n pointer-events: none;\n background-color: $form-input-border-focus-color;\n }\n\n &:not(:checked):after {\n transform: translate(-50%, -50%) scale(0);\n opacity: 0;\n }\n\n &:not(:disabled):not(:checked):hover:after {\n background-color: $form-input-bg-hover;\n }\n\n &:checked:after,\n &:not(:disabled):not(:checked):hover:after {\n content: \"\";\n transform: translate(-50%, -50%) scale(1);\n opacity: 1;\n }\n\n &:checked:before {\n border-color: $form-input-border-focus-color;\n background-color: $form-input-bg;\n }\n\n &:disabled:before {\n background-color: $form-input-bg-disabled;\n }\n\n &:checked:disabled:before {\n border-color: rgba($form-input-border-focus-color, 0.4);\n }\n\n &:checked:disabled:after {\n background-color: rgba($form-input-border-focus-color, 0.4);\n }\n\n & + label {\n margin-left: $form-label-gutter;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin scroll-container-dojo() {\n /* ==========================================================================\n Scroll Container\n\n Default Mendix Scroll Container Widget.\n ========================================================================== */\n .mx-scrollcontainer-wrapper:not(.mx-scrollcontainer-nested) {\n -webkit-overflow-scrolling: touch;\n }\n\n .mx-scrollcontainer-horizontal {\n width: 100%;\n display: table;\n table-layout: fixed;\n }\n .mx-scrollcontainer-horizontal > div {\n display: table-cell;\n vertical-align: top;\n }\n\n .mx-scrollcontainer-nested {\n padding: 0;\n }\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-middle > .mx-scrollcontainer-wrapper,\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-left > .mx-scrollcontainer-wrapper,\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-center > .mx-scrollcontainer-wrapper,\n .mx-scrollcontainer-fixed > .mx-scrollcontainer-right > .mx-scrollcontainer-wrapper {\n overflow: auto;\n }\n\n .mx-scrollcontainer-move-in {\n transition: left 250ms ease-out;\n }\n .mx-scrollcontainer-move-out {\n transition: left 250ms ease-in;\n }\n .mx-scrollcontainer-shrink .mx-scrollcontainer-toggleable {\n transition-property: width;\n }\n\n .mx-scrollcontainer-toggleable {\n background-color: #fff;\n }\n\n .mx-scrollcontainer-push {\n position: relative;\n }\n .mx-scrollcontainer-shrink > .mx-scrollcontainer-toggleable {\n overflow: hidden;\n }\n .mx-scrollcontainer-push.mx-scrollcontainer-open > div,\n .mx-scrollcontainer-slide.mx-scrollcontainer-open > div {\n pointer-events: none;\n }\n .mx-scrollcontainer-push.mx-scrollcontainer-open > .mx-scrollcontainer-toggleable,\n .mx-scrollcontainer-slide.mx-scrollcontainer-open > .mx-scrollcontainer-toggleable {\n pointer-events: auto;\n }\n\n // Scroll container spacing\n // NOTE: .mx-placeholder is removed in modern client for the good, this rule is going to be ignored.\n .mx-scrollcontainer .mx-placeholder {\n width: 100%;\n height: 100%;\n\n .mx-layoutgrid,\n .mx-layoutgrid-fluid {\n @include layout-spacing($type: padding, $direction: all, $device: responsive);\n\n .mx-layoutgrid,\n .mx-layoutgrid-fluid {\n padding: 0;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin tab-container() {\n /* ==========================================================================\n Tab Container\n\n Default Mendix Tab Container Widget. Tab containers are used to show information categorized into multiple tab pages.\n This can be very useful if the amount of information that has to be displayed is larger than the amount of space on the screen\n ========================================================================== */\n\n .mx-tabcontainer {\n .mx-tabcontainer-tabs {\n margin-bottom: $spacing-medium;\n border-color: $tabs-border-color;\n display: flex;\n\n > li {\n float: none;\n }\n\n & > li > a {\n margin-right: 0;\n transition: all 0.2s ease-in-out;\n color: $tabs-color;\n font-weight: $font-weight-normal;\n border-radius: $border-radius-default $border-radius-default 0 0;\n\n &:hover,\n &:focus {\n background-color: $tabs-bg-hover;\n }\n }\n\n & > li.active > a,\n & > li.active > a:hover,\n & > li.active > a:focus {\n color: $tabs-color-active;\n border: 1px solid $tabs-border-color;\n border-bottom-color: #fff;\n background-color: $tabs-bg;\n }\n }\n }\n\n // Tab Styling Specific for mobile\n .tab-mobile.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n margin: 0;\n text-align: center;\n border-style: none;\n background-color: $brand-primary;\n\n li {\n display: table-cell;\n float: none; // reset bootstrap\n width: 1%;\n margin: 0;\n text-align: center;\n border-style: none;\n border-radius: 0;\n\n a {\n padding: 16px;\n text-transform: uppercase;\n color: #ffffff;\n border-width: 0 1px 0 0;\n border-style: solid;\n border-color: rgba(255, 255, 255, 0.3);\n border-radius: 0;\n font-size: 12px;\n font-weight: $font-weight-normal;\n\n &:hover,\n &:focus {\n background-color: inherit;\n }\n }\n\n &:last-child a {\n border-right: none;\n }\n\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n color: #ffffff;\n border-style: none;\n border-radius: 0;\n background-color: mix($brand-primary, #000000, 80%);\n }\n }\n }\n }\n\n .mx-tabcontainer-badge {\n margin-left: $spacing-small;\n border-radius: $font-size-small;\n background-color: $label-primary-bg;\n color: $label-primary-color;\n font-size: $font-size-small;\n font-weight: $font-weight-bold;\n line-height: 1;\n padding: $spacing-small/2 $spacing-small;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin tab-container-helpers() {\n /* ==========================================================================\n Tab container\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Style as pills\n .tab-pills.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n border: 0;\n\n & > li {\n margin-bottom: $spacing-small;\n }\n\n & > li > a {\n margin-right: $spacing-small;\n color: $tabs-color;\n border-radius: $border-radius-default;\n background-color: $tabs-bg-pills;\n\n &:hover,\n &:focus {\n background-color: $tabs-bg-hover;\n }\n }\n\n & > li.active > a,\n & > li.active > a:hover,\n & > li.active > a:focus {\n color: #ffffff;\n border-color: $tabs-bg-active;\n background-color: $tabs-bg-active;\n }\n }\n }\n\n // Style with lines\n .tab-lined.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n border-width: 1px;\n\n li {\n margin-right: $spacing-large;\n\n & > a {\n padding: $spacing-medium 0 ($spacing-medium - $tabs-lined-border-width) 0; // border is 3px\n color: $tabs-color;\n border: 0;\n border-bottom: $tabs-lined-border-width solid transparent;\n border-radius: 0;\n\n &:hover,\n &:focus {\n color: $tabs-color;\n border: 0;\n border-color: transparent;\n background: transparent;\n }\n }\n\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n color: $tabs-lined-color-active;\n border: 0;\n border-bottom: $tabs-lined-border-width solid $tabs-lined-border-color;\n background-color: transparent;\n }\n }\n }\n }\n\n // Justified style\n // Lets your tabs take 100% of the width\n .tab-justified.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n width: 100%;\n border-bottom: 0;\n\n & > li {\n flex: 1;\n float: none; // reset bootstrap\n margin: 0;\n @media (max-width: $screen-sm-max) {\n display: block;\n width: 100%;\n }\n\n & > a {\n text-align: center;\n }\n }\n }\n }\n\n // Bordered\n .tab-bordered.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n margin: 0;\n }\n\n & > .mx-tabcontainer-content {\n padding: $spacing-small;\n border-width: 0 1px 1px 1px;\n border-style: solid;\n border-color: $tabs-border-color;\n background-color: transparent;\n }\n }\n\n // Wizard\n .tab-wizard.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n position: relative;\n display: flex;\n justify-content: space-between;\n border-style: none;\n\n &::before {\n position: absolute;\n top: $spacing-medium;\n display: block;\n width: 100%;\n height: 1px;\n content: \"\";\n background-color: $tabs-border-color;\n }\n\n & > li {\n position: relative;\n float: none; // reset bootstrap\n width: 100%;\n text-align: center;\n\n & > a {\n width: calc((#{$spacing-medium} * 2) + 1px);\n height: calc((#{$spacing-medium} * 2) + 1px);\n margin: auto;\n padding: 0;\n text-align: center;\n color: $brand-primary;\n border: 1px solid $tabs-border-color;\n border-radius: 100%;\n background-color: $bg-color;\n font-size: $font-size-large;\n font-weight: bold;\n display: flex;\n justify-content: center;\n align-items: center;\n }\n\n &.active {\n & > a,\n & > a:hover,\n & > a:focus {\n color: #ffffff;\n border-color: $tabs-bg-active;\n background-color: $tabs-bg-active;\n }\n }\n }\n }\n }\n\n //add tabcontainer flex classes\n\n .tab-center.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n display: flex;\n align-items: center;\n flex-flow: wrap;\n justify-content: center;\n }\n }\n\n .tab-left.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n display: flex;\n align-items: center;\n flex-flow: wrap;\n justify-content: flex-start;\n }\n }\n\n .tab-right.mx-tabcontainer {\n & > .mx-tabcontainer-tabs {\n display: flex;\n align-items: center;\n flex-flow: wrap;\n justify-content: flex-end;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin table() {\n /* ==========================================================================\n Table\n\n Default Mendix table widget. Tables can be used to lend structure to a page. They contain a number of rows (tr) and columns, the intersection of which is called a cell (td). Each cell can contain widgets\n ========================================================================== */\n\n th {\n font-weight: $font-weight-bold;\n }\n\n html body .mx-page table.mx-table {\n th,\n td {\n &.nopadding {\n padding: 0;\n }\n }\n }\n\n table.mx-table {\n > tbody {\n /* Table row */\n > tr {\n /* Table header */\n > th {\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\n $padding-table-cell-left;\n\n s * {\n color: $form-label-color;\n font-weight: $font-weight-bold;\n font-weight: $form-label-weight;\n }\n\n > label {\n padding-top: 8px;\n padding-bottom: 6px; // Aligns label in the middle if there is no input field next to it.\n }\n }\n\n /* Table cells */\n > td {\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\n $padding-table-cell-left;\n\n > div > label,\n .mx-referenceselector-input-wrapper label {\n padding-top: 8px;\n padding-bottom: 6px; // Aligns label in the middle if there is no input field next to it.\n }\n }\n }\n }\n }\n\n // Default Mendix Table Widget inside TemplateGrid\n .mx-templategrid table.mx-table {\n > tbody {\n > tr {\n > th,\n > td {\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\n $padding-table-cell-left;\n }\n }\n }\n }\n\n // Default Mendix Table Widget inside Listview\n .mx-list table.mx-table {\n > tbody {\n > tr {\n > th,\n > td {\n padding: $padding-table-cell-top $padding-table-cell-right $padding-table-cell-bottom\n $padding-table-cell-left;\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin table-helpers() {\n /* ==========================================================================\n Table\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Lined\n table.table-lined.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > td {\n border-width: 1px 0;\n border-style: solid;\n border-color: $grid-border-color;\n }\n }\n }\n }\n\n // Bordered\n table.table-bordered.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > th,\n > td {\n border-width: 1px;\n border-style: solid;\n border-color: $grid-border-color;\n }\n }\n }\n }\n\n // Makes table compact\n table.table-compact.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > th,\n > td {\n padding-top: 2px;\n padding-bottom: 2px;\n }\n }\n }\n }\n\n // Tables Vertical\n // Will remove unwanted paddings\n table.table-vertical.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n > th {\n padding-bottom: 0;\n\n > label {\n padding: 0;\n }\n\n > div > label {\n padding: 0;\n }\n }\n }\n }\n }\n\n // Align content in middle\n table.table-align-vertical-middle.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > th,\n > td {\n vertical-align: middle;\n }\n }\n }\n }\n\n // Compact labels\n table.table-label-compact.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > th,\n > td {\n > label {\n margin: 0;\n padding: 0;\n }\n\n > div > label,\n .mx-referenceselector-input-wrapper label {\n margin: 0;\n padding: 0;\n }\n }\n }\n }\n }\n\n $height-row-s: 55px;\n $height-row-m: 70px;\n $height-row-l: 120px;\n // Small rows\n table.table-row-s.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > th,\n > td {\n height: $height-row-s;\n }\n }\n }\n }\n\n // Medium rows\n table.table-row-m.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > th,\n > td {\n height: $height-row-m;\n }\n }\n }\n }\n\n // Large rows\n table.table-row-l.mx-table {\n > tbody {\n // Table row\n > tr {\n // Table header\n // Table data\n > th,\n > td {\n height: $height-row-l;\n }\n }\n }\n }\n\n // Makes the columns fixed\n table.table-fixed {\n table-layout: fixed;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin template-grid() {\n /* ==========================================================================\n Template grid\n\n Default Mendix template grid Widget. The template grid shows a list of objects in a tile view. For example, a template grid can show a list of products. The template grid has a lot in common with the data grid. The main difference is that the objects are shown in templates (a sort of small data view) instead of rows\n ========================================================================== */\n\n .mx-templategrid {\n .mx-templategrid-content-wrapper {\n table-layout: fixed;\n }\n\n .mx-templategrid-item {\n padding: $grid-padding-top $grid-padding-right $grid-padding-bottom $grid-padding-left;\n cursor: default;\n background-color: $grid-bg;\n\n &:hover {\n background-color: transparent;\n }\n\n &.selected {\n background-color: $grid-bg-selected !important;\n }\n }\n\n .mx-layoutgrid {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin template-grid-helpers() {\n /* ==========================================================================\n Template grid\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Make sure your content looks selectable\n .templategrid-selectable.mx-templategrid {\n .mx-templategrid-item {\n cursor: pointer;\n }\n }\n\n // Lined\n .templategrid-lined.mx-templategrid {\n .mx-grid-content {\n border-top-width: 2px;\n border-top-style: solid;\n border-top-color: $grid-border-color;\n }\n\n .mx-templategrid-item {\n border-top: 1px solid $grid-border-color;\n border-right: none;\n border-bottom: 1px solid $grid-border-color;\n border-left: none;\n }\n }\n\n // Striped\n .templategrid-striped.mx-templategrid {\n .mx-templategrid-row:nth-child(odd) .mx-templategrid-item {\n background-color: #f9f9f9;\n }\n }\n\n // Stylingless\n .templategrid-stylingless.mx-templategrid {\n .mx-templategrid-item {\n padding: 0;\n cursor: default;\n border: 0;\n background-color: transparent;\n\n &:hover {\n background-color: transparent;\n }\n\n &.selected {\n background-color: transparent !important;\n\n &:hover {\n background-color: transparent !important;\n }\n }\n }\n }\n\n // Transparent items\n .templategrid-transparent.mx-templategrid {\n .mx-templategrid-item {\n border: 0;\n background-color: transparent;\n }\n }\n\n // Hover\n .templategrid-hover.mx-templategrid {\n .mx-templategrid-item {\n &:hover {\n background-color: $grid-bg-hover !important;\n }\n\n &.selected {\n background-color: $grid-bg-selected !important;\n\n &:hover {\n background-color: $grid-bg-selected-hover !important;\n }\n }\n }\n }\n\n // Templategrid Row Sizes\n .templategrid-lg.mx-templategrid {\n .mx-templategrid-item {\n padding: ($grid-padding-top * 2) ($grid-padding-right * 2) ($grid-padding-bottom * 2)\n ($grid-padding-left * 2);\n }\n }\n\n .templategrid-sm.mx-templategrid {\n .mx-templategrid-item {\n padding: ($grid-padding-top / 2) ($grid-padding-right / 2) ($grid-padding-bottom / 2)\n ($grid-padding-left / 2);\n }\n }\n\n // Templategrid Layoutgrid styles\n .mx-templategrid[class*=\"tg-col\"] {\n overflow: hidden; // For if it is not in a layout, to prevent scrollbars\n .mx-templategrid-content-wrapper {\n display: block;\n }\n\n .mx-templategrid-row {\n display: block;\n margin-right: -1 * $gutter-size;\n margin-left: -1 * $gutter-size;\n\n &::before,\n &::after {\n // clearfix\n display: table;\n clear: both;\n content: \" \";\n }\n }\n\n .mx-templategrid-item {\n // bootstrap col\n position: relative;\n display: block;\n float: left;\n min-height: 1px;\n padding-right: $gutter-size;\n padding-left: $gutter-size;\n border: 0;\n @media (max-width: 992px) {\n width: 100% !important;\n }\n\n .mx-dataview {\n overflow: hidden;\n }\n }\n\n &.tg-col-xs-12 .mx-templategrid-item {\n width: 100% !important;\n }\n\n &.tg-col-xs-11 .mx-templategrid-item {\n width: 91.66666667% !important;\n }\n\n &.tg-col-xs-10 .mx-templategrid-item {\n width: 83.33333333% !important;\n }\n\n &.tg-col-xs-9 .mx-templategrid-item {\n width: 75% !important;\n }\n\n &.tg-col-xs-8 .mx-templategrid-item {\n width: 66.66666667% !important;\n }\n\n &.tg-col-xs-7 .mx-templategrid-item {\n width: 58.33333333% !important;\n }\n\n &.tg-col-xs-6 .mx-templategrid-item {\n width: 50% !important;\n }\n\n &.tg-col-xs-5 .mx-templategrid-item {\n width: 41.66666667% !important;\n }\n\n &.tg-col-xs-4 .mx-templategrid-item {\n width: 33.33333333% !important;\n }\n\n &.tg-col-xs-3 .mx-templategrid-item {\n width: 25% !important;\n }\n\n &.tg-col-xs-2 .mx-templategrid-item {\n width: 16.66666667% !important;\n }\n\n &.tg-col-xs-1 .mx-templategrid-item {\n width: 8.33333333% !important;\n }\n\n @media (min-width: 768px) {\n &.tg-col-sm-12 .mx-templategrid-item {\n width: 100% !important;\n }\n &.tg-col-sm-11 .mx-templategrid-item {\n width: 91.66666667% !important;\n }\n &.tg-col-sm-10 .mx-templategrid-item {\n width: 83.33333333% !important;\n }\n &.tg-col-sm-9 .mx-templategrid-item {\n width: 75% !important;\n }\n &.tg-col-sm-8 .mx-templategrid-item {\n width: 66.66666667% !important;\n }\n &.tg-col-sm-7 .mx-templategrid-item {\n width: 58.33333333% !important;\n }\n &.tg-col-sm-6 .mx-templategrid-item {\n width: 50% !important;\n }\n &.tg-col-sm-5 .mx-templategrid-item {\n width: 41.66666667% !important;\n }\n &.tg-col-sm-4 .mx-templategrid-item {\n width: 33.33333333% !important;\n }\n &.tg-col-sm-3 .mx-templategrid-item {\n width: 25% !important;\n }\n &.tg-col-sm-2 .mx-templategrid-item {\n width: 16.66666667% !important;\n }\n &.tg-col-sm-1 .mx-templategrid-item {\n width: 8.33333333% !important;\n }\n }\n @media (min-width: 992px) {\n &.tg-col-md-12 .mx-templategrid-item {\n width: 100% !important;\n }\n &.tg-col-md-11 .mx-templategrid-item {\n width: 91.66666667% !important;\n }\n &.tg-col-md-10 .mx-templategrid-item {\n width: 83.33333333% !important;\n }\n &.tg-col-md-9 .mx-templategrid-item {\n width: 75% !important;\n }\n &.tg-col-md-8 .mx-templategrid-item {\n width: 66.66666667% !important;\n }\n &.tg-col-md-7 .mx-templategrid-item {\n width: 58.33333333% !important;\n }\n &.tg-col-md-6 .mx-templategrid-item {\n width: 50% !important;\n }\n &.tg-col-md-5 .mx-templategrid-item {\n width: 41.66666667% !important;\n }\n &.tg-col-md-4 .mx-templategrid-item {\n width: 33.33333333% !important;\n }\n &.tg-col-md-3 .mx-templategrid-item {\n width: 25% !important;\n }\n &.tg-col-md-2 .mx-templategrid-item {\n width: 16.66666667% !important;\n }\n &.tg-col-md-1 .mx-templategrid-item {\n width: 8.33333333% !important;\n }\n }\n @media (min-width: 1200px) {\n &.tg-col-lg-12 .mx-templategrid-item {\n width: 100% !important;\n }\n &.tg-col-lg-11 .mx-templategrid-item {\n width: 91.66666667% !important;\n }\n &.tg-col-lg-10 .mx-templategrid-item {\n width: 83.33333333% !important;\n }\n &.tg-col-lg-9 .mx-templategrid-item {\n width: 75% !important;\n }\n &.tg-col-lg-8 .mx-templategrid-item {\n width: 66.66666667% !important;\n }\n &.tg-col-lg-7 .mx-templategrid-item {\n width: 58.33333333% !important;\n }\n &.tg-col-lg-6 .mx-templategrid-item {\n width: 50% !important;\n }\n &.tg-col-lg-5 .mx-templategrid-item {\n width: 41.66666667% !important;\n }\n &.tg-col-lg-4 .mx-templategrid-item {\n width: 33.33333333% !important;\n }\n &.tg-col-lg-3 .mx-templategrid-item {\n width: 25% !important;\n }\n &.tg-col-lg-2 .mx-templategrid-item {\n width: 16.66666667% !important;\n }\n &.tg-col-lg-1 .mx-templategrid-item {\n width: 8.33333333% !important;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin typography() {\n /* ==========================================================================\n Typography\n ========================================================================== */\n\n p {\n line-height: $line-height-base * 1.25;\n margin: 0 0 $spacing-small;\n }\n\n .mx-title {\n margin: $font-header-margin;\n color: $font-color-header;\n font-size: $font-size-h1;\n font-weight: $font-weight-header;\n }\n\n h1,\n .h1,\n .h1 > * {\n font-size: $font-size-h1;\n }\n\n h2,\n .h2,\n .h2 > * {\n font-size: $font-size-h2;\n }\n\n h3,\n .h3,\n .h3 > * {\n font-size: $font-size-h3;\n }\n\n h4,\n .h4,\n .h4 > * {\n font-size: $font-size-h4;\n }\n\n h5,\n .h5,\n .h5 > * {\n font-size: $font-size-h5;\n }\n\n h6,\n .h6,\n .h6 > * {\n font-size: $font-size-h6;\n }\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .h1,\n .h2,\n .h3,\n .h4,\n .h5,\n .h6 {\n margin: $font-header-margin;\n color: $font-color-header;\n font-weight: $font-weight-header;\n line-height: 1.3;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin typography-helpers() {\n /* ==========================================================================\n Typography\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n // Text size\n .text-small {\n font-size: $font-size-small !important;\n }\n\n .text-large {\n font-size: $font-size-large !important;\n }\n\n // Text Weights\n .text-light,\n .text-light > *,\n .text-light label {\n font-weight: $font-weight-light !important;\n }\n\n .text-normal,\n .text-normal > *,\n .text-normal label {\n font-weight: $font-weight-normal !important;\n }\n\n .text-semibold,\n .text-semibold > *,\n .text-semibold label {\n font-weight: $font-weight-semibold !important;\n }\n\n .text-bold,\n .text-bold > *,\n .text-bold label {\n font-weight: $font-weight-bold !important;\n }\n\n // Color variations\n .text-secondary,\n .text-secondary:hover,\n .text-default,\n .text-default:hover {\n color: $font-color-default !important;\n }\n\n .text-primary,\n .text-primary:hover {\n color: $brand-primary !important;\n }\n\n .text-info,\n .text-info:hover {\n color: $brand-info !important;\n }\n\n .text-success,\n .text-success:hover {\n color: $brand-success !important;\n }\n\n .text-warning,\n .text-warning:hover {\n color: $brand-warning !important;\n }\n\n .text-danger,\n .text-danger:hover {\n color: $brand-danger !important;\n }\n\n .text-header {\n color: $font-color-header !important;\n }\n\n .text-detail {\n color: $font-color-detail !important;\n }\n\n .text-white {\n color: #ffffff;\n }\n\n // Alignment options\n .text-left {\n text-align: left !important;\n }\n .text-center {\n text-align: center !important;\n }\n .text-right {\n text-align: right !important;\n }\n .text-justify {\n text-align: justify !important;\n }\n\n // Transform options\n .text-lowercase {\n text-transform: lowercase !important;\n }\n .text-uppercase {\n text-transform: uppercase !important;\n }\n .text-capitalize {\n text-transform: capitalize !important;\n }\n\n // Wrap options\n .text-break {\n word-break: break-all !important;\n word-break: break-word !important;\n -webkit-hyphens: auto !important;\n hyphens: auto !important;\n }\n\n .text-nowrap {\n white-space: nowrap !important;\n }\n\n .text-nowrap {\n overflow: hidden !important;\n max-width: 100% !important;\n white-space: nowrap !important;\n text-overflow: ellipsis !important;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin layout-grid() {\n /* ==========================================================================\n Layout grid\n\n Default Bootstrap containers\n ========================================================================== */\n .mx-layoutgrid {\n width: 100%;\n margin-right: auto;\n margin-left: auto;\n padding-right: $gutter-size;\n padding-left: $gutter-size;\n }\n\n // Row\n .row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -$gutter-size;\n margin-left: -$gutter-size;\n\n &::before,\n &::after {\n content: normal;\n }\n }\n\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n }\n\n .no-gutters > .col,\n .no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n\n // Columns\n .col-1,\n .col-2,\n .col-3,\n .col-4,\n .col-5,\n .col-6,\n .col-7,\n .col-8,\n .col-9,\n .col-10,\n .col-11,\n .col-12,\n .col,\n .col-auto,\n .col-sm-1,\n .col-sm-2,\n .col-sm-3,\n .col-sm-4,\n .col-sm-5,\n .col-sm-6,\n .col-sm-7,\n .col-sm-8,\n .col-sm-9,\n .col-sm-10,\n .col-sm-11,\n .col-sm-12,\n .col-sm,\n .col-sm-auto,\n .col-md-1,\n .col-md-2,\n .col-md-3,\n .col-md-4,\n .col-md-5,\n .col-md-6,\n .col-md-7,\n .col-md-8,\n .col-md-9,\n .col-md-10,\n .col-md-11,\n .col-md-12,\n .col-md,\n .col-md-auto,\n .col-lg-1,\n .col-lg-2,\n .col-lg-3,\n .col-lg-4,\n .col-lg-5,\n .col-lg-6,\n .col-lg-7,\n .col-lg-8,\n .col-lg-9,\n .col-lg-10,\n .col-lg-11,\n .col-lg-12,\n .col-lg,\n .col-lg-auto,\n .col-xl-1,\n .col-xl-2,\n .col-xl-3,\n .col-xl-4,\n .col-xl-5,\n .col-xl-6,\n .col-xl-7,\n .col-xl-8,\n .col-xl-9,\n .col-xl-10,\n .col-xl-11,\n .col-xl-12,\n .col-xl,\n .col-xl-auto {\n position: relative;\n width: 100%;\n padding-right: $gutter-size;\n padding-left: $gutter-size;\n }\n\n .col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n\n .col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n\n .col-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n\n .col-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n\n .col-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n\n .col-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n\n .col-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n\n .col-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n\n .col-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n\n .col-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n\n .col-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n\n .col-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n\n .col-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n\n .col-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n\n .order-first {\n order: -1;\n }\n\n .order-last {\n order: 13;\n }\n\n .order-0 {\n order: 0;\n }\n\n .order-1 {\n order: 1;\n }\n\n .order-2 {\n order: 2;\n }\n\n .order-3 {\n order: 3;\n }\n\n .order-4 {\n order: 4;\n }\n\n .order-5 {\n order: 5;\n }\n\n .order-6 {\n order: 6;\n }\n\n .order-7 {\n order: 7;\n }\n\n .order-8 {\n order: 8;\n }\n\n .order-9 {\n order: 9;\n }\n\n .order-10 {\n order: 10;\n }\n\n .order-11 {\n order: 11;\n }\n\n .order-12 {\n order: 12;\n }\n\n .offset-1,\n .col-offset-1 {\n margin-left: 8.333333%;\n }\n\n .offset-2,\n .col-offset-2 {\n margin-left: 16.666667%;\n }\n\n .offset-3,\n .col-offset-3 {\n margin-left: 25%;\n }\n\n .offset-4,\n .col-offset-4 {\n margin-left: 33.333333%;\n }\n\n .offset-5,\n .col-offset-5 {\n margin-left: 41.666667%;\n }\n\n .offset-6,\n .col-offset-6 {\n margin-left: 50%;\n }\n\n .offset-7,\n .col-offset-7 {\n margin-left: 58.333333%;\n }\n\n .offset-8,\n .col-offset-8 {\n margin-left: 66.666667%;\n }\n\n .offset-9,\n .col-offset-9 {\n margin-left: 75%;\n }\n\n .offset-10,\n .col-offset-10 {\n margin-left: 83.333333%;\n }\n\n .offset-11,\n .col-offset-11 {\n margin-left: 91.666667%;\n }\n\n // Responsiveness\n @media (min-width: $screen-sm) {\n .mx-layoutgrid-fixed {\n max-width: 540px;\n }\n }\n\n @media (min-width: $screen-md) {\n .mx-layoutgrid-fixed {\n max-width: 720px;\n }\n }\n\n @media (min-width: $screen-lg) {\n .mx-layoutgrid-fixed {\n max-width: 960px;\n }\n }\n\n @media (min-width: $screen-xl) {\n .mx-layoutgrid-fixed {\n max-width: 1140px;\n }\n }\n\n @media (min-width: $screen-sm) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-sm-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n order: -1;\n }\n .order-sm-last {\n order: 13;\n }\n .order-sm-0 {\n order: 0;\n }\n .order-sm-1 {\n order: 1;\n }\n .order-sm-2 {\n order: 2;\n }\n .order-sm-3 {\n order: 3;\n }\n .order-sm-4 {\n order: 4;\n }\n .order-sm-5 {\n order: 5;\n }\n .order-sm-6 {\n order: 6;\n }\n .order-sm-7 {\n order: 7;\n }\n .order-sm-8 {\n order: 8;\n }\n .order-sm-9 {\n order: 9;\n }\n .order-sm-10 {\n order: 10;\n }\n .order-sm-11 {\n order: 11;\n }\n .order-sm-12 {\n order: 12;\n }\n .offset-sm-0,\n .col-sm-offset-0 {\n margin-left: 0;\n }\n .offset-sm-1,\n .col-sm-offset-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2,\n .col-sm-offset-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3,\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .offset-sm-4,\n .col-sm-offset-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5,\n .col-sm-offset-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6,\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .offset-sm-7,\n .col-sm-offset-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8,\n .col-sm-offset-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9,\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .offset-sm-10,\n .col-sm-offset-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11,\n .col-sm-offset-11 {\n margin-left: 91.666667%;\n }\n }\n\n @media (min-width: $screen-md) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-md-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n order: -1;\n }\n .order-md-last {\n order: 13;\n }\n .order-md-0 {\n order: 0;\n }\n .order-md-1 {\n order: 1;\n }\n .order-md-2 {\n order: 2;\n }\n .order-md-3 {\n order: 3;\n }\n .order-md-4 {\n order: 4;\n }\n .order-md-5 {\n order: 5;\n }\n .order-md-6 {\n order: 6;\n }\n .order-md-7 {\n order: 7;\n }\n .order-md-8 {\n order: 8;\n }\n .order-md-9 {\n order: 9;\n }\n .order-md-10 {\n order: 10;\n }\n .order-md-11 {\n order: 11;\n }\n .order-md-12 {\n order: 12;\n }\n .offset-md-0,\n .col-md-offset-0 {\n margin-left: 0;\n }\n .offset-md-1,\n .col-md-offset-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2,\n .col-md-offset-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3,\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .offset-md-4,\n .col-md-offset-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5,\n .col-md-offset-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6,\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .offset-md-7,\n .col-md-offset-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8,\n .col-md-offset-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9,\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .offset-md-10,\n .col-md-offset-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11,\n .col-md-offset-11 {\n margin-left: 91.666667%;\n }\n }\n\n @media (min-width: $screen-lg) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-lg-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n order: -1;\n }\n .order-lg-last {\n order: 13;\n }\n .order-lg-0 {\n order: 0;\n }\n .order-lg-1 {\n order: 1;\n }\n .order-lg-2 {\n order: 2;\n }\n .order-lg-3 {\n order: 3;\n }\n .order-lg-4 {\n order: 4;\n }\n .order-lg-5 {\n order: 5;\n }\n .order-lg-6 {\n order: 6;\n }\n .order-lg-7 {\n order: 7;\n }\n .order-lg-8 {\n order: 8;\n }\n .order-lg-9 {\n order: 9;\n }\n .order-lg-10 {\n order: 10;\n }\n .order-lg-11 {\n order: 11;\n }\n .order-lg-12 {\n order: 12;\n }\n .offset-lg-0,\n .col-lg-offset-0 {\n margin-left: 0;\n }\n .offset-lg-1,\n .col-lg-offset-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2,\n .col-lg-offset-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3,\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .offset-lg-4,\n .col-lg-offset-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5,\n .col-lg-offset-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6,\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .offset-lg-7,\n .col-lg-offset-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8,\n .col-lg-offset-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9,\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .offset-lg-10,\n .col-lg-offset-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11,\n .col-lg-offset-11 {\n margin-left: 91.666667%;\n }\n }\n\n @media (min-width: $screen-xl) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n }\n .col-xl-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n order: -1;\n }\n .order-xl-last {\n order: 13;\n }\n .order-xl-0 {\n order: 0;\n }\n .order-xl-1 {\n order: 1;\n }\n .order-xl-2 {\n order: 2;\n }\n .order-xl-3 {\n order: 3;\n }\n .order-xl-4 {\n order: 4;\n }\n .order-xl-5 {\n order: 5;\n }\n .order-xl-6 {\n order: 6;\n }\n .order-xl-7 {\n order: 7;\n }\n .order-xl-8 {\n order: 8;\n }\n .order-xl-9 {\n order: 9;\n }\n .order-xl-10 {\n order: 10;\n }\n .order-xl-11 {\n order: 11;\n }\n .order-xl-12 {\n order: 12;\n }\n .offset-xl-0,\n .col-xl-offset-0 {\n margin-left: 0;\n }\n .offset-xl-1,\n .col-xl-offset-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2,\n .col-xl-offset-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3,\n .col-xl-offset-3 {\n margin-left: 25%;\n }\n .offset-xl-4,\n .col-xl-offset-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5,\n .col-xl-offset-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6,\n .col-xl-offset-6 {\n margin-left: 50%;\n }\n .offset-xl-7,\n .col-xl-offset-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8,\n .col-xl-offset-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9,\n .col-xl-offset-9 {\n margin-left: 75%;\n }\n .offset-xl-10,\n .col-xl-offset-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11,\n .col-xl-offset-11 {\n margin-left: 91.666667%;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin pagination() {\n /* ==========================================================================\n Pagination\n\n Default Mendix pagination widget.\n ========================================================================== */\n\n .widget-pagination {\n overflow: unset;\n\n .pagination {\n overflow: unset;\n\n .btn {\n &:hover {\n color: $btn-default-color;\n background-color: $btn-default-bg-hover;\n }\n\n &:focus {\n outline: unset;\n outline-offset: unset;\n box-shadow: 0 0 0 0.3rem $color-primary-light;\n }\n }\n\n ul {\n margin-top: unset;\n margin-bottom: unset;\n\n li {\n display: inline-flex;\n align-items: center;\n width: unset;\n min-width: 24px;\n min-height: 24px;\n margin-right: 16px;\n padding: 4px 8px;\n transition: all 0.2s ease-in-out;\n color: $font-color-default;\n border-radius: $border-radius-default;\n\n &:last-child {\n margin-right: 0;\n }\n\n &:not(.break-view) {\n &:hover {\n color: $btn-default-color;\n background-color: $btn-default-bg-hover;\n }\n\n &:focus {\n outline: unset;\n outline-offset: unset;\n box-shadow: 0 0 0 0.3rem $color-primary-light;\n }\n\n &.active {\n color: $btn-primary-color;\n background-color: $btn-primary-bg;\n }\n\n &.active:hover {\n color: $btn-primary-color;\n background-color: $btn-primary-bg-hover;\n }\n }\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin progress() {\n /* ==========================================================================\n Progress\n\n Default Mendix progress widget.\n ========================================================================== */\n\n .mx-progress {\n color: $font-color-default;\n background: $bg-color-secondary;\n\n .mx-progress-message {\n color: $font-color-default;\n }\n\n .mx-progress-indicator {\n position: relative;\n overflow: hidden;\n width: 100%;\n max-width: 100%;\n height: 2px;\n margin: auto;\n padding: 0;\n border-radius: 0;\n background: $gray-lighter;\n\n &:before,\n &:after {\n position: absolute;\n top: 0;\n left: 0;\n display: block;\n width: 50%;\n height: 2px;\n content: \"\";\n transform: translate3d(-100%, 0, 0);\n background: $brand-primary;\n }\n\n &::before {\n animation: loader 2s infinite;\n }\n\n &::after {\n animation: loader 2s -2s infinite;\n }\n }\n }\n\n @keyframes loader {\n 0% {\n transform: translate3d(-100%, 0, 0);\n }\n 100% {\n transform: translate3d(200%, 0, 0);\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin progress-bar() {\n /* ==========================================================================\n Progress bar\n\n Default Mendix progress bar widget.\n ========================================================================== */\n\n .progress {\n overflow: hidden;\n display: flex;\n flex-direction: row;\n }\n\n .progress-bar {\n align-self: flex-start;\n width: 0;\n height: 100%;\n transition: width 0.6s ease;\n text-align: center;\n color: #ffffff;\n border-radius: $border-radius-default;\n font-weight: $font-weight-semibold;\n }\n\n .progress-striped .progress-bar,\n .progress-bar-striped {\n background-image: linear-gradient(\n 45deg,\n rgba(255, 255, 255, 0.15) 25%,\n transparent 25%,\n transparent 50%,\n rgba(255, 255, 255, 0.15) 50%,\n rgba(255, 255, 255, 0.15) 75%,\n transparent 75%,\n transparent\n );\n background-size: 40px 40px;\n }\n\n .widget-progress-bar.active .progress-bar,\n .progress.active .progress-bar,\n .progress-bar.active {\n animation: progress-bar-stripes 2s linear infinite;\n }\n\n @keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin progress-bar-helpers() {\n /* ==========================================================================\n Progress Bar\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n\n .widget-progress-bar {\n width: 100%;\n\n .progress {\n border-radius: $border-radius-default;\n background-color: $bg-color;\n }\n }\n\n .progress-bar-medium .progress,\n .progress-bar-medium .progress-bar {\n height: 16px;\n line-height: 16px;\n font-size: $font-size-small;\n }\n\n .progress-bar-small .progress,\n .progress-bar-small .progress-bar {\n height: 8px;\n line-height: 8px;\n font-size: 0px;\n }\n\n .progress-bar-small .progress-bar > * {\n // Specifically to hide custom labels.\n display: none;\n }\n\n .progress-bar-large .progress,\n .progress-bar-large .progress-bar {\n height: 24px;\n line-height: 24px;\n font-size: $font-size-default;\n }\n\n .widget-progress-bar-clickable:hover {\n cursor: pointer;\n }\n\n .widget-progress-bar.progress-bar-primary .progress-bar {\n background-color: $brand-primary;\n }\n\n .widget-progress-bar.progress-bar-success .progress-bar {\n background-color: $brand-success;\n }\n\n .widget-progress-bar.progress-bar-warning .progress-bar {\n background-color: $brand-warning;\n }\n\n .widget-progress-bar.progress-bar-danger .progress-bar {\n background-color: $brand-danger;\n }\n\n .widget-progress-bar-alert.widget-progress-bar-text-contrast .progress-bar {\n color: $color-danger-darker;\n }\n\n .widget-progress-bar-text-contrast .progress-bar {\n color: $font-color-default;\n }\n\n .widget-progress-bar-negative {\n float: right;\n display: block;\n }\n\n .widget-progress-bar > .alert {\n margin-top: 24px;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin progress-circle() {\n /* ==========================================================================\n Progress Circle\n\n Default Mendix progress circle widget.\n ========================================================================== */\n\n .widget-progress-circle {\n display: inline-block;\n }\n\n .widget-progress-circle-trail-path {\n stroke: $bg-color;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin progress-circle-helpers() {\n /* ==========================================================================\n Progress Circle\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n\n //== Progress circle and label colors\n .widget-progress-circle-primary {\n .widget-progress-circle-path {\n stroke: $brand-primary;\n }\n\n .progressbar-text {\n color: $brand-primary !important;\n }\n }\n\n .widget-progress-circle-success {\n .widget-progress-circle-path {\n stroke: $brand-success;\n }\n\n .progressbar-text {\n color: $brand-success !important;\n }\n }\n\n .widget-progress-circle-warning {\n .widget-progress-circle-path {\n stroke: $brand-warning;\n }\n\n .progressbar-text {\n color: $brand-warning !important;\n }\n }\n\n .widget-progress-circle-danger {\n .widget-progress-circle-path {\n stroke: $brand-danger;\n }\n\n .progressbar-text {\n color: $brand-danger !important;\n }\n }\n\n //== Sizes\n .widget-progress-circle-thickness-medium {\n .widget-progress-circle-trail-path,\n .widget-progress-circle-path {\n stroke-width: 8px;\n }\n }\n\n .widget-progress-circle-thickness-small {\n .widget-progress-circle-trail-path,\n .widget-progress-circle-path {\n stroke-width: 4px;\n }\n }\n\n .widget-progress-circle-thickness-large {\n .widget-progress-circle-trail-path,\n .widget-progress-circle-path {\n stroke-width: 16px;\n }\n }\n\n //== Progress label container\n .progress-circle-label-container {\n position: relative;\n margin: 0;\n\n .progressbar-text {\n position: absolute;\n left: 50%;\n top: 50%;\n padding: 0px;\n margin: 0px;\n transform: translate(-50%, -50%);\n // Original default from the `progressbar.js` library\n color: rgb(85, 85, 85);\n }\n }\n\n .widget-progress-circle-clickable {\n cursor: pointer;\n }\n\n @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {\n .widget-progress-circle > div {\n height: 0;\n padding: 0;\n width: 100%;\n padding-bottom: 100%;\n\n & > svg {\n top: 0;\n left: 0;\n height: 100%;\n position: absolute;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin rating() {\n /* ==========================================================================\n Rating\n\n Default Mendix rating widget.\n ========================================================================== */\n\n .widget-star-rating-empty {\n color: #cccccc;\n }\n\n .widget-star-rating-full-widget {\n color: #ffa611;\n }\n\n .widget-star-rating-full-default {\n color: #ced0d3;\n }\n\n .widget-star-rating-font-medium {\n font-size: 30px;\n }\n\n .widget-rating {\n .rating-icon {\n font-size: 24px;\n }\n\n .rating-icon-empty {\n color: #ccc;\n }\n\n .rating-icon-full {\n color: #ffa611;\n }\n\n .rating-item {\n &:focus:not(:focus-visible) {\n .rating-image,\n .rating-icon {\n outline: none;\n }\n }\n\n &:focus-visible {\n .rating-image,\n .rating-icon {\n outline: 1px solid $brand-primary;\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin rating-helpers() {\n /* ==========================================================================\n Rating\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n\n .widget-star-rating-full-primary {\n color: $brand-primary;\n }\n\n .widget-star-rating-full-success {\n color: $brand-success;\n }\n\n .widget-star-rating-full-info {\n color: $brand-info;\n }\n\n .widget-star-rating-full-warning {\n color: $brand-warning;\n }\n\n .widget-star-rating-full-danger {\n color: $brand-danger;\n }\n\n .widget-star-rating-full-inverse {\n color: $brand-inverse;\n }\n\n .widget-rating {\n &.widget-rating-small {\n .rating-icon {\n font-size: 16px;\n }\n .rating-image {\n height: 16px;\n }\n }\n &.widget-rating-large {\n .rating-icon {\n font-size: 32px;\n }\n .rating-image {\n height: 32px;\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n@import \"../helpers/slider-color-variant\";\n\n@mixin range-slider() {\n /* ==========================================================================\n Range slider\n\n Default Mendix range slider widget.\n ========================================================================== */\n\n .widget-range-slider {\n margin-bottom: 16px;\n padding: 5px 10px;\n\n .rc-slider-handle {\n border-color: $brand-default;\n }\n\n .rc-slider.rc-slider-with-marks {\n padding-bottom: 25px;\n }\n\n @include slider-color-variant($brand-primary);\n }\n}\n","@mixin slider-color-variant($color) {\n .rc-slider:not(.rc-slider-disabled) {\n .rc-slider-track {\n background-color: $color;\n }\n\n .rc-slider-handle:focus {\n border-color: $color;\n box-shadow: 0 0 0 5px lighten($color, 25%);\n outline: none;\n }\n\n .rc-slider-handle-click-focused:focus {\n border-color: lighten($color, 25%);\n box-shadow: unset;\n }\n\n .rc-slider-dot-active,\n .rc-slider-handle:hover {\n border-color: $color;\n }\n\n .rc-slider-handle:active {\n border-color: $color;\n box-shadow: 0 0 5px $color;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@import \"slider-color-variant\";\n\n@mixin range-slider-helpers() {\n /* ==========================================================================\n Range Slider\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n\n .widget-range-slider-primary {\n @include slider-color-variant($brand-primary);\n }\n\n .widget-range-slider-success {\n @include slider-color-variant($brand-success);\n }\n\n .widget-range-slider-warning {\n @include slider-color-variant($brand-warning);\n }\n\n .widget-range-slider-danger {\n @include slider-color-variant($brand-danger);\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@import \"../helpers/slider-color-variant\";\n\n@mixin slider() {\n /* ==========================================================================\n Slider\n\n Default Mendix slider widget.\n ========================================================================== */\n\n .widget-slider {\n margin-bottom: 16px;\n padding: 5px 10px;\n\n .rc-slider-handle {\n border-color: $brand-default;\n }\n\n .rc-slider.rc-slider-with-marks {\n padding-bottom: 25px;\n }\n\n @include slider-color-variant($brand-primary);\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n@import \"slider-color-variant\";\n\n@mixin slider-helpers() {\n /* ==========================================================================\n Slider\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n\n .widget-slider-primary {\n @include slider-color-variant($brand-primary);\n }\n\n .widget-slider-success {\n @include slider-color-variant($brand-success);\n }\n\n .widget-slider-warning {\n @include slider-color-variant($brand-warning);\n }\n\n .widget-slider-danger {\n @include slider-color-variant($brand-danger);\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin timeline() {\n /* ==========================================================================\n Timeline\n\n Widget styles\n ========================================================================== */\n\n //Timeline grouping\n .widget-timeline-date-header {\n display: flex;\n justify-content: center;\n width: $timeline-grouping-size;\n overflow-wrap: break-word;\n padding: $spacing-small;\n border: 1px solid $timeline-grouping-border-color;\n border-radius: $timeline-grouping-border-radius;\n }\n\n //Timeline entries\n .widget-timeline-events-wrapper {\n display: flex;\n flex: 1;\n margin-left: $timeline-grouping-size/2;\n padding: $spacing-large 0 0 0;\n border-left: 1px solid $timeline-border-color;\n\n ul {\n flex: 1;\n padding: 0;\n list-style: none;\n margin-bottom: 0;\n }\n }\n\n //Timeline entry\n .widget-timeline-event {\n flex: 1;\n position: relative;\n margin-left: -1px;\n padding: 0 $spacing-large $spacing-large $spacing-large;\n margin-bottom: $spacing-medium;\n\n &.clickable {\n cursor: pointer;\n transition: background 0.8s;\n\n &:hover {\n .widget-timeline-title {\n }\n }\n }\n }\n\n //Timeline entry content wrapper\n .widget-timeline-icon-wrapper {\n position: absolute;\n top: 0;\n left: 0;\n display: flex;\n justify-content: center;\n align-items: center;\n transform: translateX(-50%);\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: $timeline-icon-size;\n }\n\n img {\n max-width: 100%;\n max-height: 100%;\n }\n }\n\n .widget-timeline-content-wrapper {\n display: flex;\n\n .widget-timeline-date-time-wrapper {\n order: 2;\n margin-right: 0;\n }\n\n .widget-timeline-info-wrapper {\n flex: 1;\n order: 1;\n margin-right: $spacing-medium;\n }\n }\n\n .timeline-with-image .widget-timeline-content-wrapper {\n display: flex;\n\n .widget-timeline-date-time-wrapper {\n order: 1;\n margin-right: $spacing-medium;\n }\n\n .widget-timeline-info-wrapper {\n flex: 1;\n order: 2;\n }\n }\n\n //Timeline entry components\n .widget-timeline-icon-circle {\n width: $timeline-icon-size;\n height: $timeline-icon-size;\n border-radius: 50%;\n background-color: $timeline-icon-color;\n }\n\n .widget-timeline-title {\n @extend h5;\n }\n\n .widget-timeline-description {\n }\n\n .widget-timeline-no-divider {\n }\n\n .widget-eventTime {\n @extend h5;\n color: $timeline-event-time-color;\n }\n\n .timeline-entry-image {\n display: flex;\n justify-content: center;\n align-content: center;\n border-radius: $border-radius-default;\n height: $timeline-image-size;\n width: $timeline-image-size;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin tooltip() {\n /* ==========================================================================\n Tooltip\n\n Widget styles\n ========================================================================== */\n\n // Tooltip inline\n .widget-tooltip-inline {\n display: inline-block;\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin helper-classes() {\n /* ==========================================================================\n Helper\n\n Default Mendix helpers\n ========================================================================== */\n $important-helpers-value: if($important-helpers, \" !important\", \"\");\n\n // Display properties\n .d-none {\n display: none #{$important-helpers-value};\n }\n\n .d-flex {\n display: flex #{$important-helpers-value};\n }\n\n .d-inline-flex {\n display: inline-flex #{$important-helpers-value};\n }\n\n .d-inline {\n display: inline #{$important-helpers-value};\n }\n\n .d-inline-block {\n display: inline-block #{$important-helpers-value};\n }\n\n .show,\n .d-block {\n display: block #{$important-helpers-value};\n }\n\n .table,\n .d-table {\n display: table #{$important-helpers-value};\n }\n\n .table-row,\n .d-table-row {\n display: table-row #{$important-helpers-value};\n }\n\n .table-cell,\n .d-table-cell {\n display: table-cell #{$important-helpers-value};\n }\n\n .hide,\n .hidden {\n display: none #{$important-helpers-value};\n visibility: hidden #{$important-helpers-value};\n }\n\n .invisible {\n visibility: hidden #{$important-helpers-value};\n }\n\n .display-ie8-only:not([attr*=\"\"]) {\n display: none #{$important-helpers-value};\n padding: 0 #{$important-helpers-value};\n }\n\n .list-nostyle {\n ul {\n margin: 0 #{$important-helpers-value};\n padding: 0 #{$important-helpers-value};\n\n li {\n list-style-type: none #{$important-helpers-value};\n }\n }\n }\n\n .nowrap,\n .nowrap * {\n overflow: hidden #{$important-helpers-value};\n // Star for inside an element, IE8 span > a\n white-space: nowrap #{$important-helpers-value};\n text-overflow: ellipsis #{$important-helpers-value};\n }\n\n // Render DIV as Table Cells\n .table {\n display: table #{$important-helpers-value};\n }\n\n .table-row {\n display: table-row #{$important-helpers-value};\n }\n\n .table-cell {\n display: table-cell #{$important-helpers-value};\n }\n\n // Quick floats\n .pull-left {\n float: left #{$important-helpers-value};\n }\n\n .pull-right {\n float: right #{$important-helpers-value};\n }\n\n // Align options\n .align-top {\n vertical-align: top #{$important-helpers-value};\n }\n\n .align-middle {\n vertical-align: middle #{$important-helpers-value};\n }\n\n .align-bottom {\n vertical-align: bottom #{$important-helpers-value};\n }\n\n // Flex alignments\n .row-left {\n display: flex #{$important-helpers-value};\n align-items: center #{$important-helpers-value};\n flex-flow: row #{$important-helpers-value};\n justify-content: flex-start #{$important-helpers-value};\n }\n\n .row-center {\n display: flex #{$important-helpers-value};\n align-items: center #{$important-helpers-value};\n flex-flow: row #{$important-helpers-value};\n justify-content: center #{$important-helpers-value};\n }\n\n .row-right {\n display: flex #{$important-helpers-value};\n align-items: center #{$important-helpers-value};\n flex-flow: row #{$important-helpers-value};\n justify-content: flex-end #{$important-helpers-value};\n }\n\n .col-left {\n display: flex #{$important-helpers-value};\n align-items: flex-start #{$important-helpers-value};\n flex-direction: column #{$important-helpers-value};\n justify-content: center #{$important-helpers-value};\n }\n\n .col-center {\n display: flex #{$important-helpers-value};\n align-items: center #{$important-helpers-value};\n flex-direction: column #{$important-helpers-value};\n justify-content: center #{$important-helpers-value};\n }\n\n .col-right {\n display: flex #{$important-helpers-value};\n align-items: flex-end #{$important-helpers-value};\n flex-direction: column #{$important-helpers-value};\n justify-content: center #{$important-helpers-value};\n }\n\n .shadow-small {\n box-shadow: $shadow-small $shadow-color;\n margin-bottom: 5px;\n border-width: 1px #{$important-helpers-value};\n border-style: solid;\n border-color: $shadow-color-border;\n }\n .shadow-medium {\n box-shadow: $shadow-medium $shadow-color;\n margin-bottom: 15px;\n border-width: 1px #{$important-helpers-value};\n border-style: solid;\n border-color: $shadow-color-border;\n }\n\n .shadow-large {\n box-shadow: $shadow-large $shadow-color;\n margin-bottom: 25px;\n border-width: 1px #{$important-helpers-value};\n border-style: solid;\n border-color: $shadow-color-border;\n }\n\n // Media\n @media (max-width: $screen-sm-max) {\n .hide-phone {\n display: none #{$important-helpers-value};\n }\n }\n\n @media (min-width: $screen-md) and (max-width: $screen-md-max) {\n .hide-tablet {\n display: none #{$important-helpers-value};\n }\n }\n\n @media (min-width: $screen-lg) {\n .hide-desktop {\n display: none #{$important-helpers-value};\n }\n }\n\n @media (max-width: $screen-xs-max) {\n .hide-xs,\n .hidden-xs,\n .d-xs-none {\n display: none #{$important-helpers-value};\n }\n .d-xs-flex {\n display: flex #{$important-helpers-value};\n }\n .d-xs-inline-flex {\n display: inline-flex #{$important-helpers-value};\n }\n .d-xs-inline {\n display: inline #{$important-helpers-value};\n }\n .d-xs-inline-block {\n display: inline-block #{$important-helpers-value};\n }\n .d-xs-block {\n display: block #{$important-helpers-value};\n }\n .d-xs-table {\n display: table #{$important-helpers-value};\n }\n .d-xs-table-row {\n display: table-row #{$important-helpers-value};\n }\n .d-xs-table-cell {\n display: table-cell #{$important-helpers-value};\n }\n }\n\n @media (min-width: $screen-sm) and (max-width: $screen-sm-max) {\n .hide-sm,\n .hidden-sm,\n .d-sm-none {\n display: none #{$important-helpers-value};\n }\n .d-sm-flex {\n display: flex #{$important-helpers-value};\n }\n .d-sm-inline-flex {\n display: inline-flex #{$important-helpers-value};\n }\n .d-sm-inline {\n display: inline #{$important-helpers-value};\n }\n .d-sm-inline-block {\n display: inline-block #{$important-helpers-value};\n }\n .d-sm-block {\n display: block #{$important-helpers-value};\n }\n .d-sm-table {\n display: table #{$important-helpers-value};\n }\n .d-sm-table-row {\n display: table-row #{$important-helpers-value};\n }\n .d-sm-table-cell {\n display: table-cell #{$important-helpers-value};\n }\n }\n\n @media (min-width: $screen-md) and (max-width: $screen-md-max) {\n .hide-md,\n .hidden-md,\n .d-md-none {\n display: none #{$important-helpers-value};\n }\n .d-md-flex {\n display: flex #{$important-helpers-value};\n }\n .d-md-inline-flex {\n display: inline-flex #{$important-helpers-value};\n }\n .d-md-inline {\n display: inline #{$important-helpers-value};\n }\n .d-md-inline-block {\n display: inline-block #{$important-helpers-value};\n }\n .d-md-block {\n display: block #{$important-helpers-value};\n }\n .d-md-table {\n display: table #{$important-helpers-value};\n }\n .d-md-table-row {\n display: table-row #{$important-helpers-value};\n }\n .d-md-table-cell {\n display: table-cell #{$important-helpers-value};\n }\n }\n\n @media (min-width: $screen-lg) and (max-width: $screen-xl) {\n .hide-lg,\n .hidden-lg,\n .d-lg-none {\n display: none #{$important-helpers-value};\n }\n .d-lg-flex {\n display: flex #{$important-helpers-value};\n }\n .d-lg-inline-flex {\n display: inline-flex #{$important-helpers-value};\n }\n .d-lg-inline {\n display: inline #{$important-helpers-value};\n }\n .d-lg-inline-block {\n display: inline-block #{$important-helpers-value};\n }\n .d-lg-block {\n display: block #{$important-helpers-value};\n }\n .d-lg-table {\n display: table #{$important-helpers-value};\n }\n .d-lg-table-row {\n display: table-row #{$important-helpers-value};\n }\n .d-lg-table-cell {\n display: table-cell #{$important-helpers-value};\n }\n }\n\n @media (min-width: $screen-xl) {\n .hide-xl,\n .hidden-xl,\n .d-xl-none {\n display: none #{$important-helpers-value};\n }\n .d-xl-flex {\n display: flex #{$important-helpers-value};\n }\n .d-xl-inline-flex {\n display: inline-flex #{$important-helpers-value};\n }\n .d-xl-inline {\n display: inline #{$important-helpers-value};\n }\n .d-xl-inline-block {\n display: inline-block #{$important-helpers-value};\n }\n .d-xl-block {\n display: block #{$important-helpers-value};\n }\n .d-xl-table {\n display: table #{$important-helpers-value};\n }\n .d-xl-table-row {\n display: table-row #{$important-helpers-value};\n }\n .d-xl-table-cell {\n display: table-cell #{$important-helpers-value};\n }\n }\n\n //Box-shadow\n\n .shadow {\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05) #{$important-helpers-value};\n }\n\n //Height helpers\n\n .h-25 {\n height: 25% #{$important-helpers-value};\n }\n\n .h-50 {\n height: 50% #{$important-helpers-value};\n }\n\n .h-75 {\n height: 75% #{$important-helpers-value};\n }\n\n .h-100 {\n height: 100% #{$important-helpers-value};\n }\n\n //Width helpers\n\n .w-25 {\n width: 25% #{$important-helpers-value};\n }\n\n .w-50 {\n width: 50% #{$important-helpers-value};\n }\n\n .w-75 {\n width: 75% #{$important-helpers-value};\n }\n\n .w-100 {\n width: 100% #{$important-helpers-value};\n }\n\n //Border helpers\n .border {\n border: 1px solid $border-color-default #{$important-helpers-value};\n }\n\n .border-top {\n border-top: 1px solid $border-color-default #{$important-helpers-value};\n }\n\n .border-bottom {\n border-bottom: 1px solid $border-color-default #{$important-helpers-value};\n }\n\n .border-left {\n border-left: 1px solid $border-color-default #{$important-helpers-value};\n }\n\n .border-right {\n border-right: 1px solid $border-color-default #{$important-helpers-value};\n }\n\n .border-rounded {\n border-radius: $border-radius-default #{$important-helpers-value};\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin barcode-scanner() {\n /* ==========================================================================\n Barcode-scanner\n\n Override of default Bootstrap barcode-scanner style\n ========================================================================== */\n\n .mx-barcode-scanner {\n background: #000000;\n z-index: 110;\n\n .close-button {\n color: white;\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n font-size: 16px;\n }\n }\n\n .video-canvas {\n .canvas-background {\n background-color: rgba(0, 0, 0, 0.7);\n }\n\n .canvas-middle {\n .canvas-middle-middle {\n $corner-offset: 13px;\n .corner {\n $corner-border: 5px solid #ffffff;\n border-left: $corner-border;\n border-top: $corner-border;\n\n &.corner-top-left {\n top: -$corner-offset;\n left: -$corner-offset;\n }\n &.corner-top-right {\n top: -$corner-offset;\n right: -$corner-offset;\n transform: rotate(90deg);\n }\n &.corner-bottom-right {\n bottom: -$corner-offset;\n right: -$corner-offset;\n transform: rotate(180deg);\n }\n &.corner-bottom-left {\n bottom: -$corner-offset;\n left: -$corner-offset;\n transform: rotate(270deg);\n }\n }\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin accordion() {\n /* ==========================================================================\n Accordion\n\n Default Mendix accordion widget styles.\n ========================================================================== */\n\n .widget-accordion {\n .widget-accordion-group {\n @include get-accordion-group-styles(\n $accordion-header-default-bg,\n $accordion-header-default-bg-hover,\n $accordion-header-default-color,\n $brand-primary,\n $accordion-default-border-color\n );\n }\n\n &.widget-accordion-preview {\n .widget-accordion-group {\n @include get-accordion-preview-group-styles($accordion-header-default-color);\n }\n }\n }\n}\n\n@mixin get-accordion-group-styles($background-color, $background-color-hover, $color, $color-hover, $border-color) {\n border-color: $border-color;\n background-color: $bg-color-secondary;\n\n &:first-child {\n border-top-left-radius: $border-radius-default;\n border-top-right-radius: $border-radius-default;\n\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\n border-top-left-radius: calc(#{$border-radius-default} - 1px);\n border-top-right-radius: calc(#{$border-radius-default} - 1px);\n }\n }\n\n &:last-child {\n border-bottom-left-radius: $border-radius-default;\n border-bottom-right-radius: $border-radius-default;\n }\n\n &.widget-accordion-group-collapsed:last-child,\n &.widget-accordion-group-collapsing:last-child {\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\n border-bottom-left-radius: calc(#{$border-radius-default} - 1px);\n border-bottom-right-radius: calc(#{$border-radius-default} - 1px);\n }\n }\n\n &.widget-accordion-group-collapsing:last-child {\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\n transition: border-radius 5ms ease 200ms;\n }\n }\n\n &.widget-accordion-group-expanding:last-child {\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\n transition: border-radius 5ms ease 80ms;\n }\n }\n\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\n cursor: auto;\n background-color: $background-color;\n padding: $spacing-medium;\n\n > :is(h1, h2, h3, h4, h5, h6) {\n font-size: $font-size-h5;\n font-weight: $font-weight-header;\n }\n\n > :is(h1, h2, h3, h4, h5, h6, p, span) {\n color: $color;\n }\n\n .widget-accordion-group-header-button-icon {\n fill: $color;\n }\n\n &.widget-accordion-group-header-button-clickable {\n &:hover,\n &:focus,\n &:active {\n background-color: $background-color-hover;\n\n > :is(h1, h2, h3, h4, h5, h6, p, span) {\n color: $color-hover;\n }\n\n .widget-accordion-group-header-button-icon {\n fill: $color-hover;\n }\n }\n }\n }\n\n > .widget-accordion-group-content-wrapper > .widget-accordion-group-content {\n border-color: $border-color;\n padding: $spacing-small $spacing-medium $spacing-large $spacing-medium;\n }\n}\n\n@mixin get-accordion-preview-group-styles($color) {\n .widget-accordion-group-header-button {\n > div > :is(h1, h2, h3, h4, h5, h6) {\n font-size: $font-size-h5;\n font-weight: $font-weight-header;\n }\n\n > div > :is(h1, h2, h3, h4, h5, h6, p, span) {\n color: $color;\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin accordion-helpers() {\n /* ==========================================================================\n Accordion\n\n //== Design Properties\n //## Helper classes to change the look and feel of the component\n ========================================================================== */\n\n .widget-accordion {\n .widget-accordion-group {\n &.widget-accordion-brand-primary {\n @include get-accordion-group-styles(\n $accordion-header-primary-bg,\n $accordion-header-primary-bg-hover,\n $accordion-header-primary-color,\n $accordion-header-primary-color,\n $accordion-primary-border-color\n );\n }\n\n &.widget-accordion-brand-secondary {\n @include get-accordion-group-styles(\n $accordion-header-secondary-bg,\n $accordion-header-secondary-bg-hover,\n $accordion-header-secondary-color,\n $accordion-header-secondary-color,\n $accordion-secondary-border-color\n );\n }\n\n &.widget-accordion-brand-success {\n @include get-accordion-group-styles(\n $accordion-header-success-bg,\n $accordion-header-success-bg-hover,\n $accordion-header-success-color,\n $accordion-header-success-color,\n $accordion-success-border-color\n );\n }\n\n &.widget-accordion-brand-warning {\n @include get-accordion-group-styles(\n $accordion-header-warning-bg,\n $accordion-header-warning-bg-hover,\n $accordion-header-warning-color,\n $accordion-header-warning-color,\n $accordion-warning-border-color\n );\n }\n\n &.widget-accordion-brand-danger {\n @include get-accordion-group-styles(\n $accordion-header-danger-bg,\n $accordion-header-danger-bg-hover,\n $accordion-header-danger-color,\n $accordion-header-danger-color,\n $accordion-danger-border-color\n );\n }\n }\n\n &.widget-accordion-preview {\n .widget-accordion-group {\n &.widget-accordion-brand-primary {\n @include get-accordion-preview-group-styles($accordion-header-primary-color);\n }\n\n &.widget-accordion-brand-secondary {\n @include get-accordion-preview-group-styles($accordion-header-secondary-color);\n }\n\n &.widget-accordion-brand-success {\n @include get-accordion-preview-group-styles($accordion-header-success-color);\n }\n\n &.widget-accordion-brand-warning {\n @include get-accordion-preview-group-styles($accordion-header-warning-color);\n }\n\n &.widget-accordion-brand-danger {\n @include get-accordion-preview-group-styles($accordion-header-danger-color);\n }\n }\n }\n\n &.widget-accordion-bordered-all {\n > .widget-accordion-group {\n &:first-child {\n border-top-style: solid;\n }\n\n border-right-style: solid;\n border-left-style: solid;\n }\n }\n\n &.widget-accordion-bordered-horizontal {\n > .widget-accordion-group {\n &:first-child {\n border-top-style: solid;\n }\n }\n }\n\n &.widget-accordion-bordered-none {\n > .widget-accordion-group {\n border-bottom: none;\n }\n }\n\n &.widget-accordion-striped {\n > .widget-accordion-group:not(:is(.widget-accordion-brand-primary, .widget-accordion-brand-secondary, .widget-accordion-brand-success, .widget-accordion-brand-warning, .widget-accordion-brand-danger)):nth-child(2n\n + 1) {\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\n background-color: $accordion-bg-striped;\n\n &.widget-accordion-group-header-button-clickable {\n &:hover,\n &:focus,\n &:active {\n background-color: $accordion-bg-striped-hover;\n }\n }\n }\n\n > .widget-accordion-group-content {\n background-color: $accordion-bg-striped;\n }\n }\n }\n\n &.widget-accordion-compact {\n > .widget-accordion-group {\n > .widget-accordion-group-header > .widget-accordion-group-header-button {\n padding: $spacing-smaller $spacing-small;\n }\n\n > .widget-accordion-group-content {\n padding: $spacing-smaller $spacing-small $spacing-medium $spacing-small;\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n@mixin dijit-widget() {\n /*\n * Mendix Documentation\n * Special styles for presenting components\n */\n\n /*\n * Dijit Widgets\n *\n * Default Dojo Dijit Widgets\n */\n\n /*\n * Dijit Tooltip Widget\n *\n * Default tooltip used for Mendix widgets\n */\n\n .mx-tooltip {\n .dijitTooltipContainer {\n border-width: 1px;\n border-color: $gray-light;\n border-radius: 4px;\n background: #ffffff;\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n\n .mx-tooltip-content {\n padding: 12px;\n }\n\n .form-group {\n margin-bottom: 4px;\n }\n }\n\n .dijitTooltipConnector {\n width: 0;\n height: 0;\n margin-left: -8px;\n border-width: 10px 10px 10px 0;\n border-style: solid;\n border-color: transparent;\n border-right-color: $gray-light;\n }\n }\n\n /*\n * Dijit Border Container\n *\n * Used in Mendix as split pane containers\n */\n\n .dijitBorderContainer {\n padding: 8px;\n background-color: #fcfcfc;\n\n .dijitSplitterV,\n .dijitGutterV {\n width: 5px;\n border: 0;\n background: #fcfcfc;\n }\n\n .dijitSplitterH,\n .dijitGutterH {\n height: 5px;\n border: 0;\n background: #fcfcfc;\n }\n\n .dijitSplitterH {\n .dijitSplitterThumb {\n top: 2px;\n width: 19px;\n height: 1px;\n background: #b0b0b0;\n }\n }\n\n .dijitSplitterV {\n .dijitSplitterThumb {\n left: 2px;\n width: 1px;\n height: 19px;\n background: #b0b0b0;\n }\n }\n\n .dijitSplitContainer-child,\n .dijitBorderContainer-child {\n border: 1px solid #cccccc;\n }\n\n .dijitBorderContainer-dijitTabContainerTop,\n .dijitBorderContainer-dijitTabContainerBottom,\n .dijitBorderContainer-dijitTabContainerLeft,\n .dijitBorderContainer-dijitTabContainerRight {\n border: none;\n }\n\n .dijitBorderContainer-dijitBorderContainer {\n padding: 0;\n border: none;\n }\n\n .dijitSplitterActive {\n /* For IE8 and earlier */\n margin: 0;\n opacity: 0.6;\n background-color: #aaaaaa;\n background-image: none;\n font-size: 1px;\n }\n\n .dijitSplitContainer-dijitContentPane,\n .dijitBorderContainer-dijitContentPane {\n padding: 8px;\n background-color: #ffffff;\n }\n }\n\n /*\n * Dijit Menu Popup\n *\n * Used in datepickers and calendar widgets\n */\n\n .dijitMenuPopup {\n margin-top: 8px;\n\n .dijitMenu {\n display: block;\n width: 200px !important;\n margin-top: 0; // No top margin because there is no parent with margin bottom\n padding: 12px 8px;\n border-radius: 3px;\n background: $brand-inverse;\n\n &:after {\n position: absolute;\n bottom: 100%;\n left: 20px;\n width: 0;\n height: 0;\n margin-left: -8px;\n content: \" \";\n pointer-events: none;\n border: medium solid transparent;\n border-width: 8px;\n border-bottom-color: $brand-inverse;\n }\n\n // Menu item\n .dijitMenuItem {\n background: transparent;\n\n .dijitMenuItemLabel {\n display: block;\n overflow: hidden;\n width: 180px !important;\n padding: 8px;\n text-overflow: ellipsis;\n color: #ffffff;\n border-radius: 3px;\n }\n\n // Hover\n &.dijitMenuItemHover {\n background: none;\n\n .dijitMenuItemLabel {\n background: $brand-primary;\n }\n }\n }\n\n // New label\n .tg_newlabelmenuitem {\n .dijitMenuItemLabel {\n font-weight: $font-weight-bold;\n }\n }\n\n // Seperator\n .dijitMenuSeparator {\n td {\n padding: 0;\n border-bottom-width: 3px;\n }\n\n .dijitMenuSeparatorIconCell {\n > div {\n margin: 0; //override dijit styling\n }\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n$default-android-color: #6fbeb5;\n$default-ios-color: rgb(100, 189, 99);\n\n@mixin bootstrap-style-ios($brand-style) {\n border-color: $brand-style;\n background-color: $brand-style;\n box-shadow: $brand-style 0 0 0 16px inset;\n}\n\n@mixin bootstrap-style-android($brand-style) {\n background-color: lighten($brand-style, 10%);\n}\n\n@mixin style($brand-key, $brand-variable) {\n div.widget-switch-brand-#{$brand-key} {\n .widget-switch {\n .widget-switch-btn-wrapper {\n &.checked {\n @include bootstrap-style-ios($brand-variable);\n }\n }\n }\n &.android {\n .widget-switch {\n .widget-switch-btn-wrapper {\n &.checked {\n @include bootstrap-style-android($brand-variable);\n\n .widget-switch-btn {\n background: $brand-variable;\n }\n }\n }\n }\n }\n }\n}\n\n// maintained for backwards compatibility prior to Switch 3.0.0.\n@mixin ios {\n .widget-switch-btn-wrapper {\n &.checked {\n &.widget-switch-btn-wrapper-default {\n @include bootstrap-style-ios($default-ios-color);\n }\n\n &.widget-switch-btn-wrapper-success {\n @include bootstrap-style-ios($brand-success);\n }\n\n &.widget-switch-btn-wrapper-info {\n @include bootstrap-style-ios($brand-info);\n }\n\n &.widget-switch-btn-wrapper-primary {\n @include bootstrap-style-ios($brand-primary);\n }\n\n &.widget-switch-btn-wrapper-warning {\n @include bootstrap-style-ios($brand-warning);\n }\n\n &.widget-switch-btn-wrapper-danger {\n @include bootstrap-style-ios($brand-danger);\n }\n\n &.widget-switch-btn-wrapper-inverse {\n @include bootstrap-style-ios($brand-inverse);\n }\n }\n }\n}\n\n// maintained for backwards compatibility prior to Switch 3.0.0.\n@mixin android {\n .widget-switch-btn-wrapper {\n &.checked {\n &.widget-switch-btn-wrapper-default {\n @include bootstrap-style-android($default-android-color);\n\n .widget-switch-btn {\n background: $default-android-color;\n }\n }\n\n &.widget-switch-btn-wrapper-success {\n @include bootstrap-style-android($brand-success);\n\n .widget-switch-btn {\n background: $brand-success;\n }\n }\n\n &.widget-switch-btn-wrapper-info {\n @include bootstrap-style-android($brand-info);\n\n .widget-switch-btn {\n background: $brand-info;\n }\n }\n\n &.widget-switch-btn-wrapper-primary {\n @include bootstrap-style-android($brand-primary);\n\n .widget-switch-btn {\n background: $brand-primary;\n }\n }\n\n &.widget-switch-btn-wrapper-warning {\n @include bootstrap-style-android($brand-warning);\n\n .widget-switch-btn {\n background: $brand-warning;\n }\n }\n\n &.widget-switch-btn-wrapper-danger {\n @include bootstrap-style-android($brand-danger);\n\n .widget-switch-btn {\n background: $brand-danger;\n }\n }\n\n &.widget-switch-btn-wrapper-inverse {\n @include bootstrap-style-android($brand-inverse);\n\n .widget-switch-btn {\n background: $brand-inverse;\n }\n }\n }\n }\n}\n\n@mixin switch() {\n .widget-switch-btn-wrapper {\n &:focus {\n outline: 1px solid $brand-primary;\n }\n }\n\n @include style(\"primary\", $brand-primary);\n @include style(\"secondary\", $brand-default);\n @include style(\"success\", $brand-success);\n @include style(\"warning\", $brand-warning);\n @include style(\"danger\", $brand-danger);\n\n // below is maintained for backwards compatibility prior to Switch 3.0.0.\n div {\n &.widget-switch {\n &.iOS {\n @include ios;\n }\n\n &.android {\n @include android;\n }\n\n &.auto {\n @include ios;\n }\n }\n }\n\n html {\n div {\n &.dj_android {\n .widget-switch {\n &.auto {\n @include android;\n }\n }\n }\n\n &.dj_ios {\n .widget-switch {\n &.auto {\n @include ios;\n }\n }\n }\n }\n }\n}\n","/* ==========================================================================\n Atlas layout\n\n The core stucture of all atlas layouts\n========================================================================== */\n@mixin layout-atlas() {\n .layout-atlas {\n // Toggle button\n .toggle-btn {\n & > img,\n & > .glyphicon,\n & > .mx-icon-lined,\n & > .mx-icon-filled {\n margin: 0;\n }\n }\n .toggle-btn > .mx-icon-lined {\n font-family: \"Atlas_Core$Atlas\";\n }\n\n .toggle-btn > .mx-icon-filled {\n font-family: \"Atlas_Core$Atlas_Filled\";\n }\n\n .mx-scrollcontainer-open {\n .expand-btn > img {\n transform: rotate(180deg);\n }\n }\n\n // Sidebar\n .region-sidebar {\n background-color: $navsidebar-bg;\n @if not $use-modern-client {\n z-index: 101;\n }\n box-shadow: 0 0 4px rgb(0 0 0 / 14%), 2px 4px 8px rgb(0 0 0 / 28%);\n\n .mx-scrollcontainer-wrapper {\n display: flex;\n flex-direction: column;\n padding: $spacing-small 0;\n }\n\n .mx-navigationtree .navbar-inner > ul > li > a {\n padding: $spacing-medium;\n\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n margin-right: $spacing-small;\n }\n }\n\n .sidebar-heading {\n background: $navsidebar-sub-bg;\n }\n\n .toggle-btn {\n margin-right: $spacing-small;\n border-color: transparent;\n border-radius: 0;\n background: transparent;\n padding: $spacing-medium;\n }\n }\n\n // Topbar\n .region-topbar {\n position: relative;\n z-index: 60; // Show dropshadow\n min-height: $topbar-minimalheight;\n background-color: $navtopbar-bg;\n\n // Topbar Content\n .topbar-content {\n display: flex;\n align-items: center;\n min-height: $topbar-minimalheight;\n }\n\n // Toggle btn\n .toggle-btn {\n padding: 0;\n margin-right: $spacing-medium;\n border-color: transparent;\n border-radius: 0;\n background: transparent;\n }\n\n // For your company, product, or project name\n .navbar-brand {\n display: inline-block;\n float: none; // reset bootstrap\n height: auto;\n padding: 0;\n line-height: inherit;\n font-size: 16px;\n margin-right: $spacing-small;\n\n img {\n display: inline-block;\n margin-right: $spacing-small;\n @if $brand-logo !=false {\n width: 0;\n height: 0;\n padding: ($brand-logo-height / 2) ($brand-logo-width / 2);\n background-image: url($brand-logo);\n background-repeat: no-repeat;\n background-position: left center;\n background-size: $brand-logo-width;\n } @else {\n width: auto;\n height: $brand-logo-height;\n }\n }\n\n a {\n margin-left: $spacing-small;\n color: $navbar-brand-name;\n font-size: 20px;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n }\n }\n\n .mx-navbar {\n display: inline-flex;\n vertical-align: middle;\n background: transparent;\n justify-content: center;\n align-items: center;\n\n & > .mx-navbar-item {\n & > a {\n margin-top: 5px;\n padding: 0 20px;\n }\n }\n }\n }\n\n @if (not $use-modern-client) {\n .mx-scrollcontainer-slide {\n &:not(.mx-scrollcontainer-open) > .region-sidebar {\n overflow: hidden;\n }\n }\n }\n }\n}\n","/* ==========================================================================\n Atlas layout\n\n Extra styling for phone layouts\n========================================================================== */\n@mixin layout-atlas-phone() {\n .layout-atlas-phone {\n .region-topbar {\n min-height: $m-header-height;\n border-style: none;\n background-color: $m-header-bg;\n\n &::before {\n display: none;\n }\n }\n\n .region-sidebar {\n .mx-navigationtree .navbar-inner > ul > li > a {\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n margin-right: $spacing-medium;\n }\n }\n }\n }\n}\n","/* ==========================================================================\n Atlas layout\n\n Extra styling for responsive layouts\n========================================================================== */\n@mixin layout-atlas-responsive() {\n $sidebar-icon-height: 52px;\n $sidebar-icon-width: 52px;\n\n .layout-atlas-responsive,\n .layout-atlas-responsive-default {\n @media (min-width: $screen-md) {\n --closed-sidebar-width: #{$navsidebar-width-closed};\n .mx-scrollcontainer-shrink:not(.mx-scrollcontainer-open) > .region-sidebar,\n .mx-scrollcontainer-push:not(.mx-scrollcontainer-open) > .region-sidebar,\n .mx-scrollcontainer-slide:not(.mx-scrollcontainer-open) > .region-sidebar {\n @if (not $use-modern-client) {\n width: $navsidebar-width-closed !important;\n }\n\n .mx-scrollcontainer-wrapper .mx-navigationtree ul li {\n &.mx-navigationtree-has-items a {\n white-space: nowrap;\n }\n\n &.mx-navigationtree-has-items:hover > ul {\n position: absolute;\n z-index: 100;\n top: 0;\n bottom: 0;\n left: $sidebar-icon-width;\n display: block;\n min-width: auto;\n padding: $spacing-small 0;\n\n & > li.mx-navigationtree-has-items:hover > ul {\n left: 100%;\n }\n }\n\n &.mx-navigationtree-collapsed,\n &.mx-navigationtree-has-items {\n ul {\n display: none;\n }\n }\n }\n }\n\n .widget-sidebar:not(.widget-sidebar-expanded) {\n .mx-navigationtree ul li {\n &.mx-navigationtree-has-items:hover {\n ul {\n position: absolute;\n z-index: 100;\n top: 0;\n bottom: 0;\n left: $sidebar-icon-width;\n display: block;\n overflow-y: auto;\n min-width: auto;\n padding: $spacing-small 0;\n }\n }\n\n &.mx-navigationtree-collapsed,\n &.mx-navigationtree-has-items {\n ul {\n display: none;\n }\n }\n }\n }\n }\n\n @if (not $use-modern-client) {\n .mx-scrollcontainer-slide {\n &:not(.mx-scrollcontainer-open) > .region-sidebar {\n overflow: hidden;\n }\n\n &.mx-scrollcontainer-open > .region-sidebar {\n width: $navsidebar-width-closed !important;\n\n & > .mx-scrollcontainer-wrapper {\n position: relative;\n }\n }\n\n .region-sidebar > .mx-scrollcontainer-wrapper {\n z-index: 2;\n left: -$navsidebar-width-closed;\n background-color: inherit;\n }\n }\n\n // Push aside for mobile\n @media (max-width: $screen-sm-max) {\n .mx-scrollcontainer-open:not(.mx-scrollcontainer-slide) {\n width: 1100px;\n }\n\n .mx-scrollcontainer-slide .toggle-btn {\n display: inline-block !important;\n }\n }\n }\n\n // Sidebar\n .region-sidebar {\n .toggle-btn {\n width: $sidebar-icon-width;\n border-color: transparent;\n border-radius: 0;\n background: transparent;\n }\n\n .mx-scrollcontainer-wrapper {\n .toggle-btn-wrapper {\n display: flex;\n padding: $spacing-small;\n align-items: center;\n min-height: calc(#{$topbar-minimalheight} + 4px);\n background: $navsidebar-sub-bg;\n }\n\n .toggle-btn {\n padding: $spacing-medium;\n\n img {\n width: 24px;\n height: 24px;\n }\n }\n\n .toggle-text {\n color: #fff;\n font-weight: bold;\n }\n\n .mx-navigationtree .navbar-inner > ul > li {\n & > a {\n height: $sidebar-icon-height;\n padding: $spacing-small 0;\n white-space: nowrap;\n overflow: hidden;\n // Glyph icon\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n display: flex;\n align-items: center;\n justify-content: center;\n width: $sidebar-icon-width;\n height: $sidebar-icon-height;\n padding: $spacing-small $spacing-medium;\n border-radius: $border-radius-default;\n }\n }\n }\n }\n }\n\n // Topbar\n .region-topbar {\n padding: 0 $spacing-small;\n\n .toggle-btn {\n padding: 0;\n border-color: transparent;\n border-radius: 0;\n background: transparent;\n display: flex;\n }\n\n .mx-icon-filled,\n .mx-icon-lined {\n font-size: 20px;\n }\n }\n }\n\n // Topbar variant\n .layout-atlas-responsive-topbar {\n .region-topbar {\n padding: 0 $spacing-medium;\n @media (max-width: $screen-sm-max) {\n padding: 0 $spacing-small;\n }\n }\n }\n\n // Fix Safari issue of sidebar disappearing\n .profile-tablet {\n .mx-scrollcontainer:not(.mx-scrollcontainer-open) > .region-sidebar {\n overflow-y: hidden;\n\n .mx-scrollcontainer-wrapper {\n overflow: visible;\n }\n }\n }\n}\n","/* ==========================================================================\n Atlas layout\n\n Extra styling for tablet layouts\n========================================================================== */\n@mixin layout-atlas-tablet() {\n .layout-atlas-tablet {\n .region-topbar {\n min-height: $m-header-height;\n border-style: none;\n background-color: $m-header-bg;\n\n &::before {\n display: none;\n }\n }\n\n .region-sidebar {\n .mx-navigationtree .navbar-inner > ul > li > a {\n .glyphicon,\n .mx-icon-lined,\n .mx-icon-filled {\n margin-right: $spacing-medium;\n }\n }\n }\n }\n}\n","//\n// DISCLAIMER:\n// Do not change this file because it is core styling.\n// Customizing core files will make updating Atlas much more difficult in the future.\n// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.\n//\n\n/* ==========================================================================\n Alerts\n\n Default Bootstrap Alert boxes. Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages\n========================================================================== */\n\n.alert {\n margin-top: 0;\n padding: $spacing-medium;\n border: 1px solid;\n border-radius: $border-radius-default;\n padding: $spacing-medium;\n}\n\n.alert-icon {\n font-size: $font-size-h3;\n}\n\n.alert-title {\n color: inherit;\n}\n\n.alert-description {\n color: inherit;\n}\n\n//Variations\n\n.alert-primary,\n.alert {\n color: $alert-primary-color;\n border-color: $alert-primary-border-color;\n background-color: $alert-primary-bg;\n}\n\n.alert-secondary {\n color: $alert-secondary-color;\n border-color: $alert-secondary-border-color;\n background-color: $alert-secondary-bg;\n}\n\n// Semantic variations\n.alert-success {\n color: $alert-success-color;\n border-color: $alert-success-border-color;\n background-color: $alert-success-bg;\n}\n\n.alert-warning {\n color: $alert-warning-color;\n border-color: $alert-warning-border-color;\n background-color: $alert-warning-bg;\n}\n\n.alert-danger {\n color: $alert-danger-color;\n border-color: $alert-danger-border-color;\n background-color: $alert-danger-bg;\n}\n\n//== State\n//## Styling when component is in certain state\n//-------------------------------------------------------------------------------------------------------------------//\n.has-error .alert {\n margin-top: $spacing-small;\n margin-bottom: 0;\n}\n","/* ==========================================================================\n Breadcrumbs\n\n========================================================================== */\n.breadcrumb {\n //reset\n margin: 0;\n padding: 0;\n border-radius: 0;\n background-color: transparent;\n font-size: $font-size-default;\n margin-bottom: $spacing-large;\n}\n\n//== Elements\n//-------------------------------------------------------------------------------------------------------------------//\n.breadcrumb-item {\n display: inline-block;\n margin: 0;\n &:last-child {\n color: $font-color-default;\n a {\n text-decoration: none;\n }\n }\n}\n.breadcrumb-item + .breadcrumb-item {\n &::before {\n display: inline-block;\n padding-right: $spacing-small;\n padding-left: $spacing-small;\n content: \"/\";\n color: $gray-light;\n }\n}\n\n//== Variations\n//-------------------------------------------------------------------------------------------------------------------//\n.breadcrumb-large {\n font-size: $font-size-h3;\n}\n.breadcrumb-underline {\n padding-bottom: $spacing-medium;\n border-bottom: 1px solid $border-color-default;\n}\n","/* ==========================================================================\n Cards\n\n========================================================================== */\n.card {\n border: 0;\n border-radius: $border-radius-default;\n background-color: #ffffff;\n overflow: hidden;\n position: relative;\n padding: $spacing-large;\n margin-bottom: $spacing-large;\n}\n\n//== Card components\n//-------------------------------------------------------------------------------------------------------------------//\n.card-body {\n padding: $spacing-large;\n}\n\n.card-overlay {\n position: absolute;\n bottom: 0;\n left: 0;\n width: 100%;\n background: rgba(0, 0, 0, 0.6);\n background: linear-gradient(\n to bottom,\n rgba(255, 255, 255, 0) 0%,\n rgba(250, 250, 250, 0) 8%,\n rgba(0, 0, 0, 0.99) 121%,\n #000 100%\n );\n padding: $spacing-large;\n}\n\n.card-title {\n}\n\n.card-image {\n width: 100%;\n height: auto;\n}\n\n.card-supportingtext {\n}\n\n.card-action {\n}\n\n.card-icon {\n font-size: $font-size-h1;\n}\n\n//== Variations\n//-------------------------------------------------------------------------------------------------------------------//\n.card-with-image {\n overflow: hidden;\n}\n\n.card-with-background {\n position: relative;\n}\n","/* ==========================================================================\n Chats\n\n========================================================================== */\n.chat {\n display: flex;\n flex-direction: column;\n height: 100%;\n background-color: $bg-color-secondary;\n}\n\n//== Elements\n//-------------------------------------------------------------------------------------------------------------------//\n.chat-content {\n display: flex;\n overflow: auto;\n flex: 1;\n flex-direction: column;\n justify-content: flex-end;\n\n .chat-list {\n position: relative;\n overflow: auto;\n\n ul {\n display: flex;\n flex-direction: column-reverse;\n margin-bottom: $m-spacing-large;\n }\n\n li {\n padding: 15px 30px;\n animation: fadeIn 0.2s;\n background-color: transparent;\n animation-fill-mode: both;\n\n &,\n &:last-child {\n border: 0;\n }\n }\n\n .mx-listview-loadMore {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n display: block;\n width: 50%;\n margin: 15px auto;\n color: #ffffff;\n background-color: $brand-primary;\n box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);\n }\n }\n}\n\n.chat-message {\n display: flex;\n}\n\n.chat-avatar {\n margin: 0 20px 0 0;\n border-radius: 50%;\n}\n\n.chat-message-content {\n display: inline-flex;\n flex-direction: column;\n}\n\n.chat-message-balloon {\n position: relative;\n display: flex;\n flex-direction: column;\n padding: 10px 15px;\n border-radius: 5px;\n background-color: $bg-color;\n\n &::after {\n position: absolute;\n top: 10px;\n right: 100%;\n width: 0;\n height: 0;\n content: \"\";\n border: 10px solid transparent;\n border-top: 0;\n border-right-color: $bg-color;\n border-left: 0;\n }\n}\n\n.chat-message-time {\n padding-top: 2px;\n\n .form-control-static {\n border: 0;\n }\n}\n\n.chat-footer {\n z-index: 1;\n padding: $m-spacing-large;\n background-color: $bg-color;\n box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);\n}\n\n.chat-input {\n display: flex;\n\n .chat-textbox {\n flex: 1;\n margin-right: $spacing-large;\n margin-bottom: 0;\n\n .form-control {\n border: 0;\n }\n }\n}\n\n//== Variations\n//-------------------------------------------------------------------------------------------------------------------//\n.chat-message-self {\n justify-content: flex-end;\n\n .chat-avatar {\n margin: 0 0 0 20px;\n }\n\n .chat-message-balloon {\n background-color: $color-primary-lighter;\n\n &::after {\n left: 100%;\n border: 10px solid transparent;\n border-top: 0;\n border-right: 0;\n border-left-color: $color-primary-lighter;\n }\n }\n\n .chat-message-time {\n text-align: right;\n }\n}\n","/* ==========================================================================\n Control Group\n \n A group of buttons next to eachother\n========================================================================== */\n.controlgroup {\n .btn,\n .btn-group {\n margin-right: $spacing-small;\n margin-bottom: $spacing-small;\n\n &:last-child {\n margin-right: 0;\n }\n .btn {\n margin-right: 0;\n margin-bottom: 0;\n }\n }\n .btn-group {\n .btn + .btn {\n margin-left: -1px;\n }\n }\n}\n","/* ==========================================================================\n Full page blocks\n\n Blocks that take up the full width and height\n========================================================================== */\n\n.fullpageblock {\n position: relative;\n height: 100%;\n min-height: 100%;\n\n // Helper to make it fullheight\n .fullheight {\n height: 100% !important;\n\n & > .mx-dataview-content {\n height: inherit !important;\n }\n }\n\n .fullpage-overlay {\n position: absolute;\n z-index: 10;\n bottom: 0;\n left: 0;\n width: 100%;\n }\n}\n","/* ==========================================================================\n Pageheader\n========================================================================== */\n\n//== Default\n//-------------------------------------------------------------------------------------------------------------------//\n.pageheader {\n width: 100%;\n margin-bottom: $spacing-large;\n}\n\n//== Elements\n//-------------------------------------------------------------------------------------------------------------------//\n.pageheader-title {\n}\n\n.pageheader-subtitle {\n}\n\n.pageheader-image {\n}\n","/* ==========================================================================\n Hero header\n\n========================================================================== */\n\n.headerhero {\n width: 100%;\n min-height: $header-min-height;\n background-color: $header-bg-color;\n position: relative;\n overflow: hidden;\n padding: $spacing-large;\n margin-bottom: $spacing-large;\n}\n\n//== Elements\n//-------------------------------------------------------------------------------------------------------------------//\n.headerhero-title {\n color: $header-text-color;\n}\n\n.headerhero-subtitle {\n color: $header-text-color;\n}\n\n.headerhero-backgroundimage {\n position: absolute;\n z-index: 0;\n top: 0;\n height: 100%;\n width: 100%;\n filter: $header-bgimage-filter;\n}\n\n.btn.headerhero-action {\n color: $header-text-color;\n}\n\n.heroheader-overlay {\n z-index: 1;\n}\n","/* ==========================================================================\n Form Block\n\n Used in default forms\n========================================================================== */\n.formblock {\n width: 100%;\n margin-bottom: $spacing-large;\n}\n\n//== Elements\n//-------------------------------------------------------------------------------------------------------------------//\n.form-title {\n}\n","/* ==========================================================================\n Master Detail\n\n A list with a listening dataview\n========================================================================== */\n.masterdetail {\n background: #fff;\n .masterdetail-master {\n border-right: 1px solid $border-color-default;\n }\n .masterdetail-detail {\n padding: $spacing-large;\n }\n}\n\n//== Variations\n//-------------------------------------------------------------------------------------------------------------------//\n.masterdetail-vertical {\n background: #fff;\n .masterdetail-master {\n border-bottom: 1px solid $border-color-default;\n }\n .masterdetail-detail {\n padding: $spacing-large;\n }\n}\n","/* ==========================================================================\n User profile blocks\n -\n========================================================================== */\n.userprofile {\n .userprofile-img {\n }\n .userprofile-title {\n }\n .userprofile-subtitle {\n }\n}\n","//Wizard\n.wizard {\n display: flex;\n justify-content: space-between;\n width: 100%;\n margin-bottom: $spacing-large;\n}\n\n//Wizard step\n.wizard-step {\n position: relative;\n width: 100%;\n display: flex;\n align-items: center;\n}\n\n//Wizard step number\n.wizard-step-number {\n position: relative;\n z-index: 1;\n display: flex;\n justify-content: center;\n align-items: center;\n width: $wizard-step-number-size;\n height: $wizard-step-number-size;\n color: $wizard-default-step-color;\n font-size: $wizard-step-number-font-size;\n border-radius: 50%;\n background-color: $wizard-default-bg;\n border-color: $wizard-default-border-color;\n}\n\n//Wizard step text\n.wizard-step-text {\n overflow: hidden;\n white-space: nowrap;\n text-decoration: none;\n text-overflow: ellipsis;\n color: $wizard-default-step-color;\n}\n\n//Wizard circle\n.wizard-circle .wizard-step {\n flex-direction: column;\n &::before {\n position: absolute;\n z-index: 0;\n top: $wizard-step-number-size / 2;\n display: block;\n width: 100%;\n height: 2px;\n content: \"\";\n background-color: $wizard-default-border-color;\n }\n}\n\n//Wizard arrow\n.wizard-arrow .wizard-step {\n height: $wizard-step-height;\n margin-left: calc(0px - (#{$wizard-step-height} / 2));\n padding-left: ($wizard-step-height / 2);\n background-color: $wizard-default-bg;\n justify-content: flex-start;\n border: 1px solid $wizard-default-border-color;\n &::before,\n &::after {\n position: absolute;\n z-index: 1;\n left: 100%;\n margin-left: calc(0px - ((#{$wizard-step-height} / 2) - 1px));\n content: \" \";\n border-style: solid;\n border-color: transparent;\n }\n &::after {\n top: 0;\n border-width: calc((#{$wizard-step-height} / 2) - 1px);\n border-left-color: $wizard-default-bg;\n }\n &::before {\n top: -1px;\n border-width: $wizard-step-height / 2;\n border-left-color: $wizard-default-border-color;\n }\n\n &:first-child {\n margin-left: 0;\n padding-left: 0;\n border-top-left-radius: $border-radius-default;\n border-bottom-left-radius: $border-radius-default;\n }\n\n &:last-child {\n border-top-right-radius: $border-radius-default;\n border-bottom-right-radius: $border-radius-default;\n &::before,\n &::after {\n display: none;\n }\n }\n}\n\n//Wizard states\n.wizard-circle .wizard-step-active {\n .wizard-step-number {\n color: $wizard-active-color;\n border-color: $wizard-active-border-color;\n background-color: $wizard-active-bg;\n }\n .wizard-step-text {\n color: $wizard-active-step-color;\n }\n}\n.wizard-circle .wizard-step-visited {\n .wizard-step-number {\n color: $wizard-visited-color;\n border-color: $wizard-visited-border-color;\n background-color: $wizard-visited-bg;\n }\n .wizard-step-text {\n color: $wizard-visited-step-color;\n }\n}\n\n.wizard-arrow .wizard-step-active {\n background-color: $wizard-active-bg;\n .wizard-step-text {\n color: $wizard-active-color;\n }\n &::after {\n border-left-color: $wizard-active-bg;\n }\n}\n\n.wizard-arrow .wizard-step-visited {\n .wizard-step-text {\n color: $link-color;\n }\n}\n",".login-formblock {\n display: flex;\n flex-direction: column;\n}\n\n.login-form {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n",".listtab-tabs.mx-tabcontainer {\n background: $bg-color-secondary;\n .mx-tabcontainer-tabs {\n background: $brand-primary;\n margin-bottom: 0;\n li {\n > a {\n color: #fff;\n opacity: 0.6;\n &:hover,\n &:focus {\n color: #fff;\n }\n }\n &.active {\n > a {\n opacity: 1;\n color: #fff;\n border-color: #fff;\n &:hover,\n &:focus {\n color: #fff;\n border-color: #fff;\n }\n }\n }\n }\n }\n}\n",".springboard-grid {\n display: flex;\n flex-direction: column;\n .row {\n flex: 1;\n .col {\n display: flex;\n }\n }\n}\n\n.springboard-header {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n.springboard-card {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n",".statuspage-section {\n display: flex;\n flex-direction: column;\n}\n\n.statuspage-content {\n flex: 1;\n}\n\n.statuspage-icon {\n color: #fff;\n}\n\n.statuspage-subtitle {\n opacity: 0.6;\n}\n\n.statuspage-buttons {\n}\n","$background-color: #fff !default;\n$icon-color: #606671 !default;\n$icon-size: 14px !default;\n$pagination-button-color: #3b4251 !default;\n$pagination-caption-color: #0a1325 !default;\n$dragging-color-effect: rgba(10, 19, 37, 0.8) !default;\n$dragging-effect-size: 4px;\n\n$grid-bg-striped: #fafafb !default;\n$grid-bg-hover: #f5f6f6 !default;\n$spacing-small: 8px !default;\n$spacing-medium: 16px !default;\n$spacing-large: 24px !default;\n$grid-border-color: #ced0d3 !default;\n\n$brand-primary: #264ae5 !default;\n$brand-light: #e6eaff !default;\n$grid-selected-row-background: $brand-light;\n\n.table {\n position: relative;\n border-width: 0;\n background-color: $background-color;\n\n /* Table Content */\n .table-content {\n display: grid;\n position: relative;\n }\n\n /* Pseudo Row, to target this object please use .tr > .td or .tr > div */\n .tr {\n display: contents;\n }\n\n /* Column Header */\n .th {\n display: flex;\n align-items: flex-start;\n font-weight: 600;\n background-color: $background-color;\n border-width: 0;\n border-color: $grid-border-color;\n padding: $spacing-medium;\n top: 0;\n min-width: 0;\n\n /* Clickable column header (Sortable) */\n .clickable {\n cursor: pointer;\n }\n\n /* Column resizer when column is resizable */\n .column-resizer {\n padding: 0 4px;\n align-self: stretch;\n cursor: col-resize;\n\n &:hover .column-resizer-bar {\n background-color: $brand-primary;\n }\n &:active .column-resizer-bar {\n background-color: $brand-primary;\n }\n\n .column-resizer-bar {\n height: 100%;\n width: 4px;\n }\n }\n\n /* Content of the column header */\n .column-container {\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n align-self: stretch;\n min-width: 0;\n padding-left: $dragging-effect-size;\n margin-left: -$dragging-effect-size;\n /* Styles while dragging another column */\n &.dragging {\n border-left: $dragging-effect-size solid $dragging-color-effect;\n padding-left: 0;\n }\n\n &:not(:has(.filter)) {\n .column-header {\n height: 100%;\n }\n }\n }\n\n /* Header text */\n .column-header {\n margin: 1px 1px 1px -$dragging-effect-size + 1px;\n\n display: flex;\n align-items: baseline;\n\n span {\n min-width: 0;\n flex-grow: 1;\n text-overflow: ellipsis;\n overflow: hidden;\n text-wrap: nowrap;\n align-self: center;\n }\n\n svg {\n margin-left: 8px;\n flex: 0 0 $icon-size;\n color: $icon-color;\n height: $icon-size;\n align-self: center;\n }\n\n &:focus:not(:focus-visible) {\n outline: none;\n }\n\n &:focus-visible {\n outline: 1px solid $brand-primary;\n }\n }\n\n /* Header filter */\n .filter {\n display: flex;\n margin-top: 4px;\n input:not([type=\"checkbox\"]) {\n font-weight: normal;\n flex-grow: 1;\n width: 100%;\n }\n > .form-group {\n margin-bottom: 0;\n }\n > .form-control {\n flex: unset;\n min-width: unset;\n }\n }\n }\n\n /* If Column Header has filter */\n &:has(.th .column-container .filter:not(:empty)) {\n .th {\n &.column-selector {\n padding: $spacing-medium 0;\n }\n /*adjust filter-selector icon to be mid-bottom aligned */\n .column-selector-content {\n align-self: flex-end;\n margin-bottom: 3px;\n }\n\n /*adjust checkbox toggle to be mid-bottom aligned */\n &.widget-datagrid-col-select {\n align-items: flex-end;\n padding-bottom: calc($spacing-medium + 11px);\n }\n }\n }\n\n /* Column selector for hidable columns */\n .column-selector {\n padding: 0;\n\n /* Column content */\n .column-selector-content {\n align-self: center;\n padding-right: $spacing-medium;\n /* Button containing the eye icon */\n .column-selector-button {\n $icon-margin: 7px;\n /* 2px as path of icon's path is a bit bigger than outer svg */\n $icon-slack-size: 2px;\n\n padding: 0;\n margin: 0;\n\n height: ($icon-size + $icon-margin * 2 + $icon-slack-size);\n width: ($icon-size + $icon-margin * 2 + $icon-slack-size);\n\n svg {\n margin: $icon-margin;\n }\n }\n\n /* List of columns to select */\n .column-selectors {\n position: absolute;\n right: 0;\n margin: 8px;\n padding: 0 16px;\n background: $background-color;\n z-index: 102;\n border-radius: 3px;\n border: 1px solid transparent;\n list-style-type: none;\n -webkit-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\n -moz-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\n box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\n\n li {\n display: flex;\n align-items: center;\n\n label {\n margin: 8px;\n font-weight: normal;\n white-space: nowrap;\n }\n }\n }\n }\n }\n\n /* Column content */\n .td {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: $spacing-medium;\n border-style: solid;\n border-width: 0;\n border-color: $grid-border-color;\n border-bottom-width: 1px;\n min-width: 0;\n\n &.td-borders {\n border-top-width: 1px;\n border-top-style: solid;\n }\n\n &:focus {\n outline-width: 1px;\n outline-style: solid;\n outline-offset: -1px;\n outline-color: $brand-primary;\n }\n\n &.clickable {\n cursor: pointer;\n }\n\n > .td-text {\n white-space: nowrap;\n word-break: break-word;\n text-overflow: ellipsis;\n overflow: hidden;\n }\n\n > .td-custom-content {\n flex-grow: 1;\n }\n\n > .empty-placeholder {\n width: 100%;\n }\n\n &.wrap-text {\n min-height: 0;\n min-width: 0;\n\n > .td-text,\n > .mx-text {\n white-space: normal;\n }\n }\n }\n\n & *:focus {\n outline: 0;\n }\n\n .align-column-left {\n justify-content: flex-start;\n }\n\n .align-column-center {\n justify-content: center;\n }\n\n .align-column-right {\n justify-content: flex-end;\n }\n}\n\n.pagination-bar {\n display: flex;\n justify-content: flex-end;\n white-space: nowrap;\n align-items: baseline;\n margin: 16px;\n color: $pagination-caption-color;\n\n .paging-status {\n padding: 0 8px 8px;\n }\n\n .pagination-button {\n padding: 6px;\n color: $pagination-button-color;\n border-color: transparent;\n background-color: transparent;\n\n &:hover {\n color: $brand-primary;\n border-color: transparent;\n background-color: transparent;\n }\n\n &:disabled {\n border-color: transparent;\n background-color: transparent;\n }\n\n &:focus:not(:focus-visible) {\n outline: none;\n }\n\n &:focus-visible {\n outline: 1px solid $brand-primary;\n }\n }\n .pagination-icon {\n position: relative;\n top: 4px;\n display: inline-block;\n width: 20px;\n height: 20px;\n }\n}\n\n/* Column selector for hidable columns outside DG context */\n/* List of columns to select */\n.column-selectors {\n position: absolute;\n right: 0;\n margin: 8px 0;\n padding: 0 16px;\n background: $background-color;\n z-index: 102;\n border-radius: 3px;\n border: 1px solid transparent;\n list-style-type: none;\n -webkit-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\n -moz-box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\n box-shadow: 0 2px 20px 1px rgba(32, 43, 54, 0.08);\n\n &.overflow {\n height: 250px;\n overflow-y: scroll;\n }\n\n li {\n display: flex;\n align-items: center;\n cursor: pointer;\n\n label {\n margin: 8px;\n font-weight: normal;\n white-space: nowrap;\n }\n }\n}\n\n.widget-datagrid {\n &.widget-datagrid-selection-method-click {\n .tr.tr-selected .td {\n background-color: $grid-selected-row-background;\n }\n }\n}\n\n.widget-datagrid-col-select input:focus-visible {\n outline-offset: 0;\n}\n\n.widget-datagrid-content {\n overflow-y: auto;\n}\n","/**\n Classes for React Date-Picker font-unit and color adjustments\n*/\n$day-color: #555 !default;\n$day-range-color: #000 !default;\n$day-range-background: #eaeaea !default;\n$outside-month-color: #c8c8c8 !default;\n$text-color: #fff !default;\n$border-color: #d7d7d7 !default;\n\n.react-datepicker {\n font-size: 1em;\n border: 1px solid $border-color;\n}\n\n.react-datepicker-wrapper {\n display: flex;\n flex: 1;\n}\n\n.react-datepicker__input-container {\n display: flex;\n flex: 1;\n}\n\n.react-datepicker__header {\n padding-top: 0.8em;\n background-color: $background-color;\n border-color: transparent;\n}\n\n.react-datepicker__header__dropdown {\n margin: 8px 0 4px 0; //4px due to the header contains 4px already\n}\n\n.react-datepicker__year-dropdown-container {\n margin-left: 8px;\n}\n\n.react-datepicker__month {\n margin: 4px 4px 8px 4px; //4px due to the rows already contains 4px each day\n}\n\n.react-datepicker__month-container {\n font-weight: normal;\n}\n\n.react-datepicker__day-name,\n.react-datepicker__day {\n width: 2em;\n line-height: 2em;\n margin: 4px;\n}\n\n.react-datepicker__day,\n.react-datepicker__day--in-range {\n color: $day-color;\n border-radius: 50%;\n\n &:hover {\n border-radius: 50%;\n color: $brand-primary;\n background-color: $hover-color;\n }\n}\n\n.react-datepicker__day-name {\n color: $brand-primary;\n font-weight: bold;\n}\n\n.react-datepicker__day--outside-month {\n color: $outside-month-color;\n}\n\n.react-datepicker__day--today:not(.react-datepicker__day--in-range),\n.react-datepicker__day--keyboard-selected {\n color: $brand-primary;\n background-color: $hover-color;\n}\n\n.react-datepicker__day--selected,\n.react-datepicker__day--range-start,\n.react-datepicker__day--range-end,\n.react-datepicker__day--in-selecting-range.react-datepicker__day--selecting-range-start {\n background-color: $brand-primary;\n color: $text-color;\n\n &:hover {\n border-radius: 50%;\n background-color: $brand-primary;\n color: $text-color;\n }\n}\n\n.react-datepicker__day--in-range:not(.react-datepicker__day--range-start, .react-datepicker__day--range-end),\n.react-datepicker__day--in-selecting-range:not(\n .react-datepicker__day--in-range,\n .react-datepicker__month-text--in-range,\n .react-datepicker__quarter-text--in-range,\n .react-datepicker__year-text--in-range,\n .react-datepicker__day--selecting-range-start\n ) {\n background-color: $day-range-background;\n color: $day-range-color;\n\n &:hover {\n background-color: $brand-primary;\n color: $text-color;\n }\n}\n\nbutton.react-datepicker__close-icon::after {\n background-color: $brand-primary;\n}\n\n.react-datepicker__current-month {\n font-size: 1em;\n font-weight: normal;\n}\n\n.react-datepicker__navigation {\n top: 1em;\n line-height: 1.7em;\n border: 0.45em solid transparent;\n}\n\n.react-datepicker__navigation--previous {\n border-right-color: #ccc;\n left: 8px;\n border: none;\n}\n\n.react-datepicker__navigation--next {\n border-left-color: #ccc;\n right: 8px;\n border: none;\n}\n\n/**\nSpace between the fields and the popup\n */\n.react-datepicker-popper[data-placement^=\"bottom\"] {\n margin-top: unset;\n padding-top: 0;\n}\n","$hover-color: #f8f8f8 !default;\n$background-color: #fff !default;\n$selected-color: #dadcde !default;\n$border-color: #ced0d3 !default;\n$arrow: \"resources/dropdown-arrow.svg\";\n$item-min-height: 32px;\n\n@import \"date-picker\";\n\n@font-face {\n font-family: \"datagrid-filters\";\n src: url(\"./fonts/datagrid-filters.eot\");\n src: url(\"./fonts/datagrid-filters.eot\") format(\"embedded-opentype\"),\n url(\"./fonts/datagrid-filters.woff2\") format(\"woff2\"), url(\"./fonts/datagrid-filters.woff\") format(\"woff\"),\n url(\"./fonts/datagrid-filters.ttf\") format(\"truetype\"), url(\"./fonts/datagrid-filters.svg\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n\n.filter-container {\n display: flex;\n flex-direction: row;\n flex-grow: 1;\n\n .filter-input {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n\n .btn-calendar {\n margin-left: 5px; //Review in atlas, the current date picker is also 5px\n .button-icon {\n width: 18px;\n height: 18px;\n }\n }\n}\n\n.filter-selector {\n padding-left: 0;\n padding-right: 0;\n\n .filter-selector-content {\n height: 100%;\n align-self: flex-end;\n\n .filter-selector-button {\n padding: 8px;\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n border-right: none;\n height: 100%;\n\n &:before {\n justify-content: center;\n width: 20px;\n height: 20px;\n padding-left: 4px; /* The font has spaces in the right side, so to align in the middle we need this */\n }\n }\n\n .filter-selectors {\n position: absolute;\n width: max-content;\n left: 0;\n margin: 0 $spacing-small;\n padding: 0;\n background: $background-color;\n z-index: 102;\n border-radius: 8px;\n list-style-type: none;\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\n overflow: hidden;\n z-index: 102;\n\n li {\n display: flex;\n align-items: center;\n font-weight: normal;\n line-height: 32px;\n cursor: pointer;\n\n .filter-label {\n padding-right: 8px;\n }\n\n &.filter-selected {\n background-color: $hover-color;\n color: $brand-primary;\n }\n\n &:hover,\n &:focus {\n background-color: $hover-color;\n }\n }\n }\n }\n}\n\n.filter-selectors {\n padding: 0;\n background: $background-color;\n border-radius: 8px;\n list-style-type: none;\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\n overflow: hidden;\n z-index: 102;\n\n li {\n display: flex;\n align-items: center;\n font-weight: normal;\n line-height: 32px;\n cursor: pointer;\n\n .filter-label {\n padding-right: 8px;\n }\n\n &.filter-selected {\n background-color: $hover-color;\n color: $brand-primary;\n }\n\n &:hover,\n &:focus {\n background-color: $hover-color;\n }\n }\n}\n\n.dropdown-list {\n list-style-type: none;\n padding: 0;\n margin-bottom: 0;\n\n li {\n display: flex;\n align-items: center;\n font-weight: normal;\n min-height: $item-min-height;\n cursor: pointer;\n padding: 0 $spacing-small;\n\n .filter-label {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n &.filter-selected {\n background-color: $hover-color;\n color: $brand-primary;\n }\n\n &:hover,\n &:focus {\n background-color: $hover-color;\n }\n\n label {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n margin: 8px;\n font-weight: normal;\n width: calc(100% - 32px);\n }\n }\n}\n\n:not(.dropdown-content) > .dropdown-list {\n background: $background-color;\n border-radius: 8px;\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\n max-height: 40vh;\n z-index: 102;\n}\n\n.dropdown-content {\n background: $background-color;\n border-radius: 8px;\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\n max-height: 40vh;\n z-index: 140;\n\n &-section + &-section {\n border-top: 1px solid $form-input-border-color;\n }\n}\n\n.dropdown-footer {\n position: sticky;\n bottom: 0;\n background: inherit;\n z-index: 50;\n}\n\n.dropdown-footer-item {\n display: flex;\n flex-flow: row nowrap;\n align-items: center;\n padding: 0 $spacing-small;\n min-height: 40px;\n}\n\n.dropdown-loading {\n flex-grow: 1;\n text-align: center;\n}\n\n.dropdown-container {\n flex: 1;\n position: relative;\n\n .dropdown-triggerer {\n caret-color: transparent;\n cursor: pointer;\n\n background-image: url($arrow);\n background-repeat: no-repeat;\n background-position: center;\n background-position-x: right;\n background-position-y: center;\n background-origin: content-box;\n text-overflow: ellipsis;\n width: 100%;\n }\n\n .dropdown-list {\n left: 0;\n margin: 0 $spacing-small;\n padding: 0;\n background: $background-color;\n z-index: 102;\n border-radius: 8px;\n list-style-type: none;\n box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);\n overflow-x: hidden;\n max-height: 40vh;\n\n li {\n display: flex;\n align-items: center;\n font-weight: normal;\n min-height: $item-min-height;\n cursor: pointer;\n padding: 0 $spacing-small;\n\n .filter-label {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n &.filter-selected {\n background-color: $hover-color;\n color: $brand-primary;\n }\n\n &:hover,\n &:focus {\n background-color: $hover-color;\n }\n\n label {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n margin: 8px;\n font-weight: normal;\n width: calc(100% - 32px);\n }\n }\n }\n}\n\n/**\nIcons\n */\n\n.filter-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 20px;\n width: 20px;\n margin: 6px 8px;\n font-family: \"datagrid-filters\";\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.button-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n font-family: \"datagrid-filters\";\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.contains:before {\n content: \"\\e808\";\n}\n.endsWith:before {\n content: \"\\e806\";\n}\n.equal:before {\n content: \"\\e809\";\n}\n.greater:before {\n content: \"\\e80a\";\n}\n.greaterEqual:before {\n content: \"\\e80b\";\n}\n.notEqual:before {\n content: \"\\e80c\";\n}\n.smaller:before {\n content: \"\\e80d\";\n}\n.smallerEqual:before {\n content: \"\\e80e\";\n}\n.startsWith:before {\n content: \"\\e807\";\n}\n.between:before {\n content: \"\\e900\";\n}\n.empty:before {\n content: \"\\e901\";\n}\n.notEmpty:before {\n content: \"\\e903\";\n}\n\n/**\n* Specific styles for filters inside Data Grid 2\n**/\ndiv:not(.table-compact) > .table {\n .th {\n .filter-selector {\n .filter-selectors {\n margin: 0;\n }\n }\n\n .dropdown-container {\n .dropdown-list {\n margin: 0;\n }\n }\n }\n}\n",".table-compact {\n .th {\n padding: $spacing-small;\n\n .filter-selectors {\n margin: 0 $spacing-small;\n }\n }\n\n &:has(.th .column-container .filter:not(:empty)) {\n .th {\n &.column-selector {\n padding: $spacing-small 0;\n }\n &.widget-datagrid-col-select {\n padding-bottom: calc($spacing-small + 11px);\n }\n }\n }\n\n .td {\n padding: $spacing-small;\n }\n\n .dropdown-container .dropdown-list {\n margin: 0 $spacing-small;\n }\n\n .column-selector {\n /* Column content */\n .column-selector-content {\n padding-right: $spacing-small;\n }\n }\n}\n\n.table-striped {\n .tr:nth-child(odd) > .td {\n background-color: $grid-bg-striped;\n }\n}\n\n.table-hover {\n .tr:hover > .td {\n background-color: $grid-bg-hover;\n }\n}\n\n.table-bordered-all {\n .th,\n .td {\n border-left-width: 1px;\n border-left-style: solid;\n\n // Column for the visibility when a column can be hidden\n &.column-selector {\n border-left-width: 0;\n }\n\n &:last-child,\n &.column-selector {\n border-right-width: 1px;\n border-right-style: solid;\n }\n }\n .th {\n border-top-width: 1px;\n border-top-style: solid;\n }\n\n .td {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n\n &.td-borders {\n border-top-width: 1px;\n }\n }\n}\n\n.table-bordered-horizontal {\n .td {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n\n &.td-borders {\n border-top-width: 1px;\n }\n }\n}\n\n.table-bordered-vertical {\n .th,\n .td {\n border-left-width: 1px;\n border-left-style: solid;\n border-bottom-width: 0;\n\n // Column for the visibility when a column can be hidden\n &.column-selector {\n border-left-width: 0;\n border-bottom-width: 0;\n border-right-width: 1px;\n border-right-style: solid;\n }\n\n &.td-borders {\n border-top-width: 0;\n }\n }\n}\n\n.table-bordered-none {\n .td,\n .th {\n border: 0;\n\n &.column-selector {\n border: 0;\n }\n\n &.td-borders {\n border: 0;\n }\n }\n}\n",".sticky-sentinel {\n &.container-stuck {\n & + .widget-datagrid-grid,\n & + .table {\n .th {\n position: -webkit-sticky; /* Safari */\n position: sticky;\n z-index: 50;\n }\n }\n }\n}\n\n.widget-datagrid-content.infinite-loading {\n overflow-y: auto;\n margin-bottom: 20px;\n}\n\n.table {\n .table-content {\n &.infinite-loading {\n overflow-y: scroll;\n }\n }\n}\n","/* ==========================================================================\n Drop-down sort\n\n Override styles of Drop-down sort widget\n========================================================================== */\n@font-face {\n font-family: \"dropdown-sort\";\n src: url(\"./fonts/dropdown-sort.eot?46260688\");\n src: url(\"./fonts/dropdown-sort.eot?46260688#iefix\") format(\"embedded-opentype\"),\n url(\"./fonts/dropdown-sort.woff2?46260688\") format(\"woff2\"),\n url(\"./fonts/dropdown-sort.woff?46260688\") format(\"woff\"),\n url(\"./fonts/dropdown-sort.ttf?46260688\") format(\"truetype\"),\n url(\"./fonts/dropdown-sort.svg?46260688#dropdown-sort\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n\n.dropdown-triggerer-wrapper {\n display: flex;\n\n .dropdown-triggerer {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n border-right-width: 0;\n }\n\n .btn-sort {\n padding: $spacing-small;\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n\n font-family: \"dropdown-sort\";\n font-style: normal;\n font-weight: normal;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n\n &.icon-asc:before {\n content: \"\\e802\";\n margin: 2px;\n }\n\n &.icon-desc:before {\n content: \"\\e803\";\n margin: 2px;\n }\n }\n}\n","/* ==========================================================================\n Gallery\n\n Override styles of Gallery widget\n========================================================================== */\n@mixin grid-items($number, $suffix) {\n @for $i from 1 through $number {\n &.widget-gallery-#{$suffix}-#{$i} {\n grid-template-columns: repeat($i, 1fr);\n }\n }\n}\n\n@mixin grid-span($number, $type) {\n @for $i from 1 through $number {\n .widget-gallery-#{$type}-span-#{$i} {\n grid-#{$type}: span $i;\n }\n }\n}\n\n.widget-gallery {\n .widget-gallery-items {\n display: grid;\n grid-gap: $spacing-small;\n\n /*\n Desktop widths\n */\n @media screen and (min-width: $screen-lg) {\n @include grid-items(12, \"lg\");\n }\n\n /*\n Tablet widths\n */\n @media screen and (min-width: $screen-md) and (max-width: ($screen-lg - 1px)) {\n @include grid-items(12, \"md\");\n }\n\n /*\n Phone widths\n */\n @media screen and (max-width: ($screen-md - 1)) {\n @include grid-items(12, \"sm\");\n }\n }\n\n .widget-gallery-clickable {\n cursor: pointer;\n\n &:focus:not(:focus-visible) {\n outline: none;\n }\n\n &:focus-visible {\n outline: 1px solid $brand-primary;\n outline-offset: -1px;\n }\n }\n\n &:not(.widget-gallery-disable-selected-items-highlight) {\n .widget-gallery-item.widget-gallery-clickable.widget-gallery-selected {\n background: $brand-light;\n }\n }\n\n .infinite-loading {\n overflow: auto;\n }\n\n .widget-gallery-filter,\n .widget-gallery-empty,\n .widget-gallery-pagination {\n flex: 1;\n }\n\n /**\n Helper classes\n */\n @include grid-span(12, \"column\");\n @include grid-span(12, \"row\");\n}\n\n.widget-gallery-item-button {\n width: inherit;\n}\n","/* ==========================================================================\n Gallery default\n\n//== Design Properties\n//## Helper classes to change the look and feel of the component\n========================================================================== */\n// All borders\n.widget-gallery-bordered-all {\n .widget-gallery-item {\n border: 1px solid $grid-border-color;\n }\n}\n\n// Vertical borders\n.widget-gallery-bordered-vertical {\n .widget-gallery-item {\n border-color: $grid-border-color;\n border-style: solid;\n border-width: 0;\n border-left-width: 1px;\n border-right-width: 1px;\n }\n}\n\n// Horizontal orders\n.widget-gallery-bordered-horizontal {\n .widget-gallery-item {\n border-color: $grid-border-color;\n border-style: solid;\n border-width: 0;\n border-top-width: 1px;\n border-bottom-width: 1px;\n }\n}\n\n// Hover styles\n.widget-gallery-hover {\n .widget-gallery-items {\n .widget-gallery-item:hover {\n background-color: $grid-bg-hover;\n }\n }\n}\n\n// Striped styles\n.widget-gallery-striped {\n .widget-gallery-item:nth-child(odd) {\n background-color: $grid-bg-striped;\n }\n .widget-gallery-item:nth-child(even) {\n background-color: #fff;\n }\n}\n\n// Grid spacing none\n.widget-gallery.widget-gallery-gridgap-none {\n .widget-gallery-items {\n gap: 0;\n }\n}\n\n// Grid spacing small\n.widget-gallery.widget-gallery-gridgap-small {\n .widget-gallery-items {\n gap: $spacing-small;\n }\n}\n\n// Grid spacing medium\n.widget-gallery.widget-gallery-gridgap-medium {\n .widget-gallery-items {\n gap: $spacing-medium;\n }\n}\n\n// Grid spacing large\n.widget-gallery.widget-gallery-gridgap-large {\n .widget-gallery-items {\n gap: $spacing-large;\n }\n}\n\n// Pagination left\n.widget-gallery-pagination-left {\n .widget-gallery-pagination {\n .pagination-bar {\n justify-content: flex-start;\n }\n }\n}\n\n// Pagination center\n.widget-gallery-pagination-center {\n .widget-gallery-pagination {\n .pagination-bar {\n justify-content: center;\n }\n }\n}\n\n.widget-gallery-disable-selected-items-highlight {\n // placeholder\n // this class in needed to disable standard styles of highlighted items\n}\n","input[type=\"checkbox\"].three-state-checkbox {\n position: relative !important; //Remove after mxui merge\n width: 16px;\n height: 16px;\n margin: 0 !important; // Remove after mxui merge\n cursor: pointer;\n -webkit-user-select: none;\n user-select: none;\n appearance: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n transform: translateZ(0);\n\n &:before,\n &:after {\n position: absolute;\n display: block;\n transition: all 0.3s ease;\n }\n\n &:before {\n // Checkbox\n width: 100%;\n height: 100%;\n content: \"\";\n border: 1px solid #e7e7e9;\n border-radius: 4px;\n background-color: transparent;\n }\n\n &:not(:indeterminate):after {\n // Checkmark\n width: 8px;\n height: 4px;\n margin: 5px 4px;\n transform: rotate(-45deg);\n pointer-events: none;\n border: 2px solid #ffffff;\n border-top: 0;\n border-right: 0;\n }\n\n &:indeterminate:after {\n // Checkmark\n width: 8px;\n height: 4px;\n margin: 5px 4px;\n transform: rotate(0deg);\n pointer-events: none;\n border: 0 solid #ffffff;\n border-bottom-width: 2px;\n transition: border 0s;\n }\n\n &:not(:disabled):not(:checked):hover:after {\n content: \"\";\n border-color: #e7e7e9; // color of checkmark on hover\n }\n\n &:indeterminate:before,\n &:checked:before {\n border-color: #264ae5;\n background-color: #264ae5;\n }\n\n &:indeterminate:after,\n &:checked:after {\n content: \"\";\n }\n\n &:disabled:before {\n background-color: #f8f8f8;\n }\n\n &:checked:disabled:before {\n border-color: transparent;\n background-color: rgba(#264ae5, 0.4);\n }\n\n &:disabled:after,\n &:checked:disabled:after {\n border-color: #f8f8f8;\n }\n\n & + .control-label {\n margin-left: 8px;\n }\n}\n",".widget-tree-node {\n width: 100%;\n padding: 0;\n display: flex;\n flex-direction: column;\n\n .widget-tree-node-branch {\n display: block;\n\n &:focus-visible {\n outline: none;\n & > .widget-tree-node-branch-header {\n outline: -webkit-focus-ring-color auto 1px;\n outline: -moz-mac-focusring auto 1px;\n }\n }\n }\n\n .widget-tree-node-branch-header-clickable {\n cursor: pointer;\n }\n\n .widget-tree-node-branch-header {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n margin: 0;\n padding: 8px 0;\n\n svg {\n &.widget-tree-node-branch-header-icon-animated {\n transition: transform 0.2s ease-in-out 50ms;\n }\n &.widget-tree-node-branch-header-icon-collapsed-left {\n transform: rotate(-90deg);\n }\n &.widget-tree-node-branch-header-icon-collapsed-right {\n transform: rotate(90deg);\n }\n }\n\n .widget-tree-node-loading-spinner {\n width: 16px;\n height: 16px;\n animation: spin 2s linear infinite;\n }\n\n @keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n }\n\n .widget-tree-node-branch-header-reversed {\n flex-direction: row-reverse;\n }\n\n .widget-tree-node-branch-header-value {\n flex: 1;\n font-size: 16px;\n margin: 0 8px;\n }\n\n .widget-tree-node-branch-header-icon-container {\n display: flex;\n align-items: center;\n }\n\n .widget-tree-node-body {\n padding-left: 24px;\n transition: height 0.2s ease 50ms;\n overflow: hidden;\n\n &.widget-tree-node-branch-hidden {\n display: none;\n }\n }\n}\n\n.widget-tree-node-lined-styling {\n .widget-tree-node .widget-tree-node-body {\n position: relative;\n\n &::before {\n content: \"\";\n width: 0px;\n height: 100%;\n position: absolute;\n top: 0;\n left: 7px;\n border: 1px solid #b6b8be;\n }\n }\n\n .widget-tree-node[role=\"group\"] > .widget-tree-node-branch > .widget-tree-node-branch-header {\n position: relative;\n\n &::before {\n content: \"\";\n position: absolute;\n width: 10px;\n height: 0;\n border: 1px solid #b6b8be;\n top: 50%;\n left: -16px;\n transform: translate(0, -50%);\n }\n }\n}\n","/* ==========================================================================\n Tree Node\n\n//== Design Properties\n//## Helper classes to change the look and feel of the component\n========================================================================== */\n\n.widget-tree-node-hover {\n .widget-tree-node-branch:hover > .widget-tree-node-branch-header {\n background-color: $grid-bg-hover;\n }\n}\n\n.widget-tree-node-bordered-horizontal {\n .widget-tree-node-branch > .widget-tree-node-branch-header {\n border-width: 0;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: $grid-border-color;\n }\n}\n\n.widget-tree-node-bordered-all {\n border: 1px solid $grid-border-color;\n border-radius: 8px;\n overflow: hidden;\n\n .widget-tree-node-body:not(.widget-tree-node-branch-loading) {\n border-width: 0;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #ced0d3;\n }\n .widget-tree-node-branch:not(:first-of-type) > .widget-tree-node-branch-header {\n border-width: 0;\n border-top-width: 1px;\n border-top-style: solid;\n border-top-color: #ced0d3;\n }\n}\n\n.widget-tree-node-bordered-none {\n border-width: 0;\n .widget-tree-node-branch > .widget-tree-node-branch-header {\n border-width: 0;\n }\n}\n"]} \ No newline at end of file diff --git a/resources/App/webextensions/mxlint/main.js b/resources/App/webextensions/mxlint/main.js new file mode 100644 index 0000000..0594703 --- /dev/null +++ b/resources/App/webextensions/mxlint/main.js @@ -0,0 +1,114 @@ +import { componentFramework as e } from "@mendix/component-framework"; +import { getModelAccessWithComponentProxy as n } from "@mendix/model-access-sdk"; +const i = { + /** + * UI related APIs + */ + ui: { + /** + * API for showing message boxes + */ + messageBoxes: e.getApi("mendix.MessageBoxApi"), + /** + * API for working with (document) tabs + */ + tabs: e.getApi("mendix.TabApi"), + /** + * API for working with dockable panes + */ + panes: e.getApi("mendix.DockablePaneApi"), + /** + * API for working with the Extensions menu + */ + extensionsMenu: e.getApi("mendix.ExtensionsMenuApi") + }, + /** + * APIs for working with the app data, such as the app model and the files in the app directory + */ + app: { + /** + * API for working with files in the app directory + */ + files: e.getApi("mendix.AppFilesApi"), + /** + * APIs for working with the app model + */ + model: { + /** + * API for working with domain models + */ + domainModels: n( + "mendix.DomainModelApi", + "DomainModels$DomainModel" + ), + /** + * API for working with pages + */ + pages: n( + "mendix.PageApi", + "Pages$Page" + ), + /** + * API for working with enumerations + */ + enumerations: n( + "mendix.EnumerationApi", + "Enumerations$Enumeration" + ), + /** + * API for working with snippets + */ + snippets: n( + "mendix.SnippetApi", + "Pages$Snippet" + ), + /** + * API for working with building blocks + */ + buildingBlocks: n( + "mendix.BuildingBlockApi", + "Pages$BuildingBlock" + ) + } + } +}; +class m { + async loaded() { + await i.ui.extensionsMenu.add({ + menuId: "mxlint.MainMenu", + caption: "MxLint", + subMenus: [ + { menuId: "mxlint.ShowDockMenuItem", caption: "Open" }, + { menuId: "mxlint.ShowTabMenuItem", caption: "Settings" } + ] + }); + const o = await i.ui.panes.register( + { + title: "MxLint", + initialPosition: "bottom" + }, + { + componentName: "extension/mxlint", + uiEntrypoint: "mainDock" + } + ); + i.ui.extensionsMenu.addEventListener( + "menuItemActivated", + (t) => { + t.menuId === "mxlint.ShowTabMenuItem" ? i.ui.tabs.open( + { + title: "MxLint Settings" + }, + { + componentName: "extension/mxlint", + uiEntrypoint: "settingsTab" + } + ) : t.menuId === "mxlint.ShowDockMenuItem" && i.ui.panes.open(o); + } + ); + } +} +const d = new m(); +export { + d as component +}; diff --git a/resources/App/webextensions/mxlint/mainDock.js b/resources/App/webextensions/mxlint/mainDock.js new file mode 100644 index 0000000..2144788 --- /dev/null +++ b/resources/App/webextensions/mxlint/mainDock.js @@ -0,0 +1,332 @@ +import { c as T, j as e, r as d, S as R, u as C } from "./settingsContext-B_l6geO3.js"; +function B() { + const { settings: p } = C(), [t, y] = d.useState(null), [g, f] = d.useState(!0), [x, m] = d.useState(null), [l, u] = d.useState("failures"), [c, j] = d.useState(!0), a = async () => { + try { + f(!0); + const s = await fetch(`http://localhost:${p.serverPort}/`, { + headers: { + Accept: "application/json" + } + }); + if (!s.ok) + throw new Error(`Server responded with status: ${s.status}`); + const i = await s.json(); + y(i), m(null); + } catch (s) { + console.error("Error fetching lint results:", s), m(s instanceof Error ? s.message : "Unknown error occurred"); + } finally { + f(!1); + } + }; + d.useEffect(() => { + a(); + let s; + return c && (s = window.setInterval(() => { + a(); + }, 1e4)), () => { + s && clearInterval(s); + }; + }, [c]); + const v = () => { + var s; + return (s = t == null ? void 0 : t.results) != null && s.testsuites ? t.results.testsuites.reduce((i, o) => i + o.tests, 0) : 0; + }, b = () => { + var s; + return (s = t == null ? void 0 : t.results) != null && s.testsuites ? t.results.testsuites.reduce((i, o) => i + o.failures, 0) : 0; + }, k = () => { + var s; + return (s = t == null ? void 0 : t.results) != null && s.testsuites ? t.results.testsuites.reduce((i, o) => i + o.skipped, 0) : 0; + }, S = (s) => l === "all" ? s : l === "failures" ? s.filter((i) => i.failure) : l === "skipped" ? s.filter((i) => i.skipped) : s, r = { + container: { + fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif', + lineHeight: "1.6", + color: "#333", + padding: "10px", + maxWidth: "100%", + boxSizing: "border-box" + }, + header: { + display: "flex", + justifyContent: "space-between", + alignItems: "center", + marginBottom: "20px", + paddingBottom: "2px", + borderBottom: "1px solid #eee" + }, + timestamp: { + fontSize: "0.9em", + color: "#666", + clear: "both" + }, + summary: { + display: "flex", + gap: "20px", + marginBottom: "20px" + }, + summaryItem: { + padding: "10px 15px", + borderRadius: "5px", + textAlign: "center", + cursor: "pointer", + transition: "transform 0.1s ease", + userSelect: "none" + }, + summaryTotal: { + backgroundColor: "#f0f7ff", + border: "1px solid #cce5ff" + }, + summaryFailures: { + backgroundColor: "#fff5f5", + border: "1px solid #ffdce0" + }, + summarySkipped: { + backgroundColor: "#f8f8f8", + border: "1px solid #e1e4e8" + }, + summaryActive: { + boxShadow: "0 0 0 2px #0066cc" + }, + summaryNumber: { + fontSize: "1.5em", + fontWeight: "bold" + }, + rule: { + backgroundColor: "#f9f9f9", + borderRadius: "5px", + padding: "15px", + marginBottom: "20px", + borderLeft: "4px solid #0066cc" + }, + ruleHeader: { + display: "flex", + justifyContent: "space-between", + marginBottom: "10px" + }, + ruleTitle: { + fontWeight: "bold", + margin: "0" + }, + ruleMeta: { + display: "flex", + gap: "15px", + fontSize: "0.9em" + }, + severityHigh: { + color: "#d73a49", + fontWeight: "bold" + }, + severityMedium: { + color: "#e36209", + fontWeight: "bold" + }, + severityLow: { + color: "#6a737d", + fontWeight: "bold" + }, + testcase: { + padding: "10px", + margin: "5px 0", + borderRadius: "3px" + }, + testcasePass: { + backgroundColor: "#f0fff4", + borderLeft: "3px solid #22863a" + }, + testcaseFail: { + backgroundColor: "#fff5f5", + borderLeft: "3px solid #d73a49" + }, + testcaseSkip: { + backgroundColor: "#f8f8f8", + borderLeft: "3px solid #6a737d" + }, + testcaseHeader: { + display: "flex", + justifyContent: "space-between" + }, + failureMessage: { + backgroundColor: "#fff5f5", + borderRadius: "3px", + padding: "10px", + marginTop: "5px", + fontFamily: "monospace", + whiteSpace: "pre-wrap" + }, + refreshButton: { + backgroundColor: "#0066cc", + color: "white", + border: "none", + padding: "8px 16px", + borderRadius: "4px", + cursor: "pointer", + fontSize: "14px" + }, + autoRefresh: { + display: "flex", + alignItems: "center", + gap: "10px", + fontSize: "0.9em" + }, + loading: { + textAlign: "center", + padding: "20px", + color: "#666" + }, + error: { + backgroundColor: "#fff5f5", + borderRadius: "5px", + padding: "15px", + color: "#d73a49", + marginBottom: "20px" + } + }; + return g && !t ? /* @__PURE__ */ e.jsx("div", { style: r.container, children: /* @__PURE__ */ e.jsx("div", { style: r.loading, children: "Loading lint results..." }) }) : x && !t ? /* @__PURE__ */ e.jsx("div", { style: r.container, children: /* @__PURE__ */ e.jsxs("div", { style: r.error, children: [ + /* @__PURE__ */ e.jsx("h3", { children: "Error loading lint results" }), + /* @__PURE__ */ e.jsx("p", { children: x }), + /* @__PURE__ */ e.jsxs("p", { children: [ + "Make sure mxlint-cli serve is running on port ", + p.serverPort, + "." + ] }), + /* @__PURE__ */ e.jsx("button", { style: r.refreshButton, onClick: a, children: "Retry" }) + ] }) }) : t ? /* @__PURE__ */ e.jsxs("div", { style: r.container, children: [ + /* @__PURE__ */ e.jsxs("div", { style: r.header, children: [ + /* @__PURE__ */ e.jsx("h1", { children: "MxLint" }), + /* @__PURE__ */ e.jsxs("div", { children: [ + /* @__PURE__ */ e.jsxs("div", { style: r.timestamp, children: [ + "Last updated: ", + new Date(t.timestamp).toLocaleString() + ] }), + /* @__PURE__ */ e.jsxs("div", { style: r.autoRefresh, children: [ + /* @__PURE__ */ e.jsx( + "input", + { + type: "checkbox", + id: "auto-refresh", + checked: c, + onChange: () => j(!c) + } + ), + /* @__PURE__ */ e.jsx("label", { htmlFor: "auto-refresh", children: "Auto-refresh (10s)" }), + /* @__PURE__ */ e.jsx("button", { style: r.refreshButton, onClick: a, children: "Refresh Now" }) + ] }) + ] }) + ] }), + t.error ? /* @__PURE__ */ e.jsx("div", { style: r.error, children: t.error }) : /* @__PURE__ */ e.jsxs(e.Fragment, { children: [ + /* @__PURE__ */ e.jsxs("div", { style: r.summary, children: [ + /* @__PURE__ */ e.jsxs( + "div", + { + style: { + ...r.summaryItem, + ...r.summaryTotal, + ...l === "all" ? r.summaryActive : {} + }, + onClick: () => u("all"), + children: [ + /* @__PURE__ */ e.jsx("div", { style: r.summaryNumber, children: v() }), + /* @__PURE__ */ e.jsx("div", { children: "Total Tests" }) + ] + } + ), + /* @__PURE__ */ e.jsxs( + "div", + { + style: { + ...r.summaryItem, + ...r.summaryFailures, + ...l === "failures" ? r.summaryActive : {} + }, + onClick: () => u("failures"), + children: [ + /* @__PURE__ */ e.jsx("div", { style: r.summaryNumber, children: b() }), + /* @__PURE__ */ e.jsx("div", { children: "Failures" }) + ] + } + ), + /* @__PURE__ */ e.jsxs( + "div", + { + style: { + ...r.summaryItem, + ...r.summarySkipped, + ...l === "skipped" ? r.summaryActive : {} + }, + onClick: () => u("skipped"), + children: [ + /* @__PURE__ */ e.jsx("div", { style: r.summaryNumber, children: k() }), + /* @__PURE__ */ e.jsx("div", { children: "Skipped" }) + ] + } + ) + ] }), + t.results.rules.map((s, i) => { + const o = t.results.testsuites.find( + (n) => n.name === s.path + ); + if (!o) return null; + const h = S(o.testcases); + return h.length === 0 && l !== "all" ? null : /* @__PURE__ */ e.jsxs("div", { style: r.rule, children: [ + /* @__PURE__ */ e.jsxs("div", { style: r.ruleHeader, children: [ + /* @__PURE__ */ e.jsx("h3", { style: r.ruleTitle, children: s.title }), + /* @__PURE__ */ e.jsxs("div", { style: r.ruleMeta, children: [ + /* @__PURE__ */ e.jsx("div", { children: /* @__PURE__ */ e.jsx( + "span", + { + style: s.severity === "HIGH" ? r.severityHigh : s.severity === "MEDIUM" ? r.severityMedium : r.severityLow, + children: s.severity + } + ) }), + /* @__PURE__ */ e.jsx("div", { children: s.category }), + /* @__PURE__ */ e.jsxs("div", { children: [ + "Rule #", + s.ruleNumber + ] }) + ] }) + ] }), + /* @__PURE__ */ e.jsx("p", { children: s.description }), + /* @__PURE__ */ e.jsxs("p", { children: [ + /* @__PURE__ */ e.jsx("strong", { children: "Remediation:" }), + " ", + s.remediation + ] }), + /* @__PURE__ */ e.jsx("h4", { children: "Test Results" }), + h.map((n, w) => /* @__PURE__ */ e.jsxs( + "div", + { + style: { + ...r.testcase, + ...n.failure ? r.testcaseFail : n.skipped ? r.testcaseSkip : r.testcasePass + }, + children: [ + /* @__PURE__ */ e.jsxs("div", { style: r.testcaseHeader, children: [ + /* @__PURE__ */ e.jsxs("div", { children: [ + n.failure ? "❌ " : n.skipped ? "⏭️ " : "✅ ", + n.name + ] }), + /* @__PURE__ */ e.jsxs("div", { children: [ + n.time.toFixed(3), + "s" + ] }) + ] }), + n.failure && /* @__PURE__ */ e.jsx("div", { style: r.failureMessage, children: n.failure.message }), + n.skipped && /* @__PURE__ */ e.jsxs("div", { children: [ + "Skipped: ", + n.skipped.message + ] }) + ] + }, + w + )) + ] }, i); + }) + ] }) + ] }) : /* @__PURE__ */ e.jsx("div", { style: r.container, children: /* @__PURE__ */ e.jsxs("div", { style: r.error, children: [ + /* @__PURE__ */ e.jsx("h3", { children: "No lint results available" }), + /* @__PURE__ */ e.jsx("p", { children: "Please run the linter first." }), + /* @__PURE__ */ e.jsx("button", { style: r.refreshButton, onClick: a, children: "Refresh" }) + ] }) }); +} +T.createRoot(document.getElementById("root")).render( + /* @__PURE__ */ e.jsx(d.StrictMode, { children: /* @__PURE__ */ e.jsx(R, { children: /* @__PURE__ */ e.jsx(B, {}) }) }) +); diff --git a/resources/App/webextensions/mxlint/manifest.json b/resources/App/webextensions/mxlint/manifest.json new file mode 100644 index 0000000..227d2e7 --- /dev/null +++ b/resources/App/webextensions/mxlint/manifest.json @@ -0,0 +1,11 @@ +{ + "mendixComponent": { + "entryPoints": { + "main": "main.js", + "ui": { + "settingsTab": "settingsTab.js", + "mainDock": "mainDock.js" + } + } + } +} diff --git a/resources/App/webextensions/mxlint/settingsContext-B_l6geO3.js b/resources/App/webextensions/mxlint/settingsContext-B_l6geO3.js new file mode 100644 index 0000000..a2a01ca --- /dev/null +++ b/resources/App/webextensions/mxlint/settingsContext-B_l6geO3.js @@ -0,0 +1,21292 @@ +var Im = { exports: {} }, Xp = {}, Qm = { exports: {} }, ht = {}; +/** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +var qR; +function Xb() { + if (qR) return ht; + qR = 1; + var Z = Symbol.for("react.element"), X = Symbol.for("react.portal"), A = Symbol.for("react.fragment"), wt = Symbol.for("react.strict_mode"), Je = Symbol.for("react.profiler"), mt = Symbol.for("react.provider"), S = Symbol.for("react.context"), Vt = Symbol.for("react.forward_ref"), de = Symbol.for("react.suspense"), ve = Symbol.for("react.memo"), ut = Symbol.for("react.lazy"), ee = Symbol.iterator; + function Ce(b) { + return b === null || typeof b != "object" ? null : (b = ee && b[ee] || b["@@iterator"], typeof b == "function" ? b : null); + } + var ue = { isMounted: function() { + return !1; + }, enqueueForceUpdate: function() { + }, enqueueReplaceState: function() { + }, enqueueSetState: function() { + } }, Ye = Object.assign, yt = {}; + function dt(b, P, je) { + this.props = b, this.context = P, this.refs = yt, this.updater = je || ue; + } + dt.prototype.isReactComponent = {}, dt.prototype.setState = function(b, P) { + if (typeof b != "object" && typeof b != "function" && b != null) throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables."); + this.updater.enqueueSetState(this, b, P, "setState"); + }, dt.prototype.forceUpdate = function(b) { + this.updater.enqueueForceUpdate(this, b, "forceUpdate"); + }; + function cn() { + } + cn.prototype = dt.prototype; + function ft(b, P, je) { + this.props = b, this.context = P, this.refs = yt, this.updater = je || ue; + } + var Ie = ft.prototype = new cn(); + Ie.constructor = ft, Ye(Ie, dt.prototype), Ie.isPureReactComponent = !0; + var pt = Array.isArray, _e = Object.prototype.hasOwnProperty, ot = { current: null }, Fe = { key: !0, ref: !0, __self: !0, __source: !0 }; + function rn(b, P, je) { + var Ue, rt = {}, Ze = null, Xe = null; + if (P != null) for (Ue in P.ref !== void 0 && (Xe = P.ref), P.key !== void 0 && (Ze = "" + P.key), P) _e.call(P, Ue) && !Fe.hasOwnProperty(Ue) && (rt[Ue] = P[Ue]); + var et = arguments.length - 2; + if (et === 1) rt.children = je; + else if (1 < et) { + for (var at = Array(et), Pt = 0; Pt < et; Pt++) at[Pt] = arguments[Pt + 2]; + rt.children = at; + } + if (b && b.defaultProps) for (Ue in et = b.defaultProps, et) rt[Ue] === void 0 && (rt[Ue] = et[Ue]); + return { $$typeof: Z, type: b, key: Ze, ref: Xe, props: rt, _owner: ot.current }; + } + function Ft(b, P) { + return { $$typeof: Z, type: b.type, key: P, ref: b.ref, props: b.props, _owner: b._owner }; + } + function Kt(b) { + return typeof b == "object" && b !== null && b.$$typeof === Z; + } + function an(b) { + var P = { "=": "=0", ":": "=2" }; + return "$" + b.replace(/[=:]/g, function(je) { + return P[je]; + }); + } + var xt = /\/+/g; + function ke(b, P) { + return typeof b == "object" && b !== null && b.key != null ? an("" + b.key) : P.toString(36); + } + function Ut(b, P, je, Ue, rt) { + var Ze = typeof b; + (Ze === "undefined" || Ze === "boolean") && (b = null); + var Xe = !1; + if (b === null) Xe = !0; + else switch (Ze) { + case "string": + case "number": + Xe = !0; + break; + case "object": + switch (b.$$typeof) { + case Z: + case X: + Xe = !0; + } + } + if (Xe) return Xe = b, rt = rt(Xe), b = Ue === "" ? "." + ke(Xe, 0) : Ue, pt(rt) ? (je = "", b != null && (je = b.replace(xt, "$&/") + "/"), Ut(rt, P, je, "", function(Pt) { + return Pt; + })) : rt != null && (Kt(rt) && (rt = Ft(rt, je + (!rt.key || Xe && Xe.key === rt.key ? "" : ("" + rt.key).replace(xt, "$&/") + "/") + b)), P.push(rt)), 1; + if (Xe = 0, Ue = Ue === "" ? "." : Ue + ":", pt(b)) for (var et = 0; et < b.length; et++) { + Ze = b[et]; + var at = Ue + ke(Ze, et); + Xe += Ut(Ze, P, je, at, rt); + } + else if (at = Ce(b), typeof at == "function") for (b = at.call(b), et = 0; !(Ze = b.next()).done; ) Ze = Ze.value, at = Ue + ke(Ze, et++), Xe += Ut(Ze, P, je, at, rt); + else if (Ze === "object") throw P = String(b), Error("Objects are not valid as a React child (found: " + (P === "[object Object]" ? "object with keys {" + Object.keys(b).join(", ") + "}" : P) + "). If you meant to render a collection of children, use an array instead."); + return Xe; + } + function _t(b, P, je) { + if (b == null) return b; + var Ue = [], rt = 0; + return Ut(b, Ue, "", "", function(Ze) { + return P.call(je, Ze, rt++); + }), Ue; + } + function Dt(b) { + if (b._status === -1) { + var P = b._result; + P = P(), P.then(function(je) { + (b._status === 0 || b._status === -1) && (b._status = 1, b._result = je); + }, function(je) { + (b._status === 0 || b._status === -1) && (b._status = 2, b._result = je); + }), b._status === -1 && (b._status = 0, b._result = P); + } + if (b._status === 1) return b._result.default; + throw b._result; + } + var Ee = { current: null }, K = { transition: null }, Re = { ReactCurrentDispatcher: Ee, ReactCurrentBatchConfig: K, ReactCurrentOwner: ot }; + function ne() { + throw Error("act(...) is not supported in production builds of React."); + } + return ht.Children = { map: _t, forEach: function(b, P, je) { + _t(b, function() { + P.apply(this, arguments); + }, je); + }, count: function(b) { + var P = 0; + return _t(b, function() { + P++; + }), P; + }, toArray: function(b) { + return _t(b, function(P) { + return P; + }) || []; + }, only: function(b) { + if (!Kt(b)) throw Error("React.Children.only expected to receive a single React element child."); + return b; + } }, ht.Component = dt, ht.Fragment = A, ht.Profiler = Je, ht.PureComponent = ft, ht.StrictMode = wt, ht.Suspense = de, ht.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = Re, ht.act = ne, ht.cloneElement = function(b, P, je) { + if (b == null) throw Error("React.cloneElement(...): The argument must be a React element, but you passed " + b + "."); + var Ue = Ye({}, b.props), rt = b.key, Ze = b.ref, Xe = b._owner; + if (P != null) { + if (P.ref !== void 0 && (Ze = P.ref, Xe = ot.current), P.key !== void 0 && (rt = "" + P.key), b.type && b.type.defaultProps) var et = b.type.defaultProps; + for (at in P) _e.call(P, at) && !Fe.hasOwnProperty(at) && (Ue[at] = P[at] === void 0 && et !== void 0 ? et[at] : P[at]); + } + var at = arguments.length - 2; + if (at === 1) Ue.children = je; + else if (1 < at) { + et = Array(at); + for (var Pt = 0; Pt < at; Pt++) et[Pt] = arguments[Pt + 2]; + Ue.children = et; + } + return { $$typeof: Z, type: b.type, key: rt, ref: Ze, props: Ue, _owner: Xe }; + }, ht.createContext = function(b) { + return b = { $$typeof: S, _currentValue: b, _currentValue2: b, _threadCount: 0, Provider: null, Consumer: null, _defaultValue: null, _globalName: null }, b.Provider = { $$typeof: mt, _context: b }, b.Consumer = b; + }, ht.createElement = rn, ht.createFactory = function(b) { + var P = rn.bind(null, b); + return P.type = b, P; + }, ht.createRef = function() { + return { current: null }; + }, ht.forwardRef = function(b) { + return { $$typeof: Vt, render: b }; + }, ht.isValidElement = Kt, ht.lazy = function(b) { + return { $$typeof: ut, _payload: { _status: -1, _result: b }, _init: Dt }; + }, ht.memo = function(b, P) { + return { $$typeof: ve, type: b, compare: P === void 0 ? null : P }; + }, ht.startTransition = function(b) { + var P = K.transition; + K.transition = {}; + try { + b(); + } finally { + K.transition = P; + } + }, ht.unstable_act = ne, ht.useCallback = function(b, P) { + return Ee.current.useCallback(b, P); + }, ht.useContext = function(b) { + return Ee.current.useContext(b); + }, ht.useDebugValue = function() { + }, ht.useDeferredValue = function(b) { + return Ee.current.useDeferredValue(b); + }, ht.useEffect = function(b, P) { + return Ee.current.useEffect(b, P); + }, ht.useId = function() { + return Ee.current.useId(); + }, ht.useImperativeHandle = function(b, P, je) { + return Ee.current.useImperativeHandle(b, P, je); + }, ht.useInsertionEffect = function(b, P) { + return Ee.current.useInsertionEffect(b, P); + }, ht.useLayoutEffect = function(b, P) { + return Ee.current.useLayoutEffect(b, P); + }, ht.useMemo = function(b, P) { + return Ee.current.useMemo(b, P); + }, ht.useReducer = function(b, P, je) { + return Ee.current.useReducer(b, P, je); + }, ht.useRef = function(b) { + return Ee.current.useRef(b); + }, ht.useState = function(b) { + return Ee.current.useState(b); + }, ht.useSyncExternalStore = function(b, P, je) { + return Ee.current.useSyncExternalStore(b, P, je); + }, ht.useTransition = function() { + return Ee.current.useTransition(); + }, ht.version = "18.3.1", ht; +} +var Jp = { exports: {} }; +/** + * @license React + * react.development.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +Jp.exports; +var XR; +function Kb() { + return XR || (XR = 1, function(Z, X) { + process.env.NODE_ENV !== "production" && function() { + typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error()); + var A = "18.3.1", wt = Symbol.for("react.element"), Je = Symbol.for("react.portal"), mt = Symbol.for("react.fragment"), S = Symbol.for("react.strict_mode"), Vt = Symbol.for("react.profiler"), de = Symbol.for("react.provider"), ve = Symbol.for("react.context"), ut = Symbol.for("react.forward_ref"), ee = Symbol.for("react.suspense"), Ce = Symbol.for("react.suspense_list"), ue = Symbol.for("react.memo"), Ye = Symbol.for("react.lazy"), yt = Symbol.for("react.offscreen"), dt = Symbol.iterator, cn = "@@iterator"; + function ft(h) { + if (h === null || typeof h != "object") + return null; + var C = dt && h[dt] || h[cn]; + return typeof C == "function" ? C : null; + } + var Ie = { + /** + * @internal + * @type {ReactComponent} + */ + current: null + }, pt = { + transition: null + }, _e = { + current: null, + // Used to reproduce behavior of `batchedUpdates` in legacy mode. + isBatchingLegacy: !1, + didScheduleLegacyUpdate: !1 + }, ot = { + /** + * @internal + * @type {ReactComponent} + */ + current: null + }, Fe = {}, rn = null; + function Ft(h) { + rn = h; + } + Fe.setExtraStackFrame = function(h) { + rn = h; + }, Fe.getCurrentStack = null, Fe.getStackAddendum = function() { + var h = ""; + rn && (h += rn); + var C = Fe.getCurrentStack; + return C && (h += C() || ""), h; + }; + var Kt = !1, an = !1, xt = !1, ke = !1, Ut = !1, _t = { + ReactCurrentDispatcher: Ie, + ReactCurrentBatchConfig: pt, + ReactCurrentOwner: ot + }; + _t.ReactDebugCurrentFrame = Fe, _t.ReactCurrentActQueue = _e; + function Dt(h) { + { + for (var C = arguments.length, N = new Array(C > 1 ? C - 1 : 0), F = 1; F < C; F++) + N[F - 1] = arguments[F]; + K("warn", h, N); + } + } + function Ee(h) { + { + for (var C = arguments.length, N = new Array(C > 1 ? C - 1 : 0), F = 1; F < C; F++) + N[F - 1] = arguments[F]; + K("error", h, N); + } + } + function K(h, C, N) { + { + var F = _t.ReactDebugCurrentFrame, q = F.getStackAddendum(); + q !== "" && (C += "%s", N = N.concat([q])); + var Oe = N.map(function(re) { + return String(re); + }); + Oe.unshift("Warning: " + C), Function.prototype.apply.call(console[h], console, Oe); + } + } + var Re = {}; + function ne(h, C) { + { + var N = h.constructor, F = N && (N.displayName || N.name) || "ReactClass", q = F + "." + C; + if (Re[q]) + return; + Ee("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", C, F), Re[q] = !0; + } + } + var b = { + /** + * Checks whether or not this composite component is mounted. + * @param {ReactClass} publicInstance The instance we want to test. + * @return {boolean} True if mounted, false otherwise. + * @protected + * @final + */ + isMounted: function(h) { + return !1; + }, + /** + * Forces an update. This should only be invoked when it is known with + * certainty that we are **not** in a DOM transaction. + * + * You may want to call this when you know that some deeper aspect of the + * component's state has changed but `setState` was not called. + * + * This will not invoke `shouldComponentUpdate`, but it will invoke + * `componentWillUpdate` and `componentDidUpdate`. + * + * @param {ReactClass} publicInstance The instance that should rerender. + * @param {?function} callback Called after component is updated. + * @param {?string} callerName name of the calling function in the public API. + * @internal + */ + enqueueForceUpdate: function(h, C, N) { + ne(h, "forceUpdate"); + }, + /** + * Replaces all of the state. Always use this or `setState` to mutate state. + * You should treat `this.state` as immutable. + * + * There is no guarantee that `this.state` will be immediately updated, so + * accessing `this.state` after calling this method may return the old value. + * + * @param {ReactClass} publicInstance The instance that should rerender. + * @param {object} completeState Next state. + * @param {?function} callback Called after component is updated. + * @param {?string} callerName name of the calling function in the public API. + * @internal + */ + enqueueReplaceState: function(h, C, N, F) { + ne(h, "replaceState"); + }, + /** + * Sets a subset of the state. This only exists because _pendingState is + * internal. This provides a merging strategy that is not available to deep + * properties which is confusing. TODO: Expose pendingState or don't use it + * during the merge. + * + * @param {ReactClass} publicInstance The instance that should rerender. + * @param {object} partialState Next partial state to be merged with state. + * @param {?function} callback Called after component is updated. + * @param {?string} Name of the calling function in the public API. + * @internal + */ + enqueueSetState: function(h, C, N, F) { + ne(h, "setState"); + } + }, P = Object.assign, je = {}; + Object.freeze(je); + function Ue(h, C, N) { + this.props = h, this.context = C, this.refs = je, this.updater = N || b; + } + Ue.prototype.isReactComponent = {}, Ue.prototype.setState = function(h, C) { + if (typeof h != "object" && typeof h != "function" && h != null) + throw new Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables."); + this.updater.enqueueSetState(this, h, C, "setState"); + }, Ue.prototype.forceUpdate = function(h) { + this.updater.enqueueForceUpdate(this, h, "forceUpdate"); + }; + { + var rt = { + isMounted: ["isMounted", "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."], + replaceState: ["replaceState", "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."] + }, Ze = function(h, C) { + Object.defineProperty(Ue.prototype, h, { + get: function() { + Dt("%s(...) is deprecated in plain JavaScript React classes. %s", C[0], C[1]); + } + }); + }; + for (var Xe in rt) + rt.hasOwnProperty(Xe) && Ze(Xe, rt[Xe]); + } + function et() { + } + et.prototype = Ue.prototype; + function at(h, C, N) { + this.props = h, this.context = C, this.refs = je, this.updater = N || b; + } + var Pt = at.prototype = new et(); + Pt.constructor = at, P(Pt, Ue.prototype), Pt.isPureReactComponent = !0; + function kn() { + var h = { + current: null + }; + return Object.seal(h), h; + } + var wr = Array.isArray; + function En(h) { + return wr(h); + } + function tr(h) { + { + var C = typeof Symbol == "function" && Symbol.toStringTag, N = C && h[Symbol.toStringTag] || h.constructor.name || "Object"; + return N; + } + } + function Pn(h) { + try { + return Vn(h), !1; + } catch { + return !0; + } + } + function Vn(h) { + return "" + h; + } + function $r(h) { + if (Pn(h)) + return Ee("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", tr(h)), Vn(h); + } + function oi(h, C, N) { + var F = h.displayName; + if (F) + return F; + var q = C.displayName || C.name || ""; + return q !== "" ? N + "(" + q + ")" : N; + } + function ua(h) { + return h.displayName || "Context"; + } + function Gn(h) { + if (h == null) + return null; + if (typeof h.tag == "number" && Ee("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof h == "function") + return h.displayName || h.name || null; + if (typeof h == "string") + return h; + switch (h) { + case mt: + return "Fragment"; + case Je: + return "Portal"; + case Vt: + return "Profiler"; + case S: + return "StrictMode"; + case ee: + return "Suspense"; + case Ce: + return "SuspenseList"; + } + if (typeof h == "object") + switch (h.$$typeof) { + case ve: + var C = h; + return ua(C) + ".Consumer"; + case de: + var N = h; + return ua(N._context) + ".Provider"; + case ut: + return oi(h, h.render, "ForwardRef"); + case ue: + var F = h.displayName || null; + return F !== null ? F : Gn(h.type) || "Memo"; + case Ye: { + var q = h, Oe = q._payload, re = q._init; + try { + return Gn(re(Oe)); + } catch { + return null; + } + } + } + return null; + } + var Cn = Object.prototype.hasOwnProperty, Bn = { + key: !0, + ref: !0, + __self: !0, + __source: !0 + }, yr, $a, On; + On = {}; + function gr(h) { + if (Cn.call(h, "ref")) { + var C = Object.getOwnPropertyDescriptor(h, "ref").get; + if (C && C.isReactWarning) + return !1; + } + return h.ref !== void 0; + } + function oa(h) { + if (Cn.call(h, "key")) { + var C = Object.getOwnPropertyDescriptor(h, "key").get; + if (C && C.isReactWarning) + return !1; + } + return h.key !== void 0; + } + function Ya(h, C) { + var N = function() { + yr || (yr = !0, Ee("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", C)); + }; + N.isReactWarning = !0, Object.defineProperty(h, "key", { + get: N, + configurable: !0 + }); + } + function si(h, C) { + var N = function() { + $a || ($a = !0, Ee("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", C)); + }; + N.isReactWarning = !0, Object.defineProperty(h, "ref", { + get: N, + configurable: !0 + }); + } + function J(h) { + if (typeof h.ref == "string" && ot.current && h.__self && ot.current.stateNode !== h.__self) { + var C = Gn(ot.current.type); + On[C] || (Ee('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', C, h.ref), On[C] = !0); + } + } + var Te = function(h, C, N, F, q, Oe, re) { + var Ne = { + // This tag allows us to uniquely identify this as a React Element + $$typeof: wt, + // Built-in properties that belong on the element + type: h, + key: C, + ref: N, + props: re, + // Record the component responsible for creating this element. + _owner: Oe + }; + return Ne._store = {}, Object.defineProperty(Ne._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: !1 + }), Object.defineProperty(Ne, "_self", { + configurable: !1, + enumerable: !1, + writable: !1, + value: F + }), Object.defineProperty(Ne, "_source", { + configurable: !1, + enumerable: !1, + writable: !1, + value: q + }), Object.freeze && (Object.freeze(Ne.props), Object.freeze(Ne)), Ne; + }; + function tt(h, C, N) { + var F, q = {}, Oe = null, re = null, Ne = null, ct = null; + if (C != null) { + gr(C) && (re = C.ref, J(C)), oa(C) && ($r(C.key), Oe = "" + C.key), Ne = C.__self === void 0 ? null : C.__self, ct = C.__source === void 0 ? null : C.__source; + for (F in C) + Cn.call(C, F) && !Bn.hasOwnProperty(F) && (q[F] = C[F]); + } + var Tt = arguments.length - 2; + if (Tt === 1) + q.children = N; + else if (Tt > 1) { + for (var tn = Array(Tt), It = 0; It < Tt; It++) + tn[It] = arguments[It + 2]; + Object.freeze && Object.freeze(tn), q.children = tn; + } + if (h && h.defaultProps) { + var nt = h.defaultProps; + for (F in nt) + q[F] === void 0 && (q[F] = nt[F]); + } + if (Oe || re) { + var Qt = typeof h == "function" ? h.displayName || h.name || "Unknown" : h; + Oe && Ya(q, Qt), re && si(q, Qt); + } + return Te(h, Oe, re, Ne, ct, ot.current, q); + } + function At(h, C) { + var N = Te(h.type, C, h.ref, h._self, h._source, h._owner, h.props); + return N; + } + function Jt(h, C, N) { + if (h == null) + throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + h + "."); + var F, q = P({}, h.props), Oe = h.key, re = h.ref, Ne = h._self, ct = h._source, Tt = h._owner; + if (C != null) { + gr(C) && (re = C.ref, Tt = ot.current), oa(C) && ($r(C.key), Oe = "" + C.key); + var tn; + h.type && h.type.defaultProps && (tn = h.type.defaultProps); + for (F in C) + Cn.call(C, F) && !Bn.hasOwnProperty(F) && (C[F] === void 0 && tn !== void 0 ? q[F] = tn[F] : q[F] = C[F]); + } + var It = arguments.length - 2; + if (It === 1) + q.children = N; + else if (It > 1) { + for (var nt = Array(It), Qt = 0; Qt < It; Qt++) + nt[Qt] = arguments[Qt + 2]; + q.children = nt; + } + return Te(h.type, Oe, re, Ne, ct, Tt, q); + } + function pn(h) { + return typeof h == "object" && h !== null && h.$$typeof === wt; + } + var ln = ".", qn = ":"; + function Zt(h) { + var C = /[=:]/g, N = { + "=": "=0", + ":": "=2" + }, F = h.replace(C, function(q) { + return N[q]; + }); + return "$" + F; + } + var Bt = !1, $t = /\/+/g; + function sa(h) { + return h.replace($t, "$&/"); + } + function Sr(h, C) { + return typeof h == "object" && h !== null && h.key != null ? ($r(h.key), Zt("" + h.key)) : C.toString(36); + } + function Ra(h, C, N, F, q) { + var Oe = typeof h; + (Oe === "undefined" || Oe === "boolean") && (h = null); + var re = !1; + if (h === null) + re = !0; + else + switch (Oe) { + case "string": + case "number": + re = !0; + break; + case "object": + switch (h.$$typeof) { + case wt: + case Je: + re = !0; + } + } + if (re) { + var Ne = h, ct = q(Ne), Tt = F === "" ? ln + Sr(Ne, 0) : F; + if (En(ct)) { + var tn = ""; + Tt != null && (tn = sa(Tt) + "/"), Ra(ct, C, tn, "", function(Gf) { + return Gf; + }); + } else ct != null && (pn(ct) && (ct.key && (!Ne || Ne.key !== ct.key) && $r(ct.key), ct = At( + ct, + // Keep both the (mapped) and old keys if they differ, just as + // traverseAllChildren used to do for objects as children + N + // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key + (ct.key && (!Ne || Ne.key !== ct.key) ? ( + // $FlowFixMe Flow incorrectly thinks existing element's key can be a number + // eslint-disable-next-line react-internal/safe-string-coercion + sa("" + ct.key) + "/" + ) : "") + Tt + )), C.push(ct)); + return 1; + } + var It, nt, Qt = 0, vn = F === "" ? ln : F + qn; + if (En(h)) + for (var El = 0; El < h.length; El++) + It = h[El], nt = vn + Sr(It, El), Qt += Ra(It, C, N, nt, q); + else { + var Wo = ft(h); + if (typeof Wo == "function") { + var Pi = h; + Wo === Pi.entries && (Bt || Dt("Using Maps as children is not supported. Use an array of keyed ReactElements instead."), Bt = !0); + for (var Go = Wo.call(Pi), lu, Wf = 0; !(lu = Go.next()).done; ) + It = lu.value, nt = vn + Sr(It, Wf++), Qt += Ra(It, C, N, nt, q); + } else if (Oe === "object") { + var lc = String(h); + throw new Error("Objects are not valid as a React child (found: " + (lc === "[object Object]" ? "object with keys {" + Object.keys(h).join(", ") + "}" : lc) + "). If you meant to render a collection of children, use an array instead."); + } + } + return Qt; + } + function Fi(h, C, N) { + if (h == null) + return h; + var F = [], q = 0; + return Ra(h, F, "", "", function(Oe) { + return C.call(N, Oe, q++); + }), F; + } + function Kl(h) { + var C = 0; + return Fi(h, function() { + C++; + }), C; + } + function Jl(h, C, N) { + Fi(h, function() { + C.apply(this, arguments); + }, N); + } + function fl(h) { + return Fi(h, function(C) { + return C; + }) || []; + } + function dl(h) { + if (!pn(h)) + throw new Error("React.Children.only expected to receive a single React element child."); + return h; + } + function Zl(h) { + var C = { + $$typeof: ve, + // As a workaround to support multiple concurrent renderers, we categorize + // some renderers as primary and others as secondary. We only expect + // there to be two concurrent renderers at most: React Native (primary) and + // Fabric (secondary); React DOM (primary) and React ART (secondary). + // Secondary renderers store their context values on separate fields. + _currentValue: h, + _currentValue2: h, + // Used to track how many concurrent renderers this context currently + // supports within in a single renderer. Such as parallel server rendering. + _threadCount: 0, + // These are circular + Provider: null, + Consumer: null, + // Add these to use same hidden class in VM as ServerContext + _defaultValue: null, + _globalName: null + }; + C.Provider = { + $$typeof: de, + _context: C + }; + var N = !1, F = !1, q = !1; + { + var Oe = { + $$typeof: ve, + _context: C + }; + Object.defineProperties(Oe, { + Provider: { + get: function() { + return F || (F = !0, Ee("Rendering is not supported and will be removed in a future major release. Did you mean to render instead?")), C.Provider; + }, + set: function(re) { + C.Provider = re; + } + }, + _currentValue: { + get: function() { + return C._currentValue; + }, + set: function(re) { + C._currentValue = re; + } + }, + _currentValue2: { + get: function() { + return C._currentValue2; + }, + set: function(re) { + C._currentValue2 = re; + } + }, + _threadCount: { + get: function() { + return C._threadCount; + }, + set: function(re) { + C._threadCount = re; + } + }, + Consumer: { + get: function() { + return N || (N = !0, Ee("Rendering is not supported and will be removed in a future major release. Did you mean to render instead?")), C.Consumer; + } + }, + displayName: { + get: function() { + return C.displayName; + }, + set: function(re) { + q || (Dt("Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = '%s'.", re), q = !0); + } + } + }), C.Consumer = Oe; + } + return C._currentRenderer = null, C._currentRenderer2 = null, C; + } + var xr = -1, _r = 0, nr = 1, ci = 2; + function Ia(h) { + if (h._status === xr) { + var C = h._result, N = C(); + if (N.then(function(Oe) { + if (h._status === _r || h._status === xr) { + var re = h; + re._status = nr, re._result = Oe; + } + }, function(Oe) { + if (h._status === _r || h._status === xr) { + var re = h; + re._status = ci, re._result = Oe; + } + }), h._status === xr) { + var F = h; + F._status = _r, F._result = N; + } + } + if (h._status === nr) { + var q = h._result; + return q === void 0 && Ee(`lazy: Expected the result of a dynamic import() call. Instead received: %s + +Your code should look like: + const MyComponent = lazy(() => import('./MyComponent')) + +Did you accidentally put curly braces around the import?`, q), "default" in q || Ee(`lazy: Expected the result of a dynamic import() call. Instead received: %s + +Your code should look like: + const MyComponent = lazy(() => import('./MyComponent'))`, q), q.default; + } else + throw h._result; + } + function fi(h) { + var C = { + // We use these fields to store the result. + _status: xr, + _result: h + }, N = { + $$typeof: Ye, + _payload: C, + _init: Ia + }; + { + var F, q; + Object.defineProperties(N, { + defaultProps: { + configurable: !0, + get: function() { + return F; + }, + set: function(Oe) { + Ee("React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."), F = Oe, Object.defineProperty(N, "defaultProps", { + enumerable: !0 + }); + } + }, + propTypes: { + configurable: !0, + get: function() { + return q; + }, + set: function(Oe) { + Ee("React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."), q = Oe, Object.defineProperty(N, "propTypes", { + enumerable: !0 + }); + } + } + }); + } + return N; + } + function di(h) { + h != null && h.$$typeof === ue ? Ee("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).") : typeof h != "function" ? Ee("forwardRef requires a render function but was given %s.", h === null ? "null" : typeof h) : h.length !== 0 && h.length !== 2 && Ee("forwardRef render functions accept exactly two parameters: props and ref. %s", h.length === 1 ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined."), h != null && (h.defaultProps != null || h.propTypes != null) && Ee("forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?"); + var C = { + $$typeof: ut, + render: h + }; + { + var N; + Object.defineProperty(C, "displayName", { + enumerable: !1, + configurable: !0, + get: function() { + return N; + }, + set: function(F) { + N = F, !h.name && !h.displayName && (h.displayName = F); + } + }); + } + return C; + } + var R; + R = Symbol.for("react.module.reference"); + function B(h) { + return !!(typeof h == "string" || typeof h == "function" || h === mt || h === Vt || Ut || h === S || h === ee || h === Ce || ke || h === yt || Kt || an || xt || typeof h == "object" && h !== null && (h.$$typeof === Ye || h.$$typeof === ue || h.$$typeof === de || h.$$typeof === ve || h.$$typeof === ut || // This needs to include all possible module reference object + // types supported by any Flight configuration anywhere since + // we don't know which Flight build this will end up being used + // with. + h.$$typeof === R || h.getModuleId !== void 0)); + } + function ae(h, C) { + B(h) || Ee("memo: The first argument must be a component. Instead received: %s", h === null ? "null" : typeof h); + var N = { + $$typeof: ue, + type: h, + compare: C === void 0 ? null : C + }; + { + var F; + Object.defineProperty(N, "displayName", { + enumerable: !1, + configurable: !0, + get: function() { + return F; + }, + set: function(q) { + F = q, !h.name && !h.displayName && (h.displayName = q); + } + }); + } + return N; + } + function he() { + var h = Ie.current; + return h === null && Ee(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons: +1. You might have mismatching versions of React and the renderer (such as React DOM) +2. You might be breaking the Rules of Hooks +3. You might have more than one copy of React in the same app +See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.`), h; + } + function We(h) { + var C = he(); + if (h._context !== void 0) { + var N = h._context; + N.Consumer === h ? Ee("Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?") : N.Provider === h && Ee("Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?"); + } + return C.useContext(h); + } + function Be(h) { + var C = he(); + return C.useState(h); + } + function st(h, C, N) { + var F = he(); + return F.useReducer(h, C, N); + } + function it(h) { + var C = he(); + return C.useRef(h); + } + function Rn(h, C) { + var N = he(); + return N.useEffect(h, C); + } + function en(h, C) { + var N = he(); + return N.useInsertionEffect(h, C); + } + function un(h, C) { + var N = he(); + return N.useLayoutEffect(h, C); + } + function rr(h, C) { + var N = he(); + return N.useCallback(h, C); + } + function Qa(h, C) { + var N = he(); + return N.useMemo(h, C); + } + function Wa(h, C, N) { + var F = he(); + return F.useImperativeHandle(h, C, N); + } + function Ge(h, C) { + { + var N = he(); + return N.useDebugValue(h, C); + } + } + function Ke() { + var h = he(); + return h.useTransition(); + } + function Ga(h) { + var C = he(); + return C.useDeferredValue(h); + } + function eu() { + var h = he(); + return h.useId(); + } + function tu(h, C, N) { + var F = he(); + return F.useSyncExternalStore(h, C, N); + } + var pl = 0, Iu, vl, Yr, $o, br, ac, ic; + function Qu() { + } + Qu.__reactDisabledLog = !0; + function hl() { + { + if (pl === 0) { + Iu = console.log, vl = console.info, Yr = console.warn, $o = console.error, br = console.group, ac = console.groupCollapsed, ic = console.groupEnd; + var h = { + configurable: !0, + enumerable: !0, + value: Qu, + writable: !0 + }; + Object.defineProperties(console, { + info: h, + log: h, + warn: h, + error: h, + group: h, + groupCollapsed: h, + groupEnd: h + }); + } + pl++; + } + } + function ca() { + { + if (pl--, pl === 0) { + var h = { + configurable: !0, + enumerable: !0, + writable: !0 + }; + Object.defineProperties(console, { + log: P({}, h, { + value: Iu + }), + info: P({}, h, { + value: vl + }), + warn: P({}, h, { + value: Yr + }), + error: P({}, h, { + value: $o + }), + group: P({}, h, { + value: br + }), + groupCollapsed: P({}, h, { + value: ac + }), + groupEnd: P({}, h, { + value: ic + }) + }); + } + pl < 0 && Ee("disabledDepth fell below zero. This is a bug in React. Please file an issue."); + } + } + var qa = _t.ReactCurrentDispatcher, Xa; + function Wu(h, C, N) { + { + if (Xa === void 0) + try { + throw Error(); + } catch (q) { + var F = q.stack.trim().match(/\n( *(at )?)/); + Xa = F && F[1] || ""; + } + return ` +` + Xa + h; + } + } + var nu = !1, ml; + { + var Gu = typeof WeakMap == "function" ? WeakMap : Map; + ml = new Gu(); + } + function qu(h, C) { + if (!h || nu) + return ""; + { + var N = ml.get(h); + if (N !== void 0) + return N; + } + var F; + nu = !0; + var q = Error.prepareStackTrace; + Error.prepareStackTrace = void 0; + var Oe; + Oe = qa.current, qa.current = null, hl(); + try { + if (C) { + var re = function() { + throw Error(); + }; + if (Object.defineProperty(re.prototype, "props", { + set: function() { + throw Error(); + } + }), typeof Reflect == "object" && Reflect.construct) { + try { + Reflect.construct(re, []); + } catch (vn) { + F = vn; + } + Reflect.construct(h, [], re); + } else { + try { + re.call(); + } catch (vn) { + F = vn; + } + h.call(re.prototype); + } + } else { + try { + throw Error(); + } catch (vn) { + F = vn; + } + h(); + } + } catch (vn) { + if (vn && F && typeof vn.stack == "string") { + for (var Ne = vn.stack.split(` +`), ct = F.stack.split(` +`), Tt = Ne.length - 1, tn = ct.length - 1; Tt >= 1 && tn >= 0 && Ne[Tt] !== ct[tn]; ) + tn--; + for (; Tt >= 1 && tn >= 0; Tt--, tn--) + if (Ne[Tt] !== ct[tn]) { + if (Tt !== 1 || tn !== 1) + do + if (Tt--, tn--, tn < 0 || Ne[Tt] !== ct[tn]) { + var It = ` +` + Ne[Tt].replace(" at new ", " at "); + return h.displayName && It.includes("") && (It = It.replace("", h.displayName)), typeof h == "function" && ml.set(h, It), It; + } + while (Tt >= 1 && tn >= 0); + break; + } + } + } finally { + nu = !1, qa.current = Oe, ca(), Error.prepareStackTrace = q; + } + var nt = h ? h.displayName || h.name : "", Qt = nt ? Wu(nt) : ""; + return typeof h == "function" && ml.set(h, Qt), Qt; + } + function ji(h, C, N) { + return qu(h, !1); + } + function If(h) { + var C = h.prototype; + return !!(C && C.isReactComponent); + } + function Hi(h, C, N) { + if (h == null) + return ""; + if (typeof h == "function") + return qu(h, If(h)); + if (typeof h == "string") + return Wu(h); + switch (h) { + case ee: + return Wu("Suspense"); + case Ce: + return Wu("SuspenseList"); + } + if (typeof h == "object") + switch (h.$$typeof) { + case ut: + return ji(h.render); + case ue: + return Hi(h.type, C, N); + case Ye: { + var F = h, q = F._payload, Oe = F._init; + try { + return Hi(Oe(q), C, N); + } catch { + } + } + } + return ""; + } + var kt = {}, Xu = _t.ReactDebugCurrentFrame; + function Rt(h) { + if (h) { + var C = h._owner, N = Hi(h.type, h._source, C ? C.type : null); + Xu.setExtraStackFrame(N); + } else + Xu.setExtraStackFrame(null); + } + function Yo(h, C, N, F, q) { + { + var Oe = Function.call.bind(Cn); + for (var re in h) + if (Oe(h, re)) { + var Ne = void 0; + try { + if (typeof h[re] != "function") { + var ct = Error((F || "React class") + ": " + N + " type `" + re + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof h[re] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`."); + throw ct.name = "Invariant Violation", ct; + } + Ne = h[re](C, re, F, N, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"); + } catch (Tt) { + Ne = Tt; + } + Ne && !(Ne instanceof Error) && (Rt(q), Ee("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", F || "React class", N, re, typeof Ne), Rt(null)), Ne instanceof Error && !(Ne.message in kt) && (kt[Ne.message] = !0, Rt(q), Ee("Failed %s type: %s", N, Ne.message), Rt(null)); + } + } + } + function pi(h) { + if (h) { + var C = h._owner, N = Hi(h.type, h._source, C ? C.type : null); + Ft(N); + } else + Ft(null); + } + var Ve; + Ve = !1; + function Ku() { + if (ot.current) { + var h = Gn(ot.current.type); + if (h) + return ` + +Check the render method of \`` + h + "`."; + } + return ""; + } + function ar(h) { + if (h !== void 0) { + var C = h.fileName.replace(/^.*[\\\/]/, ""), N = h.lineNumber; + return ` + +Check your code at ` + C + ":" + N + "."; + } + return ""; + } + function vi(h) { + return h != null ? ar(h.__source) : ""; + } + var Dr = {}; + function hi(h) { + var C = Ku(); + if (!C) { + var N = typeof h == "string" ? h : h.displayName || h.name; + N && (C = ` + +Check the top-level render call using <` + N + ">."); + } + return C; + } + function on(h, C) { + if (!(!h._store || h._store.validated || h.key != null)) { + h._store.validated = !0; + var N = hi(C); + if (!Dr[N]) { + Dr[N] = !0; + var F = ""; + h && h._owner && h._owner !== ot.current && (F = " It was passed a child from " + Gn(h._owner.type) + "."), pi(h), Ee('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', N, F), pi(null); + } + } + } + function Yt(h, C) { + if (typeof h == "object") { + if (En(h)) + for (var N = 0; N < h.length; N++) { + var F = h[N]; + pn(F) && on(F, C); + } + else if (pn(h)) + h._store && (h._store.validated = !0); + else if (h) { + var q = ft(h); + if (typeof q == "function" && q !== h.entries) + for (var Oe = q.call(h), re; !(re = Oe.next()).done; ) + pn(re.value) && on(re.value, C); + } + } + } + function yl(h) { + { + var C = h.type; + if (C == null || typeof C == "string") + return; + var N; + if (typeof C == "function") + N = C.propTypes; + else if (typeof C == "object" && (C.$$typeof === ut || // Note: Memo only checks outer props here. + // Inner props are checked in the reconciler. + C.$$typeof === ue)) + N = C.propTypes; + else + return; + if (N) { + var F = Gn(C); + Yo(N, h.props, "prop", F, h); + } else if (C.PropTypes !== void 0 && !Ve) { + Ve = !0; + var q = Gn(C); + Ee("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", q || "Unknown"); + } + typeof C.getDefaultProps == "function" && !C.getDefaultProps.isReactClassApproved && Ee("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead."); + } + } + function $n(h) { + { + for (var C = Object.keys(h.props), N = 0; N < C.length; N++) { + var F = C[N]; + if (F !== "children" && F !== "key") { + pi(h), Ee("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", F), pi(null); + break; + } + } + h.ref !== null && (pi(h), Ee("Invalid attribute `ref` supplied to `React.Fragment`."), pi(null)); + } + } + function kr(h, C, N) { + var F = B(h); + if (!F) { + var q = ""; + (h === void 0 || typeof h == "object" && h !== null && Object.keys(h).length === 0) && (q += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."); + var Oe = vi(C); + Oe ? q += Oe : q += Ku(); + var re; + h === null ? re = "null" : En(h) ? re = "array" : h !== void 0 && h.$$typeof === wt ? (re = "<" + (Gn(h.type) || "Unknown") + " />", q = " Did you accidentally export a JSX literal instead of a component?") : re = typeof h, Ee("React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", re, q); + } + var Ne = tt.apply(this, arguments); + if (Ne == null) + return Ne; + if (F) + for (var ct = 2; ct < arguments.length; ct++) + Yt(arguments[ct], h); + return h === mt ? $n(Ne) : yl(Ne), Ne; + } + var Ta = !1; + function ru(h) { + var C = kr.bind(null, h); + return C.type = h, Ta || (Ta = !0, Dt("React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.")), Object.defineProperty(C, "type", { + enumerable: !1, + get: function() { + return Dt("Factory.type is deprecated. Access the class directly before passing it to createFactory."), Object.defineProperty(this, "type", { + value: h + }), h; + } + }), C; + } + function Io(h, C, N) { + for (var F = Jt.apply(this, arguments), q = 2; q < arguments.length; q++) + Yt(arguments[q], F.type); + return yl(F), F; + } + function Qo(h, C) { + var N = pt.transition; + pt.transition = {}; + var F = pt.transition; + pt.transition._updatedFibers = /* @__PURE__ */ new Set(); + try { + h(); + } finally { + if (pt.transition = N, N === null && F._updatedFibers) { + var q = F._updatedFibers.size; + q > 10 && Dt("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."), F._updatedFibers.clear(); + } + } + } + var gl = !1, au = null; + function Qf(h) { + if (au === null) + try { + var C = ("require" + Math.random()).slice(0, 7), N = Z && Z[C]; + au = N.call(Z, "timers").setImmediate; + } catch { + au = function(q) { + gl === !1 && (gl = !0, typeof MessageChannel > "u" && Ee("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.")); + var Oe = new MessageChannel(); + Oe.port1.onmessage = q, Oe.port2.postMessage(void 0); + }; + } + return au(h); + } + var wa = 0, Ka = !1; + function mi(h) { + { + var C = wa; + wa++, _e.current === null && (_e.current = []); + var N = _e.isBatchingLegacy, F; + try { + if (_e.isBatchingLegacy = !0, F = h(), !N && _e.didScheduleLegacyUpdate) { + var q = _e.current; + q !== null && (_e.didScheduleLegacyUpdate = !1, Sl(q)); + } + } catch (nt) { + throw xa(C), nt; + } finally { + _e.isBatchingLegacy = N; + } + if (F !== null && typeof F == "object" && typeof F.then == "function") { + var Oe = F, re = !1, Ne = { + then: function(nt, Qt) { + re = !0, Oe.then(function(vn) { + xa(C), wa === 0 ? Ju(vn, nt, Qt) : nt(vn); + }, function(vn) { + xa(C), Qt(vn); + }); + } + }; + return !Ka && typeof Promise < "u" && Promise.resolve().then(function() { + }).then(function() { + re || (Ka = !0, Ee("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);")); + }), Ne; + } else { + var ct = F; + if (xa(C), wa === 0) { + var Tt = _e.current; + Tt !== null && (Sl(Tt), _e.current = null); + var tn = { + then: function(nt, Qt) { + _e.current === null ? (_e.current = [], Ju(ct, nt, Qt)) : nt(ct); + } + }; + return tn; + } else { + var It = { + then: function(nt, Qt) { + nt(ct); + } + }; + return It; + } + } + } + } + function xa(h) { + h !== wa - 1 && Ee("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "), wa = h; + } + function Ju(h, C, N) { + { + var F = _e.current; + if (F !== null) + try { + Sl(F), Qf(function() { + F.length === 0 ? (_e.current = null, C(h)) : Ju(h, C, N); + }); + } catch (q) { + N(q); + } + else + C(h); + } + } + var Zu = !1; + function Sl(h) { + if (!Zu) { + Zu = !0; + var C = 0; + try { + for (; C < h.length; C++) { + var N = h[C]; + do + N = N(!0); + while (N !== null); + } + h.length = 0; + } catch (F) { + throw h = h.slice(C + 1), F; + } finally { + Zu = !1; + } + } + } + var iu = kr, eo = Io, to = ru, Ja = { + map: Fi, + forEach: Jl, + count: Kl, + toArray: fl, + only: dl + }; + X.Children = Ja, X.Component = Ue, X.Fragment = mt, X.Profiler = Vt, X.PureComponent = at, X.StrictMode = S, X.Suspense = ee, X.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = _t, X.act = mi, X.cloneElement = eo, X.createContext = Zl, X.createElement = iu, X.createFactory = to, X.createRef = kn, X.forwardRef = di, X.isValidElement = pn, X.lazy = fi, X.memo = ae, X.startTransition = Qo, X.unstable_act = mi, X.useCallback = rr, X.useContext = We, X.useDebugValue = Ge, X.useDeferredValue = Ga, X.useEffect = Rn, X.useId = eu, X.useImperativeHandle = Wa, X.useInsertionEffect = en, X.useLayoutEffect = un, X.useMemo = Qa, X.useReducer = st, X.useRef = it, X.useState = Be, X.useSyncExternalStore = tu, X.useTransition = Ke, X.version = A, typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error()); + }(); + }(Jp, Jp.exports)), Jp.exports; +} +var KR; +function Zp() { + return KR || (KR = 1, process.env.NODE_ENV === "production" ? Qm.exports = Xb() : Qm.exports = Kb()), Qm.exports; +} +/** + * @license React + * react-jsx-runtime.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +var JR; +function Jb() { + if (JR) return Xp; + JR = 1; + var Z = Zp(), X = Symbol.for("react.element"), A = Symbol.for("react.fragment"), wt = Object.prototype.hasOwnProperty, Je = Z.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, mt = { key: !0, ref: !0, __self: !0, __source: !0 }; + function S(Vt, de, ve) { + var ut, ee = {}, Ce = null, ue = null; + ve !== void 0 && (Ce = "" + ve), de.key !== void 0 && (Ce = "" + de.key), de.ref !== void 0 && (ue = de.ref); + for (ut in de) wt.call(de, ut) && !mt.hasOwnProperty(ut) && (ee[ut] = de[ut]); + if (Vt && Vt.defaultProps) for (ut in de = Vt.defaultProps, de) ee[ut] === void 0 && (ee[ut] = de[ut]); + return { $$typeof: X, type: Vt, key: Ce, ref: ue, props: ee, _owner: Je.current }; + } + return Xp.Fragment = A, Xp.jsx = S, Xp.jsxs = S, Xp; +} +var Kp = {}; +/** + * @license React + * react-jsx-runtime.development.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +var ZR; +function Zb() { + return ZR || (ZR = 1, process.env.NODE_ENV !== "production" && function() { + var Z = Zp(), X = Symbol.for("react.element"), A = Symbol.for("react.portal"), wt = Symbol.for("react.fragment"), Je = Symbol.for("react.strict_mode"), mt = Symbol.for("react.profiler"), S = Symbol.for("react.provider"), Vt = Symbol.for("react.context"), de = Symbol.for("react.forward_ref"), ve = Symbol.for("react.suspense"), ut = Symbol.for("react.suspense_list"), ee = Symbol.for("react.memo"), Ce = Symbol.for("react.lazy"), ue = Symbol.for("react.offscreen"), Ye = Symbol.iterator, yt = "@@iterator"; + function dt(R) { + if (R === null || typeof R != "object") + return null; + var B = Ye && R[Ye] || R[yt]; + return typeof B == "function" ? B : null; + } + var cn = Z.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; + function ft(R) { + { + for (var B = arguments.length, ae = new Array(B > 1 ? B - 1 : 0), he = 1; he < B; he++) + ae[he - 1] = arguments[he]; + Ie("error", R, ae); + } + } + function Ie(R, B, ae) { + { + var he = cn.ReactDebugCurrentFrame, We = he.getStackAddendum(); + We !== "" && (B += "%s", ae = ae.concat([We])); + var Be = ae.map(function(st) { + return String(st); + }); + Be.unshift("Warning: " + B), Function.prototype.apply.call(console[R], console, Be); + } + } + var pt = !1, _e = !1, ot = !1, Fe = !1, rn = !1, Ft; + Ft = Symbol.for("react.module.reference"); + function Kt(R) { + return !!(typeof R == "string" || typeof R == "function" || R === wt || R === mt || rn || R === Je || R === ve || R === ut || Fe || R === ue || pt || _e || ot || typeof R == "object" && R !== null && (R.$$typeof === Ce || R.$$typeof === ee || R.$$typeof === S || R.$$typeof === Vt || R.$$typeof === de || // This needs to include all possible module reference object + // types supported by any Flight configuration anywhere since + // we don't know which Flight build this will end up being used + // with. + R.$$typeof === Ft || R.getModuleId !== void 0)); + } + function an(R, B, ae) { + var he = R.displayName; + if (he) + return he; + var We = B.displayName || B.name || ""; + return We !== "" ? ae + "(" + We + ")" : ae; + } + function xt(R) { + return R.displayName || "Context"; + } + function ke(R) { + if (R == null) + return null; + if (typeof R.tag == "number" && ft("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof R == "function") + return R.displayName || R.name || null; + if (typeof R == "string") + return R; + switch (R) { + case wt: + return "Fragment"; + case A: + return "Portal"; + case mt: + return "Profiler"; + case Je: + return "StrictMode"; + case ve: + return "Suspense"; + case ut: + return "SuspenseList"; + } + if (typeof R == "object") + switch (R.$$typeof) { + case Vt: + var B = R; + return xt(B) + ".Consumer"; + case S: + var ae = R; + return xt(ae._context) + ".Provider"; + case de: + return an(R, R.render, "ForwardRef"); + case ee: + var he = R.displayName || null; + return he !== null ? he : ke(R.type) || "Memo"; + case Ce: { + var We = R, Be = We._payload, st = We._init; + try { + return ke(st(Be)); + } catch { + return null; + } + } + } + return null; + } + var Ut = Object.assign, _t = 0, Dt, Ee, K, Re, ne, b, P; + function je() { + } + je.__reactDisabledLog = !0; + function Ue() { + { + if (_t === 0) { + Dt = console.log, Ee = console.info, K = console.warn, Re = console.error, ne = console.group, b = console.groupCollapsed, P = console.groupEnd; + var R = { + configurable: !0, + enumerable: !0, + value: je, + writable: !0 + }; + Object.defineProperties(console, { + info: R, + log: R, + warn: R, + error: R, + group: R, + groupCollapsed: R, + groupEnd: R + }); + } + _t++; + } + } + function rt() { + { + if (_t--, _t === 0) { + var R = { + configurable: !0, + enumerable: !0, + writable: !0 + }; + Object.defineProperties(console, { + log: Ut({}, R, { + value: Dt + }), + info: Ut({}, R, { + value: Ee + }), + warn: Ut({}, R, { + value: K + }), + error: Ut({}, R, { + value: Re + }), + group: Ut({}, R, { + value: ne + }), + groupCollapsed: Ut({}, R, { + value: b + }), + groupEnd: Ut({}, R, { + value: P + }) + }); + } + _t < 0 && ft("disabledDepth fell below zero. This is a bug in React. Please file an issue."); + } + } + var Ze = cn.ReactCurrentDispatcher, Xe; + function et(R, B, ae) { + { + if (Xe === void 0) + try { + throw Error(); + } catch (We) { + var he = We.stack.trim().match(/\n( *(at )?)/); + Xe = he && he[1] || ""; + } + return ` +` + Xe + R; + } + } + var at = !1, Pt; + { + var kn = typeof WeakMap == "function" ? WeakMap : Map; + Pt = new kn(); + } + function wr(R, B) { + if (!R || at) + return ""; + { + var ae = Pt.get(R); + if (ae !== void 0) + return ae; + } + var he; + at = !0; + var We = Error.prepareStackTrace; + Error.prepareStackTrace = void 0; + var Be; + Be = Ze.current, Ze.current = null, Ue(); + try { + if (B) { + var st = function() { + throw Error(); + }; + if (Object.defineProperty(st.prototype, "props", { + set: function() { + throw Error(); + } + }), typeof Reflect == "object" && Reflect.construct) { + try { + Reflect.construct(st, []); + } catch (Ge) { + he = Ge; + } + Reflect.construct(R, [], st); + } else { + try { + st.call(); + } catch (Ge) { + he = Ge; + } + R.call(st.prototype); + } + } else { + try { + throw Error(); + } catch (Ge) { + he = Ge; + } + R(); + } + } catch (Ge) { + if (Ge && he && typeof Ge.stack == "string") { + for (var it = Ge.stack.split(` +`), Rn = he.stack.split(` +`), en = it.length - 1, un = Rn.length - 1; en >= 1 && un >= 0 && it[en] !== Rn[un]; ) + un--; + for (; en >= 1 && un >= 0; en--, un--) + if (it[en] !== Rn[un]) { + if (en !== 1 || un !== 1) + do + if (en--, un--, un < 0 || it[en] !== Rn[un]) { + var rr = ` +` + it[en].replace(" at new ", " at "); + return R.displayName && rr.includes("") && (rr = rr.replace("", R.displayName)), typeof R == "function" && Pt.set(R, rr), rr; + } + while (en >= 1 && un >= 0); + break; + } + } + } finally { + at = !1, Ze.current = Be, rt(), Error.prepareStackTrace = We; + } + var Qa = R ? R.displayName || R.name : "", Wa = Qa ? et(Qa) : ""; + return typeof R == "function" && Pt.set(R, Wa), Wa; + } + function En(R, B, ae) { + return wr(R, !1); + } + function tr(R) { + var B = R.prototype; + return !!(B && B.isReactComponent); + } + function Pn(R, B, ae) { + if (R == null) + return ""; + if (typeof R == "function") + return wr(R, tr(R)); + if (typeof R == "string") + return et(R); + switch (R) { + case ve: + return et("Suspense"); + case ut: + return et("SuspenseList"); + } + if (typeof R == "object") + switch (R.$$typeof) { + case de: + return En(R.render); + case ee: + return Pn(R.type, B, ae); + case Ce: { + var he = R, We = he._payload, Be = he._init; + try { + return Pn(Be(We), B, ae); + } catch { + } + } + } + return ""; + } + var Vn = Object.prototype.hasOwnProperty, $r = {}, oi = cn.ReactDebugCurrentFrame; + function ua(R) { + if (R) { + var B = R._owner, ae = Pn(R.type, R._source, B ? B.type : null); + oi.setExtraStackFrame(ae); + } else + oi.setExtraStackFrame(null); + } + function Gn(R, B, ae, he, We) { + { + var Be = Function.call.bind(Vn); + for (var st in R) + if (Be(R, st)) { + var it = void 0; + try { + if (typeof R[st] != "function") { + var Rn = Error((he || "React class") + ": " + ae + " type `" + st + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof R[st] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`."); + throw Rn.name = "Invariant Violation", Rn; + } + it = R[st](B, st, he, ae, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"); + } catch (en) { + it = en; + } + it && !(it instanceof Error) && (ua(We), ft("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", he || "React class", ae, st, typeof it), ua(null)), it instanceof Error && !(it.message in $r) && ($r[it.message] = !0, ua(We), ft("Failed %s type: %s", ae, it.message), ua(null)); + } + } + } + var Cn = Array.isArray; + function Bn(R) { + return Cn(R); + } + function yr(R) { + { + var B = typeof Symbol == "function" && Symbol.toStringTag, ae = B && R[Symbol.toStringTag] || R.constructor.name || "Object"; + return ae; + } + } + function $a(R) { + try { + return On(R), !1; + } catch { + return !0; + } + } + function On(R) { + return "" + R; + } + function gr(R) { + if ($a(R)) + return ft("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", yr(R)), On(R); + } + var oa = cn.ReactCurrentOwner, Ya = { + key: !0, + ref: !0, + __self: !0, + __source: !0 + }, si, J; + function Te(R) { + if (Vn.call(R, "ref")) { + var B = Object.getOwnPropertyDescriptor(R, "ref").get; + if (B && B.isReactWarning) + return !1; + } + return R.ref !== void 0; + } + function tt(R) { + if (Vn.call(R, "key")) { + var B = Object.getOwnPropertyDescriptor(R, "key").get; + if (B && B.isReactWarning) + return !1; + } + return R.key !== void 0; + } + function At(R, B) { + typeof R.ref == "string" && oa.current; + } + function Jt(R, B) { + { + var ae = function() { + si || (si = !0, ft("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", B)); + }; + ae.isReactWarning = !0, Object.defineProperty(R, "key", { + get: ae, + configurable: !0 + }); + } + } + function pn(R, B) { + { + var ae = function() { + J || (J = !0, ft("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", B)); + }; + ae.isReactWarning = !0, Object.defineProperty(R, "ref", { + get: ae, + configurable: !0 + }); + } + } + var ln = function(R, B, ae, he, We, Be, st) { + var it = { + // This tag allows us to uniquely identify this as a React Element + $$typeof: X, + // Built-in properties that belong on the element + type: R, + key: B, + ref: ae, + props: st, + // Record the component responsible for creating this element. + _owner: Be + }; + return it._store = {}, Object.defineProperty(it._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: !1 + }), Object.defineProperty(it, "_self", { + configurable: !1, + enumerable: !1, + writable: !1, + value: he + }), Object.defineProperty(it, "_source", { + configurable: !1, + enumerable: !1, + writable: !1, + value: We + }), Object.freeze && (Object.freeze(it.props), Object.freeze(it)), it; + }; + function qn(R, B, ae, he, We) { + { + var Be, st = {}, it = null, Rn = null; + ae !== void 0 && (gr(ae), it = "" + ae), tt(B) && (gr(B.key), it = "" + B.key), Te(B) && (Rn = B.ref, At(B, We)); + for (Be in B) + Vn.call(B, Be) && !Ya.hasOwnProperty(Be) && (st[Be] = B[Be]); + if (R && R.defaultProps) { + var en = R.defaultProps; + for (Be in en) + st[Be] === void 0 && (st[Be] = en[Be]); + } + if (it || Rn) { + var un = typeof R == "function" ? R.displayName || R.name || "Unknown" : R; + it && Jt(st, un), Rn && pn(st, un); + } + return ln(R, it, Rn, We, he, oa.current, st); + } + } + var Zt = cn.ReactCurrentOwner, Bt = cn.ReactDebugCurrentFrame; + function $t(R) { + if (R) { + var B = R._owner, ae = Pn(R.type, R._source, B ? B.type : null); + Bt.setExtraStackFrame(ae); + } else + Bt.setExtraStackFrame(null); + } + var sa; + sa = !1; + function Sr(R) { + return typeof R == "object" && R !== null && R.$$typeof === X; + } + function Ra() { + { + if (Zt.current) { + var R = ke(Zt.current.type); + if (R) + return ` + +Check the render method of \`` + R + "`."; + } + return ""; + } + } + function Fi(R) { + return ""; + } + var Kl = {}; + function Jl(R) { + { + var B = Ra(); + if (!B) { + var ae = typeof R == "string" ? R : R.displayName || R.name; + ae && (B = ` + +Check the top-level render call using <` + ae + ">."); + } + return B; + } + } + function fl(R, B) { + { + if (!R._store || R._store.validated || R.key != null) + return; + R._store.validated = !0; + var ae = Jl(B); + if (Kl[ae]) + return; + Kl[ae] = !0; + var he = ""; + R && R._owner && R._owner !== Zt.current && (he = " It was passed a child from " + ke(R._owner.type) + "."), $t(R), ft('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', ae, he), $t(null); + } + } + function dl(R, B) { + { + if (typeof R != "object") + return; + if (Bn(R)) + for (var ae = 0; ae < R.length; ae++) { + var he = R[ae]; + Sr(he) && fl(he, B); + } + else if (Sr(R)) + R._store && (R._store.validated = !0); + else if (R) { + var We = dt(R); + if (typeof We == "function" && We !== R.entries) + for (var Be = We.call(R), st; !(st = Be.next()).done; ) + Sr(st.value) && fl(st.value, B); + } + } + } + function Zl(R) { + { + var B = R.type; + if (B == null || typeof B == "string") + return; + var ae; + if (typeof B == "function") + ae = B.propTypes; + else if (typeof B == "object" && (B.$$typeof === de || // Note: Memo only checks outer props here. + // Inner props are checked in the reconciler. + B.$$typeof === ee)) + ae = B.propTypes; + else + return; + if (ae) { + var he = ke(B); + Gn(ae, R.props, "prop", he, R); + } else if (B.PropTypes !== void 0 && !sa) { + sa = !0; + var We = ke(B); + ft("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", We || "Unknown"); + } + typeof B.getDefaultProps == "function" && !B.getDefaultProps.isReactClassApproved && ft("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead."); + } + } + function xr(R) { + { + for (var B = Object.keys(R.props), ae = 0; ae < B.length; ae++) { + var he = B[ae]; + if (he !== "children" && he !== "key") { + $t(R), ft("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", he), $t(null); + break; + } + } + R.ref !== null && ($t(R), ft("Invalid attribute `ref` supplied to `React.Fragment`."), $t(null)); + } + } + var _r = {}; + function nr(R, B, ae, he, We, Be) { + { + var st = Kt(R); + if (!st) { + var it = ""; + (R === void 0 || typeof R == "object" && R !== null && Object.keys(R).length === 0) && (it += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."); + var Rn = Fi(); + Rn ? it += Rn : it += Ra(); + var en; + R === null ? en = "null" : Bn(R) ? en = "array" : R !== void 0 && R.$$typeof === X ? (en = "<" + (ke(R.type) || "Unknown") + " />", it = " Did you accidentally export a JSX literal instead of a component?") : en = typeof R, ft("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", en, it); + } + var un = qn(R, B, ae, We, Be); + if (un == null) + return un; + if (st) { + var rr = B.children; + if (rr !== void 0) + if (he) + if (Bn(rr)) { + for (var Qa = 0; Qa < rr.length; Qa++) + dl(rr[Qa], R); + Object.freeze && Object.freeze(rr); + } else + ft("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."); + else + dl(rr, R); + } + if (Vn.call(B, "key")) { + var Wa = ke(R), Ge = Object.keys(B).filter(function(eu) { + return eu !== "key"; + }), Ke = Ge.length > 0 ? "{key: someKey, " + Ge.join(": ..., ") + ": ...}" : "{key: someKey}"; + if (!_r[Wa + Ke]) { + var Ga = Ge.length > 0 ? "{" + Ge.join(": ..., ") + ": ...}" : "{}"; + ft(`A props object containing a "key" prop is being spread into JSX: + let props = %s; + <%s {...props} /> +React keys must be passed directly to JSX without using spread: + let props = %s; + <%s key={someKey} {...props} />`, Ke, Wa, Ga, Wa), _r[Wa + Ke] = !0; + } + } + return R === wt ? xr(un) : Zl(un), un; + } + } + function ci(R, B, ae) { + return nr(R, B, ae, !0); + } + function Ia(R, B, ae) { + return nr(R, B, ae, !1); + } + var fi = Ia, di = ci; + Kp.Fragment = wt, Kp.jsx = fi, Kp.jsxs = di; + }()), Kp; +} +var eT; +function eD() { + return eT || (eT = 1, process.env.NODE_ENV === "production" ? Im.exports = Jb() : Im.exports = Zb()), Im.exports; +} +var tD = eD(), vE = Zp(), Yf = {}, Wm = { exports: {} }, Va = {}, Gm = { exports: {} }, dE = {}; +/** + * @license React + * scheduler.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +var tT; +function nD() { + return tT || (tT = 1, function(Z) { + function X(K, Re) { + var ne = K.length; + K.push(Re); + e: for (; 0 < ne; ) { + var b = ne - 1 >>> 1, P = K[b]; + if (0 < Je(P, Re)) K[b] = Re, K[ne] = P, ne = b; + else break e; + } + } + function A(K) { + return K.length === 0 ? null : K[0]; + } + function wt(K) { + if (K.length === 0) return null; + var Re = K[0], ne = K.pop(); + if (ne !== Re) { + K[0] = ne; + e: for (var b = 0, P = K.length, je = P >>> 1; b < je; ) { + var Ue = 2 * (b + 1) - 1, rt = K[Ue], Ze = Ue + 1, Xe = K[Ze]; + if (0 > Je(rt, ne)) Ze < P && 0 > Je(Xe, rt) ? (K[b] = Xe, K[Ze] = ne, b = Ze) : (K[b] = rt, K[Ue] = ne, b = Ue); + else if (Ze < P && 0 > Je(Xe, ne)) K[b] = Xe, K[Ze] = ne, b = Ze; + else break e; + } + } + return Re; + } + function Je(K, Re) { + var ne = K.sortIndex - Re.sortIndex; + return ne !== 0 ? ne : K.id - Re.id; + } + if (typeof performance == "object" && typeof performance.now == "function") { + var mt = performance; + Z.unstable_now = function() { + return mt.now(); + }; + } else { + var S = Date, Vt = S.now(); + Z.unstable_now = function() { + return S.now() - Vt; + }; + } + var de = [], ve = [], ut = 1, ee = null, Ce = 3, ue = !1, Ye = !1, yt = !1, dt = typeof setTimeout == "function" ? setTimeout : null, cn = typeof clearTimeout == "function" ? clearTimeout : null, ft = typeof setImmediate < "u" ? setImmediate : null; + typeof navigator < "u" && navigator.scheduling !== void 0 && navigator.scheduling.isInputPending !== void 0 && navigator.scheduling.isInputPending.bind(navigator.scheduling); + function Ie(K) { + for (var Re = A(ve); Re !== null; ) { + if (Re.callback === null) wt(ve); + else if (Re.startTime <= K) wt(ve), Re.sortIndex = Re.expirationTime, X(de, Re); + else break; + Re = A(ve); + } + } + function pt(K) { + if (yt = !1, Ie(K), !Ye) if (A(de) !== null) Ye = !0, Dt(_e); + else { + var Re = A(ve); + Re !== null && Ee(pt, Re.startTime - K); + } + } + function _e(K, Re) { + Ye = !1, yt && (yt = !1, cn(rn), rn = -1), ue = !0; + var ne = Ce; + try { + for (Ie(Re), ee = A(de); ee !== null && (!(ee.expirationTime > Re) || K && !an()); ) { + var b = ee.callback; + if (typeof b == "function") { + ee.callback = null, Ce = ee.priorityLevel; + var P = b(ee.expirationTime <= Re); + Re = Z.unstable_now(), typeof P == "function" ? ee.callback = P : ee === A(de) && wt(de), Ie(Re); + } else wt(de); + ee = A(de); + } + if (ee !== null) var je = !0; + else { + var Ue = A(ve); + Ue !== null && Ee(pt, Ue.startTime - Re), je = !1; + } + return je; + } finally { + ee = null, Ce = ne, ue = !1; + } + } + var ot = !1, Fe = null, rn = -1, Ft = 5, Kt = -1; + function an() { + return !(Z.unstable_now() - Kt < Ft); + } + function xt() { + if (Fe !== null) { + var K = Z.unstable_now(); + Kt = K; + var Re = !0; + try { + Re = Fe(!0, K); + } finally { + Re ? ke() : (ot = !1, Fe = null); + } + } else ot = !1; + } + var ke; + if (typeof ft == "function") ke = function() { + ft(xt); + }; + else if (typeof MessageChannel < "u") { + var Ut = new MessageChannel(), _t = Ut.port2; + Ut.port1.onmessage = xt, ke = function() { + _t.postMessage(null); + }; + } else ke = function() { + dt(xt, 0); + }; + function Dt(K) { + Fe = K, ot || (ot = !0, ke()); + } + function Ee(K, Re) { + rn = dt(function() { + K(Z.unstable_now()); + }, Re); + } + Z.unstable_IdlePriority = 5, Z.unstable_ImmediatePriority = 1, Z.unstable_LowPriority = 4, Z.unstable_NormalPriority = 3, Z.unstable_Profiling = null, Z.unstable_UserBlockingPriority = 2, Z.unstable_cancelCallback = function(K) { + K.callback = null; + }, Z.unstable_continueExecution = function() { + Ye || ue || (Ye = !0, Dt(_e)); + }, Z.unstable_forceFrameRate = function(K) { + 0 > K || 125 < K ? console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported") : Ft = 0 < K ? Math.floor(1e3 / K) : 5; + }, Z.unstable_getCurrentPriorityLevel = function() { + return Ce; + }, Z.unstable_getFirstCallbackNode = function() { + return A(de); + }, Z.unstable_next = function(K) { + switch (Ce) { + case 1: + case 2: + case 3: + var Re = 3; + break; + default: + Re = Ce; + } + var ne = Ce; + Ce = Re; + try { + return K(); + } finally { + Ce = ne; + } + }, Z.unstable_pauseExecution = function() { + }, Z.unstable_requestPaint = function() { + }, Z.unstable_runWithPriority = function(K, Re) { + switch (K) { + case 1: + case 2: + case 3: + case 4: + case 5: + break; + default: + K = 3; + } + var ne = Ce; + Ce = K; + try { + return Re(); + } finally { + Ce = ne; + } + }, Z.unstable_scheduleCallback = function(K, Re, ne) { + var b = Z.unstable_now(); + switch (typeof ne == "object" && ne !== null ? (ne = ne.delay, ne = typeof ne == "number" && 0 < ne ? b + ne : b) : ne = b, K) { + case 1: + var P = -1; + break; + case 2: + P = 250; + break; + case 5: + P = 1073741823; + break; + case 4: + P = 1e4; + break; + default: + P = 5e3; + } + return P = ne + P, K = { id: ut++, callback: Re, priorityLevel: K, startTime: ne, expirationTime: P, sortIndex: -1 }, ne > b ? (K.sortIndex = ne, X(ve, K), A(de) === null && K === A(ve) && (yt ? (cn(rn), rn = -1) : yt = !0, Ee(pt, ne - b))) : (K.sortIndex = P, X(de, K), Ye || ue || (Ye = !0, Dt(_e))), K; + }, Z.unstable_shouldYield = an, Z.unstable_wrapCallback = function(K) { + var Re = Ce; + return function() { + var ne = Ce; + Ce = Re; + try { + return K.apply(this, arguments); + } finally { + Ce = ne; + } + }; + }; + }(dE)), dE; +} +var pE = {}; +/** + * @license React + * scheduler.development.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +var nT; +function rD() { + return nT || (nT = 1, function(Z) { + process.env.NODE_ENV !== "production" && function() { + typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error()); + var X = !1, A = 5; + function wt(J, Te) { + var tt = J.length; + J.push(Te), S(J, Te, tt); + } + function Je(J) { + return J.length === 0 ? null : J[0]; + } + function mt(J) { + if (J.length === 0) + return null; + var Te = J[0], tt = J.pop(); + return tt !== Te && (J[0] = tt, Vt(J, tt, 0)), Te; + } + function S(J, Te, tt) { + for (var At = tt; At > 0; ) { + var Jt = At - 1 >>> 1, pn = J[Jt]; + if (de(pn, Te) > 0) + J[Jt] = Te, J[At] = pn, At = Jt; + else + return; + } + } + function Vt(J, Te, tt) { + for (var At = tt, Jt = J.length, pn = Jt >>> 1; At < pn; ) { + var ln = (At + 1) * 2 - 1, qn = J[ln], Zt = ln + 1, Bt = J[Zt]; + if (de(qn, Te) < 0) + Zt < Jt && de(Bt, qn) < 0 ? (J[At] = Bt, J[Zt] = Te, At = Zt) : (J[At] = qn, J[ln] = Te, At = ln); + else if (Zt < Jt && de(Bt, Te) < 0) + J[At] = Bt, J[Zt] = Te, At = Zt; + else + return; + } + } + function de(J, Te) { + var tt = J.sortIndex - Te.sortIndex; + return tt !== 0 ? tt : J.id - Te.id; + } + var ve = 1, ut = 2, ee = 3, Ce = 4, ue = 5; + function Ye(J, Te) { + } + var yt = typeof performance == "object" && typeof performance.now == "function"; + if (yt) { + var dt = performance; + Z.unstable_now = function() { + return dt.now(); + }; + } else { + var cn = Date, ft = cn.now(); + Z.unstable_now = function() { + return cn.now() - ft; + }; + } + var Ie = 1073741823, pt = -1, _e = 250, ot = 5e3, Fe = 1e4, rn = Ie, Ft = [], Kt = [], an = 1, xt = null, ke = ee, Ut = !1, _t = !1, Dt = !1, Ee = typeof setTimeout == "function" ? setTimeout : null, K = typeof clearTimeout == "function" ? clearTimeout : null, Re = typeof setImmediate < "u" ? setImmediate : null; + typeof navigator < "u" && navigator.scheduling !== void 0 && navigator.scheduling.isInputPending !== void 0 && navigator.scheduling.isInputPending.bind(navigator.scheduling); + function ne(J) { + for (var Te = Je(Kt); Te !== null; ) { + if (Te.callback === null) + mt(Kt); + else if (Te.startTime <= J) + mt(Kt), Te.sortIndex = Te.expirationTime, wt(Ft, Te); + else + return; + Te = Je(Kt); + } + } + function b(J) { + if (Dt = !1, ne(J), !_t) + if (Je(Ft) !== null) + _t = !0, On(P); + else { + var Te = Je(Kt); + Te !== null && gr(b, Te.startTime - J); + } + } + function P(J, Te) { + _t = !1, Dt && (Dt = !1, oa()), Ut = !0; + var tt = ke; + try { + var At; + if (!X) return je(J, Te); + } finally { + xt = null, ke = tt, Ut = !1; + } + } + function je(J, Te) { + var tt = Te; + for (ne(tt), xt = Je(Ft); xt !== null && !(xt.expirationTime > tt && (!J || oi())); ) { + var At = xt.callback; + if (typeof At == "function") { + xt.callback = null, ke = xt.priorityLevel; + var Jt = xt.expirationTime <= tt, pn = At(Jt); + tt = Z.unstable_now(), typeof pn == "function" ? xt.callback = pn : xt === Je(Ft) && mt(Ft), ne(tt); + } else + mt(Ft); + xt = Je(Ft); + } + if (xt !== null) + return !0; + var ln = Je(Kt); + return ln !== null && gr(b, ln.startTime - tt), !1; + } + function Ue(J, Te) { + switch (J) { + case ve: + case ut: + case ee: + case Ce: + case ue: + break; + default: + J = ee; + } + var tt = ke; + ke = J; + try { + return Te(); + } finally { + ke = tt; + } + } + function rt(J) { + var Te; + switch (ke) { + case ve: + case ut: + case ee: + Te = ee; + break; + default: + Te = ke; + break; + } + var tt = ke; + ke = Te; + try { + return J(); + } finally { + ke = tt; + } + } + function Ze(J) { + var Te = ke; + return function() { + var tt = ke; + ke = Te; + try { + return J.apply(this, arguments); + } finally { + ke = tt; + } + }; + } + function Xe(J, Te, tt) { + var At = Z.unstable_now(), Jt; + if (typeof tt == "object" && tt !== null) { + var pn = tt.delay; + typeof pn == "number" && pn > 0 ? Jt = At + pn : Jt = At; + } else + Jt = At; + var ln; + switch (J) { + case ve: + ln = pt; + break; + case ut: + ln = _e; + break; + case ue: + ln = rn; + break; + case Ce: + ln = Fe; + break; + case ee: + default: + ln = ot; + break; + } + var qn = Jt + ln, Zt = { + id: an++, + callback: Te, + priorityLevel: J, + startTime: Jt, + expirationTime: qn, + sortIndex: -1 + }; + return Jt > At ? (Zt.sortIndex = Jt, wt(Kt, Zt), Je(Ft) === null && Zt === Je(Kt) && (Dt ? oa() : Dt = !0, gr(b, Jt - At))) : (Zt.sortIndex = qn, wt(Ft, Zt), !_t && !Ut && (_t = !0, On(P))), Zt; + } + function et() { + } + function at() { + !_t && !Ut && (_t = !0, On(P)); + } + function Pt() { + return Je(Ft); + } + function kn(J) { + J.callback = null; + } + function wr() { + return ke; + } + var En = !1, tr = null, Pn = -1, Vn = A, $r = -1; + function oi() { + var J = Z.unstable_now() - $r; + return !(J < Vn); + } + function ua() { + } + function Gn(J) { + if (J < 0 || J > 125) { + console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"); + return; + } + J > 0 ? Vn = Math.floor(1e3 / J) : Vn = A; + } + var Cn = function() { + if (tr !== null) { + var J = Z.unstable_now(); + $r = J; + var Te = !0, tt = !0; + try { + tt = tr(Te, J); + } finally { + tt ? Bn() : (En = !1, tr = null); + } + } else + En = !1; + }, Bn; + if (typeof Re == "function") + Bn = function() { + Re(Cn); + }; + else if (typeof MessageChannel < "u") { + var yr = new MessageChannel(), $a = yr.port2; + yr.port1.onmessage = Cn, Bn = function() { + $a.postMessage(null); + }; + } else + Bn = function() { + Ee(Cn, 0); + }; + function On(J) { + tr = J, En || (En = !0, Bn()); + } + function gr(J, Te) { + Pn = Ee(function() { + J(Z.unstable_now()); + }, Te); + } + function oa() { + K(Pn), Pn = -1; + } + var Ya = ua, si = null; + Z.unstable_IdlePriority = ue, Z.unstable_ImmediatePriority = ve, Z.unstable_LowPriority = Ce, Z.unstable_NormalPriority = ee, Z.unstable_Profiling = si, Z.unstable_UserBlockingPriority = ut, Z.unstable_cancelCallback = kn, Z.unstable_continueExecution = at, Z.unstable_forceFrameRate = Gn, Z.unstable_getCurrentPriorityLevel = wr, Z.unstable_getFirstCallbackNode = Pt, Z.unstable_next = rt, Z.unstable_pauseExecution = et, Z.unstable_requestPaint = Ya, Z.unstable_runWithPriority = Ue, Z.unstable_scheduleCallback = Xe, Z.unstable_shouldYield = oi, Z.unstable_wrapCallback = Ze, typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error()); + }(); + }(pE)), pE; +} +var rT; +function oT() { + return rT || (rT = 1, process.env.NODE_ENV === "production" ? Gm.exports = nD() : Gm.exports = rD()), Gm.exports; +} +/** + * @license React + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +var aT; +function aD() { + if (aT) return Va; + aT = 1; + var Z = Zp(), X = oT(); + function A(n) { + for (var r = "https://reactjs.org/docs/error-decoder.html?invariant=" + n, l = 1; l < arguments.length; l++) r += "&args[]=" + encodeURIComponent(arguments[l]); + return "Minified React error #" + n + "; visit " + r + " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."; + } + var wt = /* @__PURE__ */ new Set(), Je = {}; + function mt(n, r) { + S(n, r), S(n + "Capture", r); + } + function S(n, r) { + for (Je[n] = r, n = 0; n < r.length; n++) wt.add(r[n]); + } + var Vt = !(typeof window > "u" || typeof window.document > "u" || typeof window.document.createElement > "u"), de = Object.prototype.hasOwnProperty, ve = /^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/, ut = {}, ee = {}; + function Ce(n) { + return de.call(ee, n) ? !0 : de.call(ut, n) ? !1 : ve.test(n) ? ee[n] = !0 : (ut[n] = !0, !1); + } + function ue(n, r, l, o) { + if (l !== null && l.type === 0) return !1; + switch (typeof r) { + case "function": + case "symbol": + return !0; + case "boolean": + return o ? !1 : l !== null ? !l.acceptsBooleans : (n = n.toLowerCase().slice(0, 5), n !== "data-" && n !== "aria-"); + default: + return !1; + } + } + function Ye(n, r, l, o) { + if (r === null || typeof r > "u" || ue(n, r, l, o)) return !0; + if (o) return !1; + if (l !== null) switch (l.type) { + case 3: + return !r; + case 4: + return r === !1; + case 5: + return isNaN(r); + case 6: + return isNaN(r) || 1 > r; + } + return !1; + } + function yt(n, r, l, o, c, d, m) { + this.acceptsBooleans = r === 2 || r === 3 || r === 4, this.attributeName = o, this.attributeNamespace = c, this.mustUseProperty = l, this.propertyName = n, this.type = r, this.sanitizeURL = d, this.removeEmptyString = m; + } + var dt = {}; + "children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(n) { + dt[n] = new yt(n, 0, !1, n, null, !1, !1); + }), [["acceptCharset", "accept-charset"], ["className", "class"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"]].forEach(function(n) { + var r = n[0]; + dt[r] = new yt(r, 1, !1, n[1], null, !1, !1); + }), ["contentEditable", "draggable", "spellCheck", "value"].forEach(function(n) { + dt[n] = new yt(n, 2, !1, n.toLowerCase(), null, !1, !1); + }), ["autoReverse", "externalResourcesRequired", "focusable", "preserveAlpha"].forEach(function(n) { + dt[n] = new yt(n, 2, !1, n, null, !1, !1); + }), "allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(n) { + dt[n] = new yt(n, 3, !1, n.toLowerCase(), null, !1, !1); + }), ["checked", "multiple", "muted", "selected"].forEach(function(n) { + dt[n] = new yt(n, 3, !0, n, null, !1, !1); + }), ["capture", "download"].forEach(function(n) { + dt[n] = new yt(n, 4, !1, n, null, !1, !1); + }), ["cols", "rows", "size", "span"].forEach(function(n) { + dt[n] = new yt(n, 6, !1, n, null, !1, !1); + }), ["rowSpan", "start"].forEach(function(n) { + dt[n] = new yt(n, 5, !1, n.toLowerCase(), null, !1, !1); + }); + var cn = /[\-:]([a-z])/g; + function ft(n) { + return n[1].toUpperCase(); + } + "accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(n) { + var r = n.replace( + cn, + ft + ); + dt[r] = new yt(r, 1, !1, n, null, !1, !1); + }), "xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(n) { + var r = n.replace(cn, ft); + dt[r] = new yt(r, 1, !1, n, "http://www.w3.org/1999/xlink", !1, !1); + }), ["xml:base", "xml:lang", "xml:space"].forEach(function(n) { + var r = n.replace(cn, ft); + dt[r] = new yt(r, 1, !1, n, "http://www.w3.org/XML/1998/namespace", !1, !1); + }), ["tabIndex", "crossOrigin"].forEach(function(n) { + dt[n] = new yt(n, 1, !1, n.toLowerCase(), null, !1, !1); + }), dt.xlinkHref = new yt("xlinkHref", 1, !1, "xlink:href", "http://www.w3.org/1999/xlink", !0, !1), ["src", "href", "action", "formAction"].forEach(function(n) { + dt[n] = new yt(n, 1, !1, n.toLowerCase(), null, !0, !0); + }); + function Ie(n, r, l, o) { + var c = dt.hasOwnProperty(r) ? dt[r] : null; + (c !== null ? c.type !== 0 : o || !(2 < r.length) || r[0] !== "o" && r[0] !== "O" || r[1] !== "n" && r[1] !== "N") && (Ye(r, l, c, o) && (l = null), o || c === null ? Ce(r) && (l === null ? n.removeAttribute(r) : n.setAttribute(r, "" + l)) : c.mustUseProperty ? n[c.propertyName] = l === null ? c.type === 3 ? !1 : "" : l : (r = c.attributeName, o = c.attributeNamespace, l === null ? n.removeAttribute(r) : (c = c.type, l = c === 3 || c === 4 && l === !0 ? "" : "" + l, o ? n.setAttributeNS(o, r, l) : n.setAttribute(r, l)))); + } + var pt = Z.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, _e = Symbol.for("react.element"), ot = Symbol.for("react.portal"), Fe = Symbol.for("react.fragment"), rn = Symbol.for("react.strict_mode"), Ft = Symbol.for("react.profiler"), Kt = Symbol.for("react.provider"), an = Symbol.for("react.context"), xt = Symbol.for("react.forward_ref"), ke = Symbol.for("react.suspense"), Ut = Symbol.for("react.suspense_list"), _t = Symbol.for("react.memo"), Dt = Symbol.for("react.lazy"), Ee = Symbol.for("react.offscreen"), K = Symbol.iterator; + function Re(n) { + return n === null || typeof n != "object" ? null : (n = K && n[K] || n["@@iterator"], typeof n == "function" ? n : null); + } + var ne = Object.assign, b; + function P(n) { + if (b === void 0) try { + throw Error(); + } catch (l) { + var r = l.stack.trim().match(/\n( *(at )?)/); + b = r && r[1] || ""; + } + return ` +` + b + n; + } + var je = !1; + function Ue(n, r) { + if (!n || je) return ""; + je = !0; + var l = Error.prepareStackTrace; + Error.prepareStackTrace = void 0; + try { + if (r) if (r = function() { + throw Error(); + }, Object.defineProperty(r.prototype, "props", { set: function() { + throw Error(); + } }), typeof Reflect == "object" && Reflect.construct) { + try { + Reflect.construct(r, []); + } catch (z) { + var o = z; + } + Reflect.construct(n, [], r); + } else { + try { + r.call(); + } catch (z) { + o = z; + } + n.call(r.prototype); + } + else { + try { + throw Error(); + } catch (z) { + o = z; + } + n(); + } + } catch (z) { + if (z && o && typeof z.stack == "string") { + for (var c = z.stack.split(` +`), d = o.stack.split(` +`), m = c.length - 1, E = d.length - 1; 1 <= m && 0 <= E && c[m] !== d[E]; ) E--; + for (; 1 <= m && 0 <= E; m--, E--) if (c[m] !== d[E]) { + if (m !== 1 || E !== 1) + do + if (m--, E--, 0 > E || c[m] !== d[E]) { + var T = ` +` + c[m].replace(" at new ", " at "); + return n.displayName && T.includes("") && (T = T.replace("", n.displayName)), T; + } + while (1 <= m && 0 <= E); + break; + } + } + } finally { + je = !1, Error.prepareStackTrace = l; + } + return (n = n ? n.displayName || n.name : "") ? P(n) : ""; + } + function rt(n) { + switch (n.tag) { + case 5: + return P(n.type); + case 16: + return P("Lazy"); + case 13: + return P("Suspense"); + case 19: + return P("SuspenseList"); + case 0: + case 2: + case 15: + return n = Ue(n.type, !1), n; + case 11: + return n = Ue(n.type.render, !1), n; + case 1: + return n = Ue(n.type, !0), n; + default: + return ""; + } + } + function Ze(n) { + if (n == null) return null; + if (typeof n == "function") return n.displayName || n.name || null; + if (typeof n == "string") return n; + switch (n) { + case Fe: + return "Fragment"; + case ot: + return "Portal"; + case Ft: + return "Profiler"; + case rn: + return "StrictMode"; + case ke: + return "Suspense"; + case Ut: + return "SuspenseList"; + } + if (typeof n == "object") switch (n.$$typeof) { + case an: + return (n.displayName || "Context") + ".Consumer"; + case Kt: + return (n._context.displayName || "Context") + ".Provider"; + case xt: + var r = n.render; + return n = n.displayName, n || (n = r.displayName || r.name || "", n = n !== "" ? "ForwardRef(" + n + ")" : "ForwardRef"), n; + case _t: + return r = n.displayName || null, r !== null ? r : Ze(n.type) || "Memo"; + case Dt: + r = n._payload, n = n._init; + try { + return Ze(n(r)); + } catch { + } + } + return null; + } + function Xe(n) { + var r = n.type; + switch (n.tag) { + case 24: + return "Cache"; + case 9: + return (r.displayName || "Context") + ".Consumer"; + case 10: + return (r._context.displayName || "Context") + ".Provider"; + case 18: + return "DehydratedFragment"; + case 11: + return n = r.render, n = n.displayName || n.name || "", r.displayName || (n !== "" ? "ForwardRef(" + n + ")" : "ForwardRef"); + case 7: + return "Fragment"; + case 5: + return r; + case 4: + return "Portal"; + case 3: + return "Root"; + case 6: + return "Text"; + case 16: + return Ze(r); + case 8: + return r === rn ? "StrictMode" : "Mode"; + case 22: + return "Offscreen"; + case 12: + return "Profiler"; + case 21: + return "Scope"; + case 13: + return "Suspense"; + case 19: + return "SuspenseList"; + case 25: + return "TracingMarker"; + case 1: + case 0: + case 17: + case 2: + case 14: + case 15: + if (typeof r == "function") return r.displayName || r.name || null; + if (typeof r == "string") return r; + } + return null; + } + function et(n) { + switch (typeof n) { + case "boolean": + case "number": + case "string": + case "undefined": + return n; + case "object": + return n; + default: + return ""; + } + } + function at(n) { + var r = n.type; + return (n = n.nodeName) && n.toLowerCase() === "input" && (r === "checkbox" || r === "radio"); + } + function Pt(n) { + var r = at(n) ? "checked" : "value", l = Object.getOwnPropertyDescriptor(n.constructor.prototype, r), o = "" + n[r]; + if (!n.hasOwnProperty(r) && typeof l < "u" && typeof l.get == "function" && typeof l.set == "function") { + var c = l.get, d = l.set; + return Object.defineProperty(n, r, { configurable: !0, get: function() { + return c.call(this); + }, set: function(m) { + o = "" + m, d.call(this, m); + } }), Object.defineProperty(n, r, { enumerable: l.enumerable }), { getValue: function() { + return o; + }, setValue: function(m) { + o = "" + m; + }, stopTracking: function() { + n._valueTracker = null, delete n[r]; + } }; + } + } + function kn(n) { + n._valueTracker || (n._valueTracker = Pt(n)); + } + function wr(n) { + if (!n) return !1; + var r = n._valueTracker; + if (!r) return !0; + var l = r.getValue(), o = ""; + return n && (o = at(n) ? n.checked ? "true" : "false" : n.value), n = o, n !== l ? (r.setValue(n), !0) : !1; + } + function En(n) { + if (n = n || (typeof document < "u" ? document : void 0), typeof n > "u") return null; + try { + return n.activeElement || n.body; + } catch { + return n.body; + } + } + function tr(n, r) { + var l = r.checked; + return ne({}, r, { defaultChecked: void 0, defaultValue: void 0, value: void 0, checked: l ?? n._wrapperState.initialChecked }); + } + function Pn(n, r) { + var l = r.defaultValue == null ? "" : r.defaultValue, o = r.checked != null ? r.checked : r.defaultChecked; + l = et(r.value != null ? r.value : l), n._wrapperState = { initialChecked: o, initialValue: l, controlled: r.type === "checkbox" || r.type === "radio" ? r.checked != null : r.value != null }; + } + function Vn(n, r) { + r = r.checked, r != null && Ie(n, "checked", r, !1); + } + function $r(n, r) { + Vn(n, r); + var l = et(r.value), o = r.type; + if (l != null) o === "number" ? (l === 0 && n.value === "" || n.value != l) && (n.value = "" + l) : n.value !== "" + l && (n.value = "" + l); + else if (o === "submit" || o === "reset") { + n.removeAttribute("value"); + return; + } + r.hasOwnProperty("value") ? ua(n, r.type, l) : r.hasOwnProperty("defaultValue") && ua(n, r.type, et(r.defaultValue)), r.checked == null && r.defaultChecked != null && (n.defaultChecked = !!r.defaultChecked); + } + function oi(n, r, l) { + if (r.hasOwnProperty("value") || r.hasOwnProperty("defaultValue")) { + var o = r.type; + if (!(o !== "submit" && o !== "reset" || r.value !== void 0 && r.value !== null)) return; + r = "" + n._wrapperState.initialValue, l || r === n.value || (n.value = r), n.defaultValue = r; + } + l = n.name, l !== "" && (n.name = ""), n.defaultChecked = !!n._wrapperState.initialChecked, l !== "" && (n.name = l); + } + function ua(n, r, l) { + (r !== "number" || En(n.ownerDocument) !== n) && (l == null ? n.defaultValue = "" + n._wrapperState.initialValue : n.defaultValue !== "" + l && (n.defaultValue = "" + l)); + } + var Gn = Array.isArray; + function Cn(n, r, l, o) { + if (n = n.options, r) { + r = {}; + for (var c = 0; c < l.length; c++) r["$" + l[c]] = !0; + for (l = 0; l < n.length; l++) c = r.hasOwnProperty("$" + n[l].value), n[l].selected !== c && (n[l].selected = c), c && o && (n[l].defaultSelected = !0); + } else { + for (l = "" + et(l), r = null, c = 0; c < n.length; c++) { + if (n[c].value === l) { + n[c].selected = !0, o && (n[c].defaultSelected = !0); + return; + } + r !== null || n[c].disabled || (r = n[c]); + } + r !== null && (r.selected = !0); + } + } + function Bn(n, r) { + if (r.dangerouslySetInnerHTML != null) throw Error(A(91)); + return ne({}, r, { value: void 0, defaultValue: void 0, children: "" + n._wrapperState.initialValue }); + } + function yr(n, r) { + var l = r.value; + if (l == null) { + if (l = r.children, r = r.defaultValue, l != null) { + if (r != null) throw Error(A(92)); + if (Gn(l)) { + if (1 < l.length) throw Error(A(93)); + l = l[0]; + } + r = l; + } + r == null && (r = ""), l = r; + } + n._wrapperState = { initialValue: et(l) }; + } + function $a(n, r) { + var l = et(r.value), o = et(r.defaultValue); + l != null && (l = "" + l, l !== n.value && (n.value = l), r.defaultValue == null && n.defaultValue !== l && (n.defaultValue = l)), o != null && (n.defaultValue = "" + o); + } + function On(n) { + var r = n.textContent; + r === n._wrapperState.initialValue && r !== "" && r !== null && (n.value = r); + } + function gr(n) { + switch (n) { + case "svg": + return "http://www.w3.org/2000/svg"; + case "math": + return "http://www.w3.org/1998/Math/MathML"; + default: + return "http://www.w3.org/1999/xhtml"; + } + } + function oa(n, r) { + return n == null || n === "http://www.w3.org/1999/xhtml" ? gr(r) : n === "http://www.w3.org/2000/svg" && r === "foreignObject" ? "http://www.w3.org/1999/xhtml" : n; + } + var Ya, si = function(n) { + return typeof MSApp < "u" && MSApp.execUnsafeLocalFunction ? function(r, l, o, c) { + MSApp.execUnsafeLocalFunction(function() { + return n(r, l, o, c); + }); + } : n; + }(function(n, r) { + if (n.namespaceURI !== "http://www.w3.org/2000/svg" || "innerHTML" in n) n.innerHTML = r; + else { + for (Ya = Ya || document.createElement("div"), Ya.innerHTML = "" + r.valueOf().toString() + "", r = Ya.firstChild; n.firstChild; ) n.removeChild(n.firstChild); + for (; r.firstChild; ) n.appendChild(r.firstChild); + } + }); + function J(n, r) { + if (r) { + var l = n.firstChild; + if (l && l === n.lastChild && l.nodeType === 3) { + l.nodeValue = r; + return; + } + } + n.textContent = r; + } + var Te = { + animationIterationCount: !0, + aspectRatio: !0, + borderImageOutset: !0, + borderImageSlice: !0, + borderImageWidth: !0, + boxFlex: !0, + boxFlexGroup: !0, + boxOrdinalGroup: !0, + columnCount: !0, + columns: !0, + flex: !0, + flexGrow: !0, + flexPositive: !0, + flexShrink: !0, + flexNegative: !0, + flexOrder: !0, + gridArea: !0, + gridRow: !0, + gridRowEnd: !0, + gridRowSpan: !0, + gridRowStart: !0, + gridColumn: !0, + gridColumnEnd: !0, + gridColumnSpan: !0, + gridColumnStart: !0, + fontWeight: !0, + lineClamp: !0, + lineHeight: !0, + opacity: !0, + order: !0, + orphans: !0, + tabSize: !0, + widows: !0, + zIndex: !0, + zoom: !0, + fillOpacity: !0, + floodOpacity: !0, + stopOpacity: !0, + strokeDasharray: !0, + strokeDashoffset: !0, + strokeMiterlimit: !0, + strokeOpacity: !0, + strokeWidth: !0 + }, tt = ["Webkit", "ms", "Moz", "O"]; + Object.keys(Te).forEach(function(n) { + tt.forEach(function(r) { + r = r + n.charAt(0).toUpperCase() + n.substring(1), Te[r] = Te[n]; + }); + }); + function At(n, r, l) { + return r == null || typeof r == "boolean" || r === "" ? "" : l || typeof r != "number" || r === 0 || Te.hasOwnProperty(n) && Te[n] ? ("" + r).trim() : r + "px"; + } + function Jt(n, r) { + n = n.style; + for (var l in r) if (r.hasOwnProperty(l)) { + var o = l.indexOf("--") === 0, c = At(l, r[l], o); + l === "float" && (l = "cssFloat"), o ? n.setProperty(l, c) : n[l] = c; + } + } + var pn = ne({ menuitem: !0 }, { area: !0, base: !0, br: !0, col: !0, embed: !0, hr: !0, img: !0, input: !0, keygen: !0, link: !0, meta: !0, param: !0, source: !0, track: !0, wbr: !0 }); + function ln(n, r) { + if (r) { + if (pn[n] && (r.children != null || r.dangerouslySetInnerHTML != null)) throw Error(A(137, n)); + if (r.dangerouslySetInnerHTML != null) { + if (r.children != null) throw Error(A(60)); + if (typeof r.dangerouslySetInnerHTML != "object" || !("__html" in r.dangerouslySetInnerHTML)) throw Error(A(61)); + } + if (r.style != null && typeof r.style != "object") throw Error(A(62)); + } + } + function qn(n, r) { + if (n.indexOf("-") === -1) return typeof r.is == "string"; + switch (n) { + case "annotation-xml": + case "color-profile": + case "font-face": + case "font-face-src": + case "font-face-uri": + case "font-face-format": + case "font-face-name": + case "missing-glyph": + return !1; + default: + return !0; + } + } + var Zt = null; + function Bt(n) { + return n = n.target || n.srcElement || window, n.correspondingUseElement && (n = n.correspondingUseElement), n.nodeType === 3 ? n.parentNode : n; + } + var $t = null, sa = null, Sr = null; + function Ra(n) { + if (n = be(n)) { + if (typeof $t != "function") throw Error(A(280)); + var r = n.stateNode; + r && (r = hn(r), $t(n.stateNode, n.type, r)); + } + } + function Fi(n) { + sa ? Sr ? Sr.push(n) : Sr = [n] : sa = n; + } + function Kl() { + if (sa) { + var n = sa, r = Sr; + if (Sr = sa = null, Ra(n), r) for (n = 0; n < r.length; n++) Ra(r[n]); + } + } + function Jl(n, r) { + return n(r); + } + function fl() { + } + var dl = !1; + function Zl(n, r, l) { + if (dl) return n(r, l); + dl = !0; + try { + return Jl(n, r, l); + } finally { + dl = !1, (sa !== null || Sr !== null) && (fl(), Kl()); + } + } + function xr(n, r) { + var l = n.stateNode; + if (l === null) return null; + var o = hn(l); + if (o === null) return null; + l = o[r]; + e: switch (r) { + case "onClick": + case "onClickCapture": + case "onDoubleClick": + case "onDoubleClickCapture": + case "onMouseDown": + case "onMouseDownCapture": + case "onMouseMove": + case "onMouseMoveCapture": + case "onMouseUp": + case "onMouseUpCapture": + case "onMouseEnter": + (o = !o.disabled) || (n = n.type, o = !(n === "button" || n === "input" || n === "select" || n === "textarea")), n = !o; + break e; + default: + n = !1; + } + if (n) return null; + if (l && typeof l != "function") throw Error(A(231, r, typeof l)); + return l; + } + var _r = !1; + if (Vt) try { + var nr = {}; + Object.defineProperty(nr, "passive", { get: function() { + _r = !0; + } }), window.addEventListener("test", nr, nr), window.removeEventListener("test", nr, nr); + } catch { + _r = !1; + } + function ci(n, r, l, o, c, d, m, E, T) { + var z = Array.prototype.slice.call(arguments, 3); + try { + r.apply(l, z); + } catch (I) { + this.onError(I); + } + } + var Ia = !1, fi = null, di = !1, R = null, B = { onError: function(n) { + Ia = !0, fi = n; + } }; + function ae(n, r, l, o, c, d, m, E, T) { + Ia = !1, fi = null, ci.apply(B, arguments); + } + function he(n, r, l, o, c, d, m, E, T) { + if (ae.apply(this, arguments), Ia) { + if (Ia) { + var z = fi; + Ia = !1, fi = null; + } else throw Error(A(198)); + di || (di = !0, R = z); + } + } + function We(n) { + var r = n, l = n; + if (n.alternate) for (; r.return; ) r = r.return; + else { + n = r; + do + r = n, (r.flags & 4098) !== 0 && (l = r.return), n = r.return; + while (n); + } + return r.tag === 3 ? l : null; + } + function Be(n) { + if (n.tag === 13) { + var r = n.memoizedState; + if (r === null && (n = n.alternate, n !== null && (r = n.memoizedState)), r !== null) return r.dehydrated; + } + return null; + } + function st(n) { + if (We(n) !== n) throw Error(A(188)); + } + function it(n) { + var r = n.alternate; + if (!r) { + if (r = We(n), r === null) throw Error(A(188)); + return r !== n ? null : n; + } + for (var l = n, o = r; ; ) { + var c = l.return; + if (c === null) break; + var d = c.alternate; + if (d === null) { + if (o = c.return, o !== null) { + l = o; + continue; + } + break; + } + if (c.child === d.child) { + for (d = c.child; d; ) { + if (d === l) return st(c), n; + if (d === o) return st(c), r; + d = d.sibling; + } + throw Error(A(188)); + } + if (l.return !== o.return) l = c, o = d; + else { + for (var m = !1, E = c.child; E; ) { + if (E === l) { + m = !0, l = c, o = d; + break; + } + if (E === o) { + m = !0, o = c, l = d; + break; + } + E = E.sibling; + } + if (!m) { + for (E = d.child; E; ) { + if (E === l) { + m = !0, l = d, o = c; + break; + } + if (E === o) { + m = !0, o = d, l = c; + break; + } + E = E.sibling; + } + if (!m) throw Error(A(189)); + } + } + if (l.alternate !== o) throw Error(A(190)); + } + if (l.tag !== 3) throw Error(A(188)); + return l.stateNode.current === l ? n : r; + } + function Rn(n) { + return n = it(n), n !== null ? en(n) : null; + } + function en(n) { + if (n.tag === 5 || n.tag === 6) return n; + for (n = n.child; n !== null; ) { + var r = en(n); + if (r !== null) return r; + n = n.sibling; + } + return null; + } + var un = X.unstable_scheduleCallback, rr = X.unstable_cancelCallback, Qa = X.unstable_shouldYield, Wa = X.unstable_requestPaint, Ge = X.unstable_now, Ke = X.unstable_getCurrentPriorityLevel, Ga = X.unstable_ImmediatePriority, eu = X.unstable_UserBlockingPriority, tu = X.unstable_NormalPriority, pl = X.unstable_LowPriority, Iu = X.unstable_IdlePriority, vl = null, Yr = null; + function $o(n) { + if (Yr && typeof Yr.onCommitFiberRoot == "function") try { + Yr.onCommitFiberRoot(vl, n, void 0, (n.current.flags & 128) === 128); + } catch { + } + } + var br = Math.clz32 ? Math.clz32 : Qu, ac = Math.log, ic = Math.LN2; + function Qu(n) { + return n >>>= 0, n === 0 ? 32 : 31 - (ac(n) / ic | 0) | 0; + } + var hl = 64, ca = 4194304; + function qa(n) { + switch (n & -n) { + case 1: + return 1; + case 2: + return 2; + case 4: + return 4; + case 8: + return 8; + case 16: + return 16; + case 32: + return 32; + case 64: + case 128: + case 256: + case 512: + case 1024: + case 2048: + case 4096: + case 8192: + case 16384: + case 32768: + case 65536: + case 131072: + case 262144: + case 524288: + case 1048576: + case 2097152: + return n & 4194240; + case 4194304: + case 8388608: + case 16777216: + case 33554432: + case 67108864: + return n & 130023424; + case 134217728: + return 134217728; + case 268435456: + return 268435456; + case 536870912: + return 536870912; + case 1073741824: + return 1073741824; + default: + return n; + } + } + function Xa(n, r) { + var l = n.pendingLanes; + if (l === 0) return 0; + var o = 0, c = n.suspendedLanes, d = n.pingedLanes, m = l & 268435455; + if (m !== 0) { + var E = m & ~c; + E !== 0 ? o = qa(E) : (d &= m, d !== 0 && (o = qa(d))); + } else m = l & ~c, m !== 0 ? o = qa(m) : d !== 0 && (o = qa(d)); + if (o === 0) return 0; + if (r !== 0 && r !== o && (r & c) === 0 && (c = o & -o, d = r & -r, c >= d || c === 16 && (d & 4194240) !== 0)) return r; + if ((o & 4) !== 0 && (o |= l & 16), r = n.entangledLanes, r !== 0) for (n = n.entanglements, r &= o; 0 < r; ) l = 31 - br(r), c = 1 << l, o |= n[l], r &= ~c; + return o; + } + function Wu(n, r) { + switch (n) { + case 1: + case 2: + case 4: + return r + 250; + case 8: + case 16: + case 32: + case 64: + case 128: + case 256: + case 512: + case 1024: + case 2048: + case 4096: + case 8192: + case 16384: + case 32768: + case 65536: + case 131072: + case 262144: + case 524288: + case 1048576: + case 2097152: + return r + 5e3; + case 4194304: + case 8388608: + case 16777216: + case 33554432: + case 67108864: + return -1; + case 134217728: + case 268435456: + case 536870912: + case 1073741824: + return -1; + default: + return -1; + } + } + function nu(n, r) { + for (var l = n.suspendedLanes, o = n.pingedLanes, c = n.expirationTimes, d = n.pendingLanes; 0 < d; ) { + var m = 31 - br(d), E = 1 << m, T = c[m]; + T === -1 ? ((E & l) === 0 || (E & o) !== 0) && (c[m] = Wu(E, r)) : T <= r && (n.expiredLanes |= E), d &= ~E; + } + } + function ml(n) { + return n = n.pendingLanes & -1073741825, n !== 0 ? n : n & 1073741824 ? 1073741824 : 0; + } + function Gu() { + var n = hl; + return hl <<= 1, (hl & 4194240) === 0 && (hl = 64), n; + } + function qu(n) { + for (var r = [], l = 0; 31 > l; l++) r.push(n); + return r; + } + function ji(n, r, l) { + n.pendingLanes |= r, r !== 536870912 && (n.suspendedLanes = 0, n.pingedLanes = 0), n = n.eventTimes, r = 31 - br(r), n[r] = l; + } + function If(n, r) { + var l = n.pendingLanes & ~r; + n.pendingLanes = r, n.suspendedLanes = 0, n.pingedLanes = 0, n.expiredLanes &= r, n.mutableReadLanes &= r, n.entangledLanes &= r, r = n.entanglements; + var o = n.eventTimes; + for (n = n.expirationTimes; 0 < l; ) { + var c = 31 - br(l), d = 1 << c; + r[c] = 0, o[c] = -1, n[c] = -1, l &= ~d; + } + } + function Hi(n, r) { + var l = n.entangledLanes |= r; + for (n = n.entanglements; l; ) { + var o = 31 - br(l), c = 1 << o; + c & r | n[o] & r && (n[o] |= r), l &= ~c; + } + } + var kt = 0; + function Xu(n) { + return n &= -n, 1 < n ? 4 < n ? (n & 268435455) !== 0 ? 16 : 536870912 : 4 : 1; + } + var Rt, Yo, pi, Ve, Ku, ar = !1, vi = [], Dr = null, hi = null, on = null, Yt = /* @__PURE__ */ new Map(), yl = /* @__PURE__ */ new Map(), $n = [], kr = "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" "); + function Ta(n, r) { + switch (n) { + case "focusin": + case "focusout": + Dr = null; + break; + case "dragenter": + case "dragleave": + hi = null; + break; + case "mouseover": + case "mouseout": + on = null; + break; + case "pointerover": + case "pointerout": + Yt.delete(r.pointerId); + break; + case "gotpointercapture": + case "lostpointercapture": + yl.delete(r.pointerId); + } + } + function ru(n, r, l, o, c, d) { + return n === null || n.nativeEvent !== d ? (n = { blockedOn: r, domEventName: l, eventSystemFlags: o, nativeEvent: d, targetContainers: [c] }, r !== null && (r = be(r), r !== null && Yo(r)), n) : (n.eventSystemFlags |= o, r = n.targetContainers, c !== null && r.indexOf(c) === -1 && r.push(c), n); + } + function Io(n, r, l, o, c) { + switch (r) { + case "focusin": + return Dr = ru(Dr, n, r, l, o, c), !0; + case "dragenter": + return hi = ru(hi, n, r, l, o, c), !0; + case "mouseover": + return on = ru(on, n, r, l, o, c), !0; + case "pointerover": + var d = c.pointerId; + return Yt.set(d, ru(Yt.get(d) || null, n, r, l, o, c)), !0; + case "gotpointercapture": + return d = c.pointerId, yl.set(d, ru(yl.get(d) || null, n, r, l, o, c)), !0; + } + return !1; + } + function Qo(n) { + var r = du(n.target); + if (r !== null) { + var l = We(r); + if (l !== null) { + if (r = l.tag, r === 13) { + if (r = Be(l), r !== null) { + n.blockedOn = r, Ku(n.priority, function() { + pi(l); + }); + return; + } + } else if (r === 3 && l.stateNode.current.memoizedState.isDehydrated) { + n.blockedOn = l.tag === 3 ? l.stateNode.containerInfo : null; + return; + } + } + } + n.blockedOn = null; + } + function gl(n) { + if (n.blockedOn !== null) return !1; + for (var r = n.targetContainers; 0 < r.length; ) { + var l = eo(n.domEventName, n.eventSystemFlags, r[0], n.nativeEvent); + if (l === null) { + l = n.nativeEvent; + var o = new l.constructor(l.type, l); + Zt = o, l.target.dispatchEvent(o), Zt = null; + } else return r = be(l), r !== null && Yo(r), n.blockedOn = l, !1; + r.shift(); + } + return !0; + } + function au(n, r, l) { + gl(n) && l.delete(r); + } + function Qf() { + ar = !1, Dr !== null && gl(Dr) && (Dr = null), hi !== null && gl(hi) && (hi = null), on !== null && gl(on) && (on = null), Yt.forEach(au), yl.forEach(au); + } + function wa(n, r) { + n.blockedOn === r && (n.blockedOn = null, ar || (ar = !0, X.unstable_scheduleCallback(X.unstable_NormalPriority, Qf))); + } + function Ka(n) { + function r(c) { + return wa(c, n); + } + if (0 < vi.length) { + wa(vi[0], n); + for (var l = 1; l < vi.length; l++) { + var o = vi[l]; + o.blockedOn === n && (o.blockedOn = null); + } + } + for (Dr !== null && wa(Dr, n), hi !== null && wa(hi, n), on !== null && wa(on, n), Yt.forEach(r), yl.forEach(r), l = 0; l < $n.length; l++) o = $n[l], o.blockedOn === n && (o.blockedOn = null); + for (; 0 < $n.length && (l = $n[0], l.blockedOn === null); ) Qo(l), l.blockedOn === null && $n.shift(); + } + var mi = pt.ReactCurrentBatchConfig, xa = !0; + function Ju(n, r, l, o) { + var c = kt, d = mi.transition; + mi.transition = null; + try { + kt = 1, Sl(n, r, l, o); + } finally { + kt = c, mi.transition = d; + } + } + function Zu(n, r, l, o) { + var c = kt, d = mi.transition; + mi.transition = null; + try { + kt = 4, Sl(n, r, l, o); + } finally { + kt = c, mi.transition = d; + } + } + function Sl(n, r, l, o) { + if (xa) { + var c = eo(n, r, l, o); + if (c === null) yc(n, r, o, iu, l), Ta(n, o); + else if (Io(c, n, r, l, o)) o.stopPropagation(); + else if (Ta(n, o), r & 4 && -1 < kr.indexOf(n)) { + for (; c !== null; ) { + var d = be(c); + if (d !== null && Rt(d), d = eo(n, r, l, o), d === null && yc(n, r, o, iu, l), d === c) break; + c = d; + } + c !== null && o.stopPropagation(); + } else yc(n, r, o, null, l); + } + } + var iu = null; + function eo(n, r, l, o) { + if (iu = null, n = Bt(o), n = du(n), n !== null) if (r = We(n), r === null) n = null; + else if (l = r.tag, l === 13) { + if (n = Be(r), n !== null) return n; + n = null; + } else if (l === 3) { + if (r.stateNode.current.memoizedState.isDehydrated) return r.tag === 3 ? r.stateNode.containerInfo : null; + n = null; + } else r !== n && (n = null); + return iu = n, null; + } + function to(n) { + switch (n) { + case "cancel": + case "click": + case "close": + case "contextmenu": + case "copy": + case "cut": + case "auxclick": + case "dblclick": + case "dragend": + case "dragstart": + case "drop": + case "focusin": + case "focusout": + case "input": + case "invalid": + case "keydown": + case "keypress": + case "keyup": + case "mousedown": + case "mouseup": + case "paste": + case "pause": + case "play": + case "pointercancel": + case "pointerdown": + case "pointerup": + case "ratechange": + case "reset": + case "resize": + case "seeked": + case "submit": + case "touchcancel": + case "touchend": + case "touchstart": + case "volumechange": + case "change": + case "selectionchange": + case "textInput": + case "compositionstart": + case "compositionend": + case "compositionupdate": + case "beforeblur": + case "afterblur": + case "beforeinput": + case "blur": + case "fullscreenchange": + case "focus": + case "hashchange": + case "popstate": + case "select": + case "selectstart": + return 1; + case "drag": + case "dragenter": + case "dragexit": + case "dragleave": + case "dragover": + case "mousemove": + case "mouseout": + case "mouseover": + case "pointermove": + case "pointerout": + case "pointerover": + case "scroll": + case "toggle": + case "touchmove": + case "wheel": + case "mouseenter": + case "mouseleave": + case "pointerenter": + case "pointerleave": + return 4; + case "message": + switch (Ke()) { + case Ga: + return 1; + case eu: + return 4; + case tu: + case pl: + return 16; + case Iu: + return 536870912; + default: + return 16; + } + default: + return 16; + } + } + var Ja = null, h = null, C = null; + function N() { + if (C) return C; + var n, r = h, l = r.length, o, c = "value" in Ja ? Ja.value : Ja.textContent, d = c.length; + for (n = 0; n < l && r[n] === c[n]; n++) ; + var m = l - n; + for (o = 1; o <= m && r[l - o] === c[d - o]; o++) ; + return C = c.slice(n, 1 < o ? 1 - o : void 0); + } + function F(n) { + var r = n.keyCode; + return "charCode" in n ? (n = n.charCode, n === 0 && r === 13 && (n = 13)) : n = r, n === 10 && (n = 13), 32 <= n || n === 13 ? n : 0; + } + function q() { + return !0; + } + function Oe() { + return !1; + } + function re(n) { + function r(l, o, c, d, m) { + this._reactName = l, this._targetInst = c, this.type = o, this.nativeEvent = d, this.target = m, this.currentTarget = null; + for (var E in n) n.hasOwnProperty(E) && (l = n[E], this[E] = l ? l(d) : d[E]); + return this.isDefaultPrevented = (d.defaultPrevented != null ? d.defaultPrevented : d.returnValue === !1) ? q : Oe, this.isPropagationStopped = Oe, this; + } + return ne(r.prototype, { preventDefault: function() { + this.defaultPrevented = !0; + var l = this.nativeEvent; + l && (l.preventDefault ? l.preventDefault() : typeof l.returnValue != "unknown" && (l.returnValue = !1), this.isDefaultPrevented = q); + }, stopPropagation: function() { + var l = this.nativeEvent; + l && (l.stopPropagation ? l.stopPropagation() : typeof l.cancelBubble != "unknown" && (l.cancelBubble = !0), this.isPropagationStopped = q); + }, persist: function() { + }, isPersistent: q }), r; + } + var Ne = { eventPhase: 0, bubbles: 0, cancelable: 0, timeStamp: function(n) { + return n.timeStamp || Date.now(); + }, defaultPrevented: 0, isTrusted: 0 }, ct = re(Ne), Tt = ne({}, Ne, { view: 0, detail: 0 }), tn = re(Tt), It, nt, Qt, vn = ne({}, Tt, { screenX: 0, screenY: 0, clientX: 0, clientY: 0, pageX: 0, pageY: 0, ctrlKey: 0, shiftKey: 0, altKey: 0, metaKey: 0, getModifierState: Kf, button: 0, buttons: 0, relatedTarget: function(n) { + return n.relatedTarget === void 0 ? n.fromElement === n.srcElement ? n.toElement : n.fromElement : n.relatedTarget; + }, movementX: function(n) { + return "movementX" in n ? n.movementX : (n !== Qt && (Qt && n.type === "mousemove" ? (It = n.screenX - Qt.screenX, nt = n.screenY - Qt.screenY) : nt = It = 0, Qt = n), It); + }, movementY: function(n) { + return "movementY" in n ? n.movementY : nt; + } }), El = re(vn), Wo = ne({}, vn, { dataTransfer: 0 }), Pi = re(Wo), Go = ne({}, Tt, { relatedTarget: 0 }), lu = re(Go), Wf = ne({}, Ne, { animationName: 0, elapsedTime: 0, pseudoElement: 0 }), lc = re(Wf), Gf = ne({}, Ne, { clipboardData: function(n) { + return "clipboardData" in n ? n.clipboardData : window.clipboardData; + } }), ev = re(Gf), qf = ne({}, Ne, { data: 0 }), Xf = re(qf), tv = { + Esc: "Escape", + Spacebar: " ", + Left: "ArrowLeft", + Up: "ArrowUp", + Right: "ArrowRight", + Down: "ArrowDown", + Del: "Delete", + Win: "OS", + Menu: "ContextMenu", + Apps: "ContextMenu", + Scroll: "ScrollLock", + MozPrintableKey: "Unidentified" + }, nv = { + 8: "Backspace", + 9: "Tab", + 12: "Clear", + 13: "Enter", + 16: "Shift", + 17: "Control", + 18: "Alt", + 19: "Pause", + 20: "CapsLock", + 27: "Escape", + 32: " ", + 33: "PageUp", + 34: "PageDown", + 35: "End", + 36: "Home", + 37: "ArrowLeft", + 38: "ArrowUp", + 39: "ArrowRight", + 40: "ArrowDown", + 45: "Insert", + 46: "Delete", + 112: "F1", + 113: "F2", + 114: "F3", + 115: "F4", + 116: "F5", + 117: "F6", + 118: "F7", + 119: "F8", + 120: "F9", + 121: "F10", + 122: "F11", + 123: "F12", + 144: "NumLock", + 145: "ScrollLock", + 224: "Meta" + }, Xm = { Alt: "altKey", Control: "ctrlKey", Meta: "metaKey", Shift: "shiftKey" }; + function Vi(n) { + var r = this.nativeEvent; + return r.getModifierState ? r.getModifierState(n) : (n = Xm[n]) ? !!r[n] : !1; + } + function Kf() { + return Vi; + } + var Jf = ne({}, Tt, { key: function(n) { + if (n.key) { + var r = tv[n.key] || n.key; + if (r !== "Unidentified") return r; + } + return n.type === "keypress" ? (n = F(n), n === 13 ? "Enter" : String.fromCharCode(n)) : n.type === "keydown" || n.type === "keyup" ? nv[n.keyCode] || "Unidentified" : ""; + }, code: 0, location: 0, ctrlKey: 0, shiftKey: 0, altKey: 0, metaKey: 0, repeat: 0, locale: 0, getModifierState: Kf, charCode: function(n) { + return n.type === "keypress" ? F(n) : 0; + }, keyCode: function(n) { + return n.type === "keydown" || n.type === "keyup" ? n.keyCode : 0; + }, which: function(n) { + return n.type === "keypress" ? F(n) : n.type === "keydown" || n.type === "keyup" ? n.keyCode : 0; + } }), Zf = re(Jf), ed = ne({}, vn, { pointerId: 0, width: 0, height: 0, pressure: 0, tangentialPressure: 0, tiltX: 0, tiltY: 0, twist: 0, pointerType: 0, isPrimary: 0 }), rv = re(ed), uc = ne({}, Tt, { touches: 0, targetTouches: 0, changedTouches: 0, altKey: 0, metaKey: 0, ctrlKey: 0, shiftKey: 0, getModifierState: Kf }), av = re(uc), Ir = ne({}, Ne, { propertyName: 0, elapsedTime: 0, pseudoElement: 0 }), Bi = re(Ir), Ln = ne({}, vn, { + deltaX: function(n) { + return "deltaX" in n ? n.deltaX : "wheelDeltaX" in n ? -n.wheelDeltaX : 0; + }, + deltaY: function(n) { + return "deltaY" in n ? n.deltaY : "wheelDeltaY" in n ? -n.wheelDeltaY : "wheelDelta" in n ? -n.wheelDelta : 0; + }, + deltaZ: 0, + deltaMode: 0 + }), $i = re(Ln), td = [9, 13, 27, 32], no = Vt && "CompositionEvent" in window, qo = null; + Vt && "documentMode" in document && (qo = document.documentMode); + var Xo = Vt && "TextEvent" in window && !qo, iv = Vt && (!no || qo && 8 < qo && 11 >= qo), lv = " ", oc = !1; + function uv(n, r) { + switch (n) { + case "keyup": + return td.indexOf(r.keyCode) !== -1; + case "keydown": + return r.keyCode !== 229; + case "keypress": + case "mousedown": + case "focusout": + return !0; + default: + return !1; + } + } + function ov(n) { + return n = n.detail, typeof n == "object" && "data" in n ? n.data : null; + } + var ro = !1; + function sv(n, r) { + switch (n) { + case "compositionend": + return ov(r); + case "keypress": + return r.which !== 32 ? null : (oc = !0, lv); + case "textInput": + return n = r.data, n === lv && oc ? null : n; + default: + return null; + } + } + function Km(n, r) { + if (ro) return n === "compositionend" || !no && uv(n, r) ? (n = N(), C = h = Ja = null, ro = !1, n) : null; + switch (n) { + case "paste": + return null; + case "keypress": + if (!(r.ctrlKey || r.altKey || r.metaKey) || r.ctrlKey && r.altKey) { + if (r.char && 1 < r.char.length) return r.char; + if (r.which) return String.fromCharCode(r.which); + } + return null; + case "compositionend": + return iv && r.locale !== "ko" ? null : r.data; + default: + return null; + } + } + var Jm = { color: !0, date: !0, datetime: !0, "datetime-local": !0, email: !0, month: !0, number: !0, password: !0, range: !0, search: !0, tel: !0, text: !0, time: !0, url: !0, week: !0 }; + function cv(n) { + var r = n && n.nodeName && n.nodeName.toLowerCase(); + return r === "input" ? !!Jm[n.type] : r === "textarea"; + } + function nd(n, r, l, o) { + Fi(o), r = ns(r, "onChange"), 0 < r.length && (l = new ct("onChange", "change", null, l, o), n.push({ event: l, listeners: r })); + } + var yi = null, uu = null; + function fv(n) { + cu(n, 0); + } + function Ko(n) { + var r = ei(n); + if (wr(r)) return n; + } + function Zm(n, r) { + if (n === "change") return r; + } + var dv = !1; + if (Vt) { + var rd; + if (Vt) { + var ad = "oninput" in document; + if (!ad) { + var pv = document.createElement("div"); + pv.setAttribute("oninput", "return;"), ad = typeof pv.oninput == "function"; + } + rd = ad; + } else rd = !1; + dv = rd && (!document.documentMode || 9 < document.documentMode); + } + function vv() { + yi && (yi.detachEvent("onpropertychange", hv), uu = yi = null); + } + function hv(n) { + if (n.propertyName === "value" && Ko(uu)) { + var r = []; + nd(r, uu, n, Bt(n)), Zl(fv, r); + } + } + function ey(n, r, l) { + n === "focusin" ? (vv(), yi = r, uu = l, yi.attachEvent("onpropertychange", hv)) : n === "focusout" && vv(); + } + function mv(n) { + if (n === "selectionchange" || n === "keyup" || n === "keydown") return Ko(uu); + } + function ty(n, r) { + if (n === "click") return Ko(r); + } + function yv(n, r) { + if (n === "input" || n === "change") return Ko(r); + } + function ny(n, r) { + return n === r && (n !== 0 || 1 / n === 1 / r) || n !== n && r !== r; + } + var Za = typeof Object.is == "function" ? Object.is : ny; + function Jo(n, r) { + if (Za(n, r)) return !0; + if (typeof n != "object" || n === null || typeof r != "object" || r === null) return !1; + var l = Object.keys(n), o = Object.keys(r); + if (l.length !== o.length) return !1; + for (o = 0; o < l.length; o++) { + var c = l[o]; + if (!de.call(r, c) || !Za(n[c], r[c])) return !1; + } + return !0; + } + function gv(n) { + for (; n && n.firstChild; ) n = n.firstChild; + return n; + } + function sc(n, r) { + var l = gv(n); + n = 0; + for (var o; l; ) { + if (l.nodeType === 3) { + if (o = n + l.textContent.length, n <= r && o >= r) return { node: l, offset: r - n }; + n = o; + } + e: { + for (; l; ) { + if (l.nextSibling) { + l = l.nextSibling; + break e; + } + l = l.parentNode; + } + l = void 0; + } + l = gv(l); + } + } + function Cl(n, r) { + return n && r ? n === r ? !0 : n && n.nodeType === 3 ? !1 : r && r.nodeType === 3 ? Cl(n, r.parentNode) : "contains" in n ? n.contains(r) : n.compareDocumentPosition ? !!(n.compareDocumentPosition(r) & 16) : !1 : !1; + } + function Zo() { + for (var n = window, r = En(); r instanceof n.HTMLIFrameElement; ) { + try { + var l = typeof r.contentWindow.location.href == "string"; + } catch { + l = !1; + } + if (l) n = r.contentWindow; + else break; + r = En(n.document); + } + return r; + } + function cc(n) { + var r = n && n.nodeName && n.nodeName.toLowerCase(); + return r && (r === "input" && (n.type === "text" || n.type === "search" || n.type === "tel" || n.type === "url" || n.type === "password") || r === "textarea" || n.contentEditable === "true"); + } + function ao(n) { + var r = Zo(), l = n.focusedElem, o = n.selectionRange; + if (r !== l && l && l.ownerDocument && Cl(l.ownerDocument.documentElement, l)) { + if (o !== null && cc(l)) { + if (r = o.start, n = o.end, n === void 0 && (n = r), "selectionStart" in l) l.selectionStart = r, l.selectionEnd = Math.min(n, l.value.length); + else if (n = (r = l.ownerDocument || document) && r.defaultView || window, n.getSelection) { + n = n.getSelection(); + var c = l.textContent.length, d = Math.min(o.start, c); + o = o.end === void 0 ? d : Math.min(o.end, c), !n.extend && d > o && (c = o, o = d, d = c), c = sc(l, d); + var m = sc( + l, + o + ); + c && m && (n.rangeCount !== 1 || n.anchorNode !== c.node || n.anchorOffset !== c.offset || n.focusNode !== m.node || n.focusOffset !== m.offset) && (r = r.createRange(), r.setStart(c.node, c.offset), n.removeAllRanges(), d > o ? (n.addRange(r), n.extend(m.node, m.offset)) : (r.setEnd(m.node, m.offset), n.addRange(r))); + } + } + for (r = [], n = l; n = n.parentNode; ) n.nodeType === 1 && r.push({ element: n, left: n.scrollLeft, top: n.scrollTop }); + for (typeof l.focus == "function" && l.focus(), l = 0; l < r.length; l++) n = r[l], n.element.scrollLeft = n.left, n.element.scrollTop = n.top; + } + } + var ry = Vt && "documentMode" in document && 11 >= document.documentMode, io = null, id = null, es = null, ld = !1; + function ud(n, r, l) { + var o = l.window === l ? l.document : l.nodeType === 9 ? l : l.ownerDocument; + ld || io == null || io !== En(o) || (o = io, "selectionStart" in o && cc(o) ? o = { start: o.selectionStart, end: o.selectionEnd } : (o = (o.ownerDocument && o.ownerDocument.defaultView || window).getSelection(), o = { anchorNode: o.anchorNode, anchorOffset: o.anchorOffset, focusNode: o.focusNode, focusOffset: o.focusOffset }), es && Jo(es, o) || (es = o, o = ns(id, "onSelect"), 0 < o.length && (r = new ct("onSelect", "select", null, r, l), n.push({ event: r, listeners: o }), r.target = io))); + } + function fc(n, r) { + var l = {}; + return l[n.toLowerCase()] = r.toLowerCase(), l["Webkit" + n] = "webkit" + r, l["Moz" + n] = "moz" + r, l; + } + var ou = { animationend: fc("Animation", "AnimationEnd"), animationiteration: fc("Animation", "AnimationIteration"), animationstart: fc("Animation", "AnimationStart"), transitionend: fc("Transition", "TransitionEnd") }, ir = {}, od = {}; + Vt && (od = document.createElement("div").style, "AnimationEvent" in window || (delete ou.animationend.animation, delete ou.animationiteration.animation, delete ou.animationstart.animation), "TransitionEvent" in window || delete ou.transitionend.transition); + function dc(n) { + if (ir[n]) return ir[n]; + if (!ou[n]) return n; + var r = ou[n], l; + for (l in r) if (r.hasOwnProperty(l) && l in od) return ir[n] = r[l]; + return n; + } + var Sv = dc("animationend"), Ev = dc("animationiteration"), Cv = dc("animationstart"), Rv = dc("transitionend"), sd = /* @__PURE__ */ new Map(), pc = "abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" "); + function _a(n, r) { + sd.set(n, r), mt(r, [n]); + } + for (var cd = 0; cd < pc.length; cd++) { + var su = pc[cd], ay = su.toLowerCase(), iy = su[0].toUpperCase() + su.slice(1); + _a(ay, "on" + iy); + } + _a(Sv, "onAnimationEnd"), _a(Ev, "onAnimationIteration"), _a(Cv, "onAnimationStart"), _a("dblclick", "onDoubleClick"), _a("focusin", "onFocus"), _a("focusout", "onBlur"), _a(Rv, "onTransitionEnd"), S("onMouseEnter", ["mouseout", "mouseover"]), S("onMouseLeave", ["mouseout", "mouseover"]), S("onPointerEnter", ["pointerout", "pointerover"]), S("onPointerLeave", ["pointerout", "pointerover"]), mt("onChange", "change click focusin focusout input keydown keyup selectionchange".split(" ")), mt("onSelect", "focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")), mt("onBeforeInput", ["compositionend", "keypress", "textInput", "paste"]), mt("onCompositionEnd", "compositionend focusout keydown keypress keyup mousedown".split(" ")), mt("onCompositionStart", "compositionstart focusout keydown keypress keyup mousedown".split(" ")), mt("onCompositionUpdate", "compositionupdate focusout keydown keypress keyup mousedown".split(" ")); + var ts = "abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "), fd = new Set("cancel close invalid load scroll toggle".split(" ").concat(ts)); + function vc(n, r, l) { + var o = n.type || "unknown-event"; + n.currentTarget = l, he(o, r, void 0, n), n.currentTarget = null; + } + function cu(n, r) { + r = (r & 4) !== 0; + for (var l = 0; l < n.length; l++) { + var o = n[l], c = o.event; + o = o.listeners; + e: { + var d = void 0; + if (r) for (var m = o.length - 1; 0 <= m; m--) { + var E = o[m], T = E.instance, z = E.currentTarget; + if (E = E.listener, T !== d && c.isPropagationStopped()) break e; + vc(c, E, z), d = T; + } + else for (m = 0; m < o.length; m++) { + if (E = o[m], T = E.instance, z = E.currentTarget, E = E.listener, T !== d && c.isPropagationStopped()) break e; + vc(c, E, z), d = T; + } + } + } + if (di) throw n = R, di = !1, R = null, n; + } + function jt(n, r) { + var l = r[is]; + l === void 0 && (l = r[is] = /* @__PURE__ */ new Set()); + var o = n + "__bubble"; + l.has(o) || (Tv(r, n, 2, !1), l.add(o)); + } + function hc(n, r, l) { + var o = 0; + r && (o |= 4), Tv(l, n, o, r); + } + var mc = "_reactListening" + Math.random().toString(36).slice(2); + function lo(n) { + if (!n[mc]) { + n[mc] = !0, wt.forEach(function(l) { + l !== "selectionchange" && (fd.has(l) || hc(l, !1, n), hc(l, !0, n)); + }); + var r = n.nodeType === 9 ? n : n.ownerDocument; + r === null || r[mc] || (r[mc] = !0, hc("selectionchange", !1, r)); + } + } + function Tv(n, r, l, o) { + switch (to(r)) { + case 1: + var c = Ju; + break; + case 4: + c = Zu; + break; + default: + c = Sl; + } + l = c.bind(null, r, l, n), c = void 0, !_r || r !== "touchstart" && r !== "touchmove" && r !== "wheel" || (c = !0), o ? c !== void 0 ? n.addEventListener(r, l, { capture: !0, passive: c }) : n.addEventListener(r, l, !0) : c !== void 0 ? n.addEventListener(r, l, { passive: c }) : n.addEventListener(r, l, !1); + } + function yc(n, r, l, o, c) { + var d = o; + if ((r & 1) === 0 && (r & 2) === 0 && o !== null) e: for (; ; ) { + if (o === null) return; + var m = o.tag; + if (m === 3 || m === 4) { + var E = o.stateNode.containerInfo; + if (E === c || E.nodeType === 8 && E.parentNode === c) break; + if (m === 4) for (m = o.return; m !== null; ) { + var T = m.tag; + if ((T === 3 || T === 4) && (T = m.stateNode.containerInfo, T === c || T.nodeType === 8 && T.parentNode === c)) return; + m = m.return; + } + for (; E !== null; ) { + if (m = du(E), m === null) return; + if (T = m.tag, T === 5 || T === 6) { + o = d = m; + continue e; + } + E = E.parentNode; + } + } + o = o.return; + } + Zl(function() { + var z = d, I = Bt(l), W = []; + e: { + var Y = sd.get(n); + if (Y !== void 0) { + var se = ct, me = n; + switch (n) { + case "keypress": + if (F(l) === 0) break e; + case "keydown": + case "keyup": + se = Zf; + break; + case "focusin": + me = "focus", se = lu; + break; + case "focusout": + me = "blur", se = lu; + break; + case "beforeblur": + case "afterblur": + se = lu; + break; + case "click": + if (l.button === 2) break e; + case "auxclick": + case "dblclick": + case "mousedown": + case "mousemove": + case "mouseup": + case "mouseout": + case "mouseover": + case "contextmenu": + se = El; + break; + case "drag": + case "dragend": + case "dragenter": + case "dragexit": + case "dragleave": + case "dragover": + case "dragstart": + case "drop": + se = Pi; + break; + case "touchcancel": + case "touchend": + case "touchmove": + case "touchstart": + se = av; + break; + case Sv: + case Ev: + case Cv: + se = lc; + break; + case Rv: + se = Bi; + break; + case "scroll": + se = tn; + break; + case "wheel": + se = $i; + break; + case "copy": + case "cut": + case "paste": + se = ev; + break; + case "gotpointercapture": + case "lostpointercapture": + case "pointercancel": + case "pointerdown": + case "pointermove": + case "pointerout": + case "pointerover": + case "pointerup": + se = rv; + } + var Se = (r & 4) !== 0, bn = !Se && n === "scroll", D = Se ? Y !== null ? Y + "Capture" : null : Y; + Se = []; + for (var x = z, L; x !== null; ) { + L = x; + var Q = L.stateNode; + if (L.tag === 5 && Q !== null && (L = Q, D !== null && (Q = xr(x, D), Q != null && Se.push(uo(x, Q, L)))), bn) break; + x = x.return; + } + 0 < Se.length && (Y = new se(Y, me, null, l, I), W.push({ event: Y, listeners: Se })); + } + } + if ((r & 7) === 0) { + e: { + if (Y = n === "mouseover" || n === "pointerover", se = n === "mouseout" || n === "pointerout", Y && l !== Zt && (me = l.relatedTarget || l.fromElement) && (du(me) || me[Yi])) break e; + if ((se || Y) && (Y = I.window === I ? I : (Y = I.ownerDocument) ? Y.defaultView || Y.parentWindow : window, se ? (me = l.relatedTarget || l.toElement, se = z, me = me ? du(me) : null, me !== null && (bn = We(me), me !== bn || me.tag !== 5 && me.tag !== 6) && (me = null)) : (se = null, me = z), se !== me)) { + if (Se = El, Q = "onMouseLeave", D = "onMouseEnter", x = "mouse", (n === "pointerout" || n === "pointerover") && (Se = rv, Q = "onPointerLeave", D = "onPointerEnter", x = "pointer"), bn = se == null ? Y : ei(se), L = me == null ? Y : ei(me), Y = new Se(Q, x + "leave", se, l, I), Y.target = bn, Y.relatedTarget = L, Q = null, du(I) === z && (Se = new Se(D, x + "enter", me, l, I), Se.target = L, Se.relatedTarget = bn, Q = Se), bn = Q, se && me) t: { + for (Se = se, D = me, x = 0, L = Se; L; L = Rl(L)) x++; + for (L = 0, Q = D; Q; Q = Rl(Q)) L++; + for (; 0 < x - L; ) Se = Rl(Se), x--; + for (; 0 < L - x; ) D = Rl(D), L--; + for (; x--; ) { + if (Se === D || D !== null && Se === D.alternate) break t; + Se = Rl(Se), D = Rl(D); + } + Se = null; + } + else Se = null; + se !== null && wv(W, Y, se, Se, !1), me !== null && bn !== null && wv(W, bn, me, Se, !0); + } + } + e: { + if (Y = z ? ei(z) : window, se = Y.nodeName && Y.nodeName.toLowerCase(), se === "select" || se === "input" && Y.type === "file") var ye = Zm; + else if (cv(Y)) if (dv) ye = yv; + else { + ye = mv; + var Me = ey; + } + else (se = Y.nodeName) && se.toLowerCase() === "input" && (Y.type === "checkbox" || Y.type === "radio") && (ye = ty); + if (ye && (ye = ye(n, z))) { + nd(W, ye, l, I); + break e; + } + Me && Me(n, Y, z), n === "focusout" && (Me = Y._wrapperState) && Me.controlled && Y.type === "number" && ua(Y, "number", Y.value); + } + switch (Me = z ? ei(z) : window, n) { + case "focusin": + (cv(Me) || Me.contentEditable === "true") && (io = Me, id = z, es = null); + break; + case "focusout": + es = id = io = null; + break; + case "mousedown": + ld = !0; + break; + case "contextmenu": + case "mouseup": + case "dragend": + ld = !1, ud(W, l, I); + break; + case "selectionchange": + if (ry) break; + case "keydown": + case "keyup": + ud(W, l, I); + } + var ze; + if (no) e: { + switch (n) { + case "compositionstart": + var Pe = "onCompositionStart"; + break e; + case "compositionend": + Pe = "onCompositionEnd"; + break e; + case "compositionupdate": + Pe = "onCompositionUpdate"; + break e; + } + Pe = void 0; + } + else ro ? uv(n, l) && (Pe = "onCompositionEnd") : n === "keydown" && l.keyCode === 229 && (Pe = "onCompositionStart"); + Pe && (iv && l.locale !== "ko" && (ro || Pe !== "onCompositionStart" ? Pe === "onCompositionEnd" && ro && (ze = N()) : (Ja = I, h = "value" in Ja ? Ja.value : Ja.textContent, ro = !0)), Me = ns(z, Pe), 0 < Me.length && (Pe = new Xf(Pe, n, null, l, I), W.push({ event: Pe, listeners: Me }), ze ? Pe.data = ze : (ze = ov(l), ze !== null && (Pe.data = ze)))), (ze = Xo ? sv(n, l) : Km(n, l)) && (z = ns(z, "onBeforeInput"), 0 < z.length && (I = new Xf("onBeforeInput", "beforeinput", null, l, I), W.push({ event: I, listeners: z }), I.data = ze)); + } + cu(W, r); + }); + } + function uo(n, r, l) { + return { instance: n, listener: r, currentTarget: l }; + } + function ns(n, r) { + for (var l = r + "Capture", o = []; n !== null; ) { + var c = n, d = c.stateNode; + c.tag === 5 && d !== null && (c = d, d = xr(n, l), d != null && o.unshift(uo(n, d, c)), d = xr(n, r), d != null && o.push(uo(n, d, c))), n = n.return; + } + return o; + } + function Rl(n) { + if (n === null) return null; + do + n = n.return; + while (n && n.tag !== 5); + return n || null; + } + function wv(n, r, l, o, c) { + for (var d = r._reactName, m = []; l !== null && l !== o; ) { + var E = l, T = E.alternate, z = E.stateNode; + if (T !== null && T === o) break; + E.tag === 5 && z !== null && (E = z, c ? (T = xr(l, d), T != null && m.unshift(uo(l, T, E))) : c || (T = xr(l, d), T != null && m.push(uo(l, T, E)))), l = l.return; + } + m.length !== 0 && n.push({ event: r, listeners: m }); + } + var xv = /\r\n?/g, ly = /\u0000|\uFFFD/g; + function _v(n) { + return (typeof n == "string" ? n : "" + n).replace(xv, ` +`).replace(ly, ""); + } + function gc(n, r, l) { + if (r = _v(r), _v(n) !== r && l) throw Error(A(425)); + } + function Tl() { + } + var rs = null, fu = null; + function Sc(n, r) { + return n === "textarea" || n === "noscript" || typeof r.children == "string" || typeof r.children == "number" || typeof r.dangerouslySetInnerHTML == "object" && r.dangerouslySetInnerHTML !== null && r.dangerouslySetInnerHTML.__html != null; + } + var Ec = typeof setTimeout == "function" ? setTimeout : void 0, dd = typeof clearTimeout == "function" ? clearTimeout : void 0, bv = typeof Promise == "function" ? Promise : void 0, oo = typeof queueMicrotask == "function" ? queueMicrotask : typeof bv < "u" ? function(n) { + return bv.resolve(null).then(n).catch(Cc); + } : Ec; + function Cc(n) { + setTimeout(function() { + throw n; + }); + } + function so(n, r) { + var l = r, o = 0; + do { + var c = l.nextSibling; + if (n.removeChild(l), c && c.nodeType === 8) if (l = c.data, l === "/$") { + if (o === 0) { + n.removeChild(c), Ka(r); + return; + } + o--; + } else l !== "$" && l !== "$?" && l !== "$!" || o++; + l = c; + } while (l); + Ka(r); + } + function gi(n) { + for (; n != null; n = n.nextSibling) { + var r = n.nodeType; + if (r === 1 || r === 3) break; + if (r === 8) { + if (r = n.data, r === "$" || r === "$!" || r === "$?") break; + if (r === "/$") return null; + } + } + return n; + } + function Dv(n) { + n = n.previousSibling; + for (var r = 0; n; ) { + if (n.nodeType === 8) { + var l = n.data; + if (l === "$" || l === "$!" || l === "$?") { + if (r === 0) return n; + r--; + } else l === "/$" && r++; + } + n = n.previousSibling; + } + return null; + } + var wl = Math.random().toString(36).slice(2), Si = "__reactFiber$" + wl, as = "__reactProps$" + wl, Yi = "__reactContainer$" + wl, is = "__reactEvents$" + wl, co = "__reactListeners$" + wl, uy = "__reactHandles$" + wl; + function du(n) { + var r = n[Si]; + if (r) return r; + for (var l = n.parentNode; l; ) { + if (r = l[Yi] || l[Si]) { + if (l = r.alternate, r.child !== null || l !== null && l.child !== null) for (n = Dv(n); n !== null; ) { + if (l = n[Si]) return l; + n = Dv(n); + } + return r; + } + n = l, l = n.parentNode; + } + return null; + } + function be(n) { + return n = n[Si] || n[Yi], !n || n.tag !== 5 && n.tag !== 6 && n.tag !== 13 && n.tag !== 3 ? null : n; + } + function ei(n) { + if (n.tag === 5 || n.tag === 6) return n.stateNode; + throw Error(A(33)); + } + function hn(n) { + return n[as] || null; + } + var gt = [], ba = -1; + function Da(n) { + return { current: n }; + } + function nn(n) { + 0 > ba || (n.current = gt[ba], gt[ba] = null, ba--); + } + function xe(n, r) { + ba++, gt[ba] = n.current, n.current = r; + } + var Er = {}, Sn = Da(Er), Yn = Da(!1), Qr = Er; + function Wr(n, r) { + var l = n.type.contextTypes; + if (!l) return Er; + var o = n.stateNode; + if (o && o.__reactInternalMemoizedUnmaskedChildContext === r) return o.__reactInternalMemoizedMaskedChildContext; + var c = {}, d; + for (d in l) c[d] = r[d]; + return o && (n = n.stateNode, n.__reactInternalMemoizedUnmaskedChildContext = r, n.__reactInternalMemoizedMaskedChildContext = c), c; + } + function Mn(n) { + return n = n.childContextTypes, n != null; + } + function fo() { + nn(Yn), nn(Sn); + } + function kv(n, r, l) { + if (Sn.current !== Er) throw Error(A(168)); + xe(Sn, r), xe(Yn, l); + } + function ls(n, r, l) { + var o = n.stateNode; + if (r = r.childContextTypes, typeof o.getChildContext != "function") return l; + o = o.getChildContext(); + for (var c in o) if (!(c in r)) throw Error(A(108, Xe(n) || "Unknown", c)); + return ne({}, l, o); + } + function Xn(n) { + return n = (n = n.stateNode) && n.__reactInternalMemoizedMergedChildContext || Er, Qr = Sn.current, xe(Sn, n), xe(Yn, Yn.current), !0; + } + function Rc(n, r, l) { + var o = n.stateNode; + if (!o) throw Error(A(169)); + l ? (n = ls(n, r, Qr), o.__reactInternalMemoizedMergedChildContext = n, nn(Yn), nn(Sn), xe(Sn, n)) : nn(Yn), xe(Yn, l); + } + var Ei = null, po = !1, Ii = !1; + function Tc(n) { + Ei === null ? Ei = [n] : Ei.push(n); + } + function xl(n) { + po = !0, Tc(n); + } + function Ci() { + if (!Ii && Ei !== null) { + Ii = !0; + var n = 0, r = kt; + try { + var l = Ei; + for (kt = 1; n < l.length; n++) { + var o = l[n]; + do + o = o(!0); + while (o !== null); + } + Ei = null, po = !1; + } catch (c) { + throw Ei !== null && (Ei = Ei.slice(n + 1)), un(Ga, Ci), c; + } finally { + kt = r, Ii = !1; + } + } + return null; + } + var _l = [], bl = 0, Dl = null, Qi = 0, Nn = [], ka = 0, fa = null, Ri = 1, Ti = ""; + function pu(n, r) { + _l[bl++] = Qi, _l[bl++] = Dl, Dl = n, Qi = r; + } + function Ov(n, r, l) { + Nn[ka++] = Ri, Nn[ka++] = Ti, Nn[ka++] = fa, fa = n; + var o = Ri; + n = Ti; + var c = 32 - br(o) - 1; + o &= ~(1 << c), l += 1; + var d = 32 - br(r) + c; + if (30 < d) { + var m = c - c % 5; + d = (o & (1 << m) - 1).toString(32), o >>= m, c -= m, Ri = 1 << 32 - br(r) + c | l << c | o, Ti = d + n; + } else Ri = 1 << d | l << c | o, Ti = n; + } + function wc(n) { + n.return !== null && (pu(n, 1), Ov(n, 1, 0)); + } + function xc(n) { + for (; n === Dl; ) Dl = _l[--bl], _l[bl] = null, Qi = _l[--bl], _l[bl] = null; + for (; n === fa; ) fa = Nn[--ka], Nn[ka] = null, Ti = Nn[--ka], Nn[ka] = null, Ri = Nn[--ka], Nn[ka] = null; + } + var Gr = null, qr = null, fn = !1, Oa = null; + function pd(n, r) { + var l = Ua(5, null, null, 0); + l.elementType = "DELETED", l.stateNode = r, l.return = n, r = n.deletions, r === null ? (n.deletions = [l], n.flags |= 16) : r.push(l); + } + function Lv(n, r) { + switch (n.tag) { + case 5: + var l = n.type; + return r = r.nodeType !== 1 || l.toLowerCase() !== r.nodeName.toLowerCase() ? null : r, r !== null ? (n.stateNode = r, Gr = n, qr = gi(r.firstChild), !0) : !1; + case 6: + return r = n.pendingProps === "" || r.nodeType !== 3 ? null : r, r !== null ? (n.stateNode = r, Gr = n, qr = null, !0) : !1; + case 13: + return r = r.nodeType !== 8 ? null : r, r !== null ? (l = fa !== null ? { id: Ri, overflow: Ti } : null, n.memoizedState = { dehydrated: r, treeContext: l, retryLane: 1073741824 }, l = Ua(18, null, null, 0), l.stateNode = r, l.return = n, n.child = l, Gr = n, qr = null, !0) : !1; + default: + return !1; + } + } + function vd(n) { + return (n.mode & 1) !== 0 && (n.flags & 128) === 0; + } + function hd(n) { + if (fn) { + var r = qr; + if (r) { + var l = r; + if (!Lv(n, r)) { + if (vd(n)) throw Error(A(418)); + r = gi(l.nextSibling); + var o = Gr; + r && Lv(n, r) ? pd(o, l) : (n.flags = n.flags & -4097 | 2, fn = !1, Gr = n); + } + } else { + if (vd(n)) throw Error(A(418)); + n.flags = n.flags & -4097 | 2, fn = !1, Gr = n; + } + } + } + function In(n) { + for (n = n.return; n !== null && n.tag !== 5 && n.tag !== 3 && n.tag !== 13; ) n = n.return; + Gr = n; + } + function _c(n) { + if (n !== Gr) return !1; + if (!fn) return In(n), fn = !0, !1; + var r; + if ((r = n.tag !== 3) && !(r = n.tag !== 5) && (r = n.type, r = r !== "head" && r !== "body" && !Sc(n.type, n.memoizedProps)), r && (r = qr)) { + if (vd(n)) throw us(), Error(A(418)); + for (; r; ) pd(n, r), r = gi(r.nextSibling); + } + if (In(n), n.tag === 13) { + if (n = n.memoizedState, n = n !== null ? n.dehydrated : null, !n) throw Error(A(317)); + e: { + for (n = n.nextSibling, r = 0; n; ) { + if (n.nodeType === 8) { + var l = n.data; + if (l === "/$") { + if (r === 0) { + qr = gi(n.nextSibling); + break e; + } + r--; + } else l !== "$" && l !== "$!" && l !== "$?" || r++; + } + n = n.nextSibling; + } + qr = null; + } + } else qr = Gr ? gi(n.stateNode.nextSibling) : null; + return !0; + } + function us() { + for (var n = qr; n; ) n = gi(n.nextSibling); + } + function kl() { + qr = Gr = null, fn = !1; + } + function Wi(n) { + Oa === null ? Oa = [n] : Oa.push(n); + } + var oy = pt.ReactCurrentBatchConfig; + function vu(n, r, l) { + if (n = l.ref, n !== null && typeof n != "function" && typeof n != "object") { + if (l._owner) { + if (l = l._owner, l) { + if (l.tag !== 1) throw Error(A(309)); + var o = l.stateNode; + } + if (!o) throw Error(A(147, n)); + var c = o, d = "" + n; + return r !== null && r.ref !== null && typeof r.ref == "function" && r.ref._stringRef === d ? r.ref : (r = function(m) { + var E = c.refs; + m === null ? delete E[d] : E[d] = m; + }, r._stringRef = d, r); + } + if (typeof n != "string") throw Error(A(284)); + if (!l._owner) throw Error(A(290, n)); + } + return n; + } + function bc(n, r) { + throw n = Object.prototype.toString.call(r), Error(A(31, n === "[object Object]" ? "object with keys {" + Object.keys(r).join(", ") + "}" : n)); + } + function Mv(n) { + var r = n._init; + return r(n._payload); + } + function hu(n) { + function r(D, x) { + if (n) { + var L = D.deletions; + L === null ? (D.deletions = [x], D.flags |= 16) : L.push(x); + } + } + function l(D, x) { + if (!n) return null; + for (; x !== null; ) r(D, x), x = x.sibling; + return null; + } + function o(D, x) { + for (D = /* @__PURE__ */ new Map(); x !== null; ) x.key !== null ? D.set(x.key, x) : D.set(x.index, x), x = x.sibling; + return D; + } + function c(D, x) { + return D = Fl(D, x), D.index = 0, D.sibling = null, D; + } + function d(D, x, L) { + return D.index = L, n ? (L = D.alternate, L !== null ? (L = L.index, L < x ? (D.flags |= 2, x) : L) : (D.flags |= 2, x)) : (D.flags |= 1048576, x); + } + function m(D) { + return n && D.alternate === null && (D.flags |= 2), D; + } + function E(D, x, L, Q) { + return x === null || x.tag !== 6 ? (x = Qd(L, D.mode, Q), x.return = D, x) : (x = c(x, L), x.return = D, x); + } + function T(D, x, L, Q) { + var ye = L.type; + return ye === Fe ? I(D, x, L.props.children, Q, L.key) : x !== null && (x.elementType === ye || typeof ye == "object" && ye !== null && ye.$$typeof === Dt && Mv(ye) === x.type) ? (Q = c(x, L.props), Q.ref = vu(D, x, L), Q.return = D, Q) : (Q = Fs(L.type, L.key, L.props, null, D.mode, Q), Q.ref = vu(D, x, L), Q.return = D, Q); + } + function z(D, x, L, Q) { + return x === null || x.tag !== 4 || x.stateNode.containerInfo !== L.containerInfo || x.stateNode.implementation !== L.implementation ? (x = uf(L, D.mode, Q), x.return = D, x) : (x = c(x, L.children || []), x.return = D, x); + } + function I(D, x, L, Q, ye) { + return x === null || x.tag !== 7 ? (x = Zi(L, D.mode, Q, ye), x.return = D, x) : (x = c(x, L), x.return = D, x); + } + function W(D, x, L) { + if (typeof x == "string" && x !== "" || typeof x == "number") return x = Qd("" + x, D.mode, L), x.return = D, x; + if (typeof x == "object" && x !== null) { + switch (x.$$typeof) { + case _e: + return L = Fs(x.type, x.key, x.props, null, D.mode, L), L.ref = vu(D, null, x), L.return = D, L; + case ot: + return x = uf(x, D.mode, L), x.return = D, x; + case Dt: + var Q = x._init; + return W(D, Q(x._payload), L); + } + if (Gn(x) || Re(x)) return x = Zi(x, D.mode, L, null), x.return = D, x; + bc(D, x); + } + return null; + } + function Y(D, x, L, Q) { + var ye = x !== null ? x.key : null; + if (typeof L == "string" && L !== "" || typeof L == "number") return ye !== null ? null : E(D, x, "" + L, Q); + if (typeof L == "object" && L !== null) { + switch (L.$$typeof) { + case _e: + return L.key === ye ? T(D, x, L, Q) : null; + case ot: + return L.key === ye ? z(D, x, L, Q) : null; + case Dt: + return ye = L._init, Y( + D, + x, + ye(L._payload), + Q + ); + } + if (Gn(L) || Re(L)) return ye !== null ? null : I(D, x, L, Q, null); + bc(D, L); + } + return null; + } + function se(D, x, L, Q, ye) { + if (typeof Q == "string" && Q !== "" || typeof Q == "number") return D = D.get(L) || null, E(x, D, "" + Q, ye); + if (typeof Q == "object" && Q !== null) { + switch (Q.$$typeof) { + case _e: + return D = D.get(Q.key === null ? L : Q.key) || null, T(x, D, Q, ye); + case ot: + return D = D.get(Q.key === null ? L : Q.key) || null, z(x, D, Q, ye); + case Dt: + var Me = Q._init; + return se(D, x, L, Me(Q._payload), ye); + } + if (Gn(Q) || Re(Q)) return D = D.get(L) || null, I(x, D, Q, ye, null); + bc(x, Q); + } + return null; + } + function me(D, x, L, Q) { + for (var ye = null, Me = null, ze = x, Pe = x = 0, Zn = null; ze !== null && Pe < L.length; Pe++) { + ze.index > Pe ? (Zn = ze, ze = null) : Zn = ze.sibling; + var Mt = Y(D, ze, L[Pe], Q); + if (Mt === null) { + ze === null && (ze = Zn); + break; + } + n && ze && Mt.alternate === null && r(D, ze), x = d(Mt, x, Pe), Me === null ? ye = Mt : Me.sibling = Mt, Me = Mt, ze = Zn; + } + if (Pe === L.length) return l(D, ze), fn && pu(D, Pe), ye; + if (ze === null) { + for (; Pe < L.length; Pe++) ze = W(D, L[Pe], Q), ze !== null && (x = d(ze, x, Pe), Me === null ? ye = ze : Me.sibling = ze, Me = ze); + return fn && pu(D, Pe), ye; + } + for (ze = o(D, ze); Pe < L.length; Pe++) Zn = se(ze, D, Pe, L[Pe], Q), Zn !== null && (n && Zn.alternate !== null && ze.delete(Zn.key === null ? Pe : Zn.key), x = d(Zn, x, Pe), Me === null ? ye = Zn : Me.sibling = Zn, Me = Zn); + return n && ze.forEach(function(Pl) { + return r(D, Pl); + }), fn && pu(D, Pe), ye; + } + function Se(D, x, L, Q) { + var ye = Re(L); + if (typeof ye != "function") throw Error(A(150)); + if (L = ye.call(L), L == null) throw Error(A(151)); + for (var Me = ye = null, ze = x, Pe = x = 0, Zn = null, Mt = L.next(); ze !== null && !Mt.done; Pe++, Mt = L.next()) { + ze.index > Pe ? (Zn = ze, ze = null) : Zn = ze.sibling; + var Pl = Y(D, ze, Mt.value, Q); + if (Pl === null) { + ze === null && (ze = Zn); + break; + } + n && ze && Pl.alternate === null && r(D, ze), x = d(Pl, x, Pe), Me === null ? ye = Pl : Me.sibling = Pl, Me = Pl, ze = Zn; + } + if (Mt.done) return l( + D, + ze + ), fn && pu(D, Pe), ye; + if (ze === null) { + for (; !Mt.done; Pe++, Mt = L.next()) Mt = W(D, Mt.value, Q), Mt !== null && (x = d(Mt, x, Pe), Me === null ? ye = Mt : Me.sibling = Mt, Me = Mt); + return fn && pu(D, Pe), ye; + } + for (ze = o(D, ze); !Mt.done; Pe++, Mt = L.next()) Mt = se(ze, D, Pe, Mt.value, Q), Mt !== null && (n && Mt.alternate !== null && ze.delete(Mt.key === null ? Pe : Mt.key), x = d(Mt, x, Pe), Me === null ? ye = Mt : Me.sibling = Mt, Me = Mt); + return n && ze.forEach(function(vh) { + return r(D, vh); + }), fn && pu(D, Pe), ye; + } + function bn(D, x, L, Q) { + if (typeof L == "object" && L !== null && L.type === Fe && L.key === null && (L = L.props.children), typeof L == "object" && L !== null) { + switch (L.$$typeof) { + case _e: + e: { + for (var ye = L.key, Me = x; Me !== null; ) { + if (Me.key === ye) { + if (ye = L.type, ye === Fe) { + if (Me.tag === 7) { + l(D, Me.sibling), x = c(Me, L.props.children), x.return = D, D = x; + break e; + } + } else if (Me.elementType === ye || typeof ye == "object" && ye !== null && ye.$$typeof === Dt && Mv(ye) === Me.type) { + l(D, Me.sibling), x = c(Me, L.props), x.ref = vu(D, Me, L), x.return = D, D = x; + break e; + } + l(D, Me); + break; + } else r(D, Me); + Me = Me.sibling; + } + L.type === Fe ? (x = Zi(L.props.children, D.mode, Q, L.key), x.return = D, D = x) : (Q = Fs(L.type, L.key, L.props, null, D.mode, Q), Q.ref = vu(D, x, L), Q.return = D, D = Q); + } + return m(D); + case ot: + e: { + for (Me = L.key; x !== null; ) { + if (x.key === Me) if (x.tag === 4 && x.stateNode.containerInfo === L.containerInfo && x.stateNode.implementation === L.implementation) { + l(D, x.sibling), x = c(x, L.children || []), x.return = D, D = x; + break e; + } else { + l(D, x); + break; + } + else r(D, x); + x = x.sibling; + } + x = uf(L, D.mode, Q), x.return = D, D = x; + } + return m(D); + case Dt: + return Me = L._init, bn(D, x, Me(L._payload), Q); + } + if (Gn(L)) return me(D, x, L, Q); + if (Re(L)) return Se(D, x, L, Q); + bc(D, L); + } + return typeof L == "string" && L !== "" || typeof L == "number" ? (L = "" + L, x !== null && x.tag === 6 ? (l(D, x.sibling), x = c(x, L), x.return = D, D = x) : (l(D, x), x = Qd(L, D.mode, Q), x.return = D, D = x), m(D)) : l(D, x); + } + return bn; + } + var Tn = hu(!0), ie = hu(!1), da = Da(null), Xr = null, vo = null, md = null; + function yd() { + md = vo = Xr = null; + } + function gd(n) { + var r = da.current; + nn(da), n._currentValue = r; + } + function Sd(n, r, l) { + for (; n !== null; ) { + var o = n.alternate; + if ((n.childLanes & r) !== r ? (n.childLanes |= r, o !== null && (o.childLanes |= r)) : o !== null && (o.childLanes & r) !== r && (o.childLanes |= r), n === l) break; + n = n.return; + } + } + function mn(n, r) { + Xr = n, md = vo = null, n = n.dependencies, n !== null && n.firstContext !== null && ((n.lanes & r) !== 0 && (Un = !0), n.firstContext = null); + } + function La(n) { + var r = n._currentValue; + if (md !== n) if (n = { context: n, memoizedValue: r, next: null }, vo === null) { + if (Xr === null) throw Error(A(308)); + vo = n, Xr.dependencies = { lanes: 0, firstContext: n }; + } else vo = vo.next = n; + return r; + } + var mu = null; + function Ed(n) { + mu === null ? mu = [n] : mu.push(n); + } + function Cd(n, r, l, o) { + var c = r.interleaved; + return c === null ? (l.next = l, Ed(r)) : (l.next = c.next, c.next = l), r.interleaved = l, pa(n, o); + } + function pa(n, r) { + n.lanes |= r; + var l = n.alternate; + for (l !== null && (l.lanes |= r), l = n, n = n.return; n !== null; ) n.childLanes |= r, l = n.alternate, l !== null && (l.childLanes |= r), l = n, n = n.return; + return l.tag === 3 ? l.stateNode : null; + } + var va = !1; + function Rd(n) { + n.updateQueue = { baseState: n.memoizedState, firstBaseUpdate: null, lastBaseUpdate: null, shared: { pending: null, interleaved: null, lanes: 0 }, effects: null }; + } + function Nv(n, r) { + n = n.updateQueue, r.updateQueue === n && (r.updateQueue = { baseState: n.baseState, firstBaseUpdate: n.firstBaseUpdate, lastBaseUpdate: n.lastBaseUpdate, shared: n.shared, effects: n.effects }); + } + function Gi(n, r) { + return { eventTime: n, lane: r, tag: 0, payload: null, callback: null, next: null }; + } + function Ol(n, r, l) { + var o = n.updateQueue; + if (o === null) return null; + if (o = o.shared, (St & 2) !== 0) { + var c = o.pending; + return c === null ? r.next = r : (r.next = c.next, c.next = r), o.pending = r, pa(n, l); + } + return c = o.interleaved, c === null ? (r.next = r, Ed(o)) : (r.next = c.next, c.next = r), o.interleaved = r, pa(n, l); + } + function Dc(n, r, l) { + if (r = r.updateQueue, r !== null && (r = r.shared, (l & 4194240) !== 0)) { + var o = r.lanes; + o &= n.pendingLanes, l |= o, r.lanes = l, Hi(n, l); + } + } + function zv(n, r) { + var l = n.updateQueue, o = n.alternate; + if (o !== null && (o = o.updateQueue, l === o)) { + var c = null, d = null; + if (l = l.firstBaseUpdate, l !== null) { + do { + var m = { eventTime: l.eventTime, lane: l.lane, tag: l.tag, payload: l.payload, callback: l.callback, next: null }; + d === null ? c = d = m : d = d.next = m, l = l.next; + } while (l !== null); + d === null ? c = d = r : d = d.next = r; + } else c = d = r; + l = { baseState: o.baseState, firstBaseUpdate: c, lastBaseUpdate: d, shared: o.shared, effects: o.effects }, n.updateQueue = l; + return; + } + n = l.lastBaseUpdate, n === null ? l.firstBaseUpdate = r : n.next = r, l.lastBaseUpdate = r; + } + function os(n, r, l, o) { + var c = n.updateQueue; + va = !1; + var d = c.firstBaseUpdate, m = c.lastBaseUpdate, E = c.shared.pending; + if (E !== null) { + c.shared.pending = null; + var T = E, z = T.next; + T.next = null, m === null ? d = z : m.next = z, m = T; + var I = n.alternate; + I !== null && (I = I.updateQueue, E = I.lastBaseUpdate, E !== m && (E === null ? I.firstBaseUpdate = z : E.next = z, I.lastBaseUpdate = T)); + } + if (d !== null) { + var W = c.baseState; + m = 0, I = z = T = null, E = d; + do { + var Y = E.lane, se = E.eventTime; + if ((o & Y) === Y) { + I !== null && (I = I.next = { + eventTime: se, + lane: 0, + tag: E.tag, + payload: E.payload, + callback: E.callback, + next: null + }); + e: { + var me = n, Se = E; + switch (Y = r, se = l, Se.tag) { + case 1: + if (me = Se.payload, typeof me == "function") { + W = me.call(se, W, Y); + break e; + } + W = me; + break e; + case 3: + me.flags = me.flags & -65537 | 128; + case 0: + if (me = Se.payload, Y = typeof me == "function" ? me.call(se, W, Y) : me, Y == null) break e; + W = ne({}, W, Y); + break e; + case 2: + va = !0; + } + } + E.callback !== null && E.lane !== 0 && (n.flags |= 64, Y = c.effects, Y === null ? c.effects = [E] : Y.push(E)); + } else se = { eventTime: se, lane: Y, tag: E.tag, payload: E.payload, callback: E.callback, next: null }, I === null ? (z = I = se, T = W) : I = I.next = se, m |= Y; + if (E = E.next, E === null) { + if (E = c.shared.pending, E === null) break; + Y = E, E = Y.next, Y.next = null, c.lastBaseUpdate = Y, c.shared.pending = null; + } + } while (!0); + if (I === null && (T = W), c.baseState = T, c.firstBaseUpdate = z, c.lastBaseUpdate = I, r = c.shared.interleaved, r !== null) { + c = r; + do + m |= c.lane, c = c.next; + while (c !== r); + } else d === null && (c.shared.lanes = 0); + Di |= m, n.lanes = m, n.memoizedState = W; + } + } + function Td(n, r, l) { + if (n = r.effects, r.effects = null, n !== null) for (r = 0; r < n.length; r++) { + var o = n[r], c = o.callback; + if (c !== null) { + if (o.callback = null, o = l, typeof c != "function") throw Error(A(191, c)); + c.call(o); + } + } + } + var ss = {}, wi = Da(ss), cs = Da(ss), fs = Da(ss); + function yu(n) { + if (n === ss) throw Error(A(174)); + return n; + } + function wd(n, r) { + switch (xe(fs, r), xe(cs, n), xe(wi, ss), n = r.nodeType, n) { + case 9: + case 11: + r = (r = r.documentElement) ? r.namespaceURI : oa(null, ""); + break; + default: + n = n === 8 ? r.parentNode : r, r = n.namespaceURI || null, n = n.tagName, r = oa(r, n); + } + nn(wi), xe(wi, r); + } + function gu() { + nn(wi), nn(cs), nn(fs); + } + function Uv(n) { + yu(fs.current); + var r = yu(wi.current), l = oa(r, n.type); + r !== l && (xe(cs, n), xe(wi, l)); + } + function kc(n) { + cs.current === n && (nn(wi), nn(cs)); + } + var yn = Da(0); + function Oc(n) { + for (var r = n; r !== null; ) { + if (r.tag === 13) { + var l = r.memoizedState; + if (l !== null && (l = l.dehydrated, l === null || l.data === "$?" || l.data === "$!")) return r; + } else if (r.tag === 19 && r.memoizedProps.revealOrder !== void 0) { + if ((r.flags & 128) !== 0) return r; + } else if (r.child !== null) { + r.child.return = r, r = r.child; + continue; + } + if (r === n) break; + for (; r.sibling === null; ) { + if (r.return === null || r.return === n) return null; + r = r.return; + } + r.sibling.return = r.return, r = r.sibling; + } + return null; + } + var ds = []; + function De() { + for (var n = 0; n < ds.length; n++) ds[n]._workInProgressVersionPrimary = null; + ds.length = 0; + } + var lt = pt.ReactCurrentDispatcher, Ot = pt.ReactCurrentBatchConfig, Wt = 0, Lt = null, zn = null, Kn = null, Lc = !1, ps = !1, Su = 0, $ = 0; + function bt() { + throw Error(A(321)); + } + function Ae(n, r) { + if (r === null) return !1; + for (var l = 0; l < r.length && l < n.length; l++) if (!Za(n[l], r[l])) return !1; + return !0; + } + function Ll(n, r, l, o, c, d) { + if (Wt = d, Lt = r, r.memoizedState = null, r.updateQueue = null, r.lanes = 0, lt.current = n === null || n.memoizedState === null ? Qc : Ss, n = l(o, c), ps) { + d = 0; + do { + if (ps = !1, Su = 0, 25 <= d) throw Error(A(301)); + d += 1, Kn = zn = null, r.updateQueue = null, lt.current = Wc, n = l(o, c); + } while (ps); + } + if (lt.current = wu, r = zn !== null && zn.next !== null, Wt = 0, Kn = zn = Lt = null, Lc = !1, r) throw Error(A(300)); + return n; + } + function ti() { + var n = Su !== 0; + return Su = 0, n; + } + function Cr() { + var n = { memoizedState: null, baseState: null, baseQueue: null, queue: null, next: null }; + return Kn === null ? Lt.memoizedState = Kn = n : Kn = Kn.next = n, Kn; + } + function wn() { + if (zn === null) { + var n = Lt.alternate; + n = n !== null ? n.memoizedState : null; + } else n = zn.next; + var r = Kn === null ? Lt.memoizedState : Kn.next; + if (r !== null) Kn = r, zn = n; + else { + if (n === null) throw Error(A(310)); + zn = n, n = { memoizedState: zn.memoizedState, baseState: zn.baseState, baseQueue: zn.baseQueue, queue: zn.queue, next: null }, Kn === null ? Lt.memoizedState = Kn = n : Kn = Kn.next = n; + } + return Kn; + } + function qi(n, r) { + return typeof r == "function" ? r(n) : r; + } + function Ml(n) { + var r = wn(), l = r.queue; + if (l === null) throw Error(A(311)); + l.lastRenderedReducer = n; + var o = zn, c = o.baseQueue, d = l.pending; + if (d !== null) { + if (c !== null) { + var m = c.next; + c.next = d.next, d.next = m; + } + o.baseQueue = c = d, l.pending = null; + } + if (c !== null) { + d = c.next, o = o.baseState; + var E = m = null, T = null, z = d; + do { + var I = z.lane; + if ((Wt & I) === I) T !== null && (T = T.next = { lane: 0, action: z.action, hasEagerState: z.hasEagerState, eagerState: z.eagerState, next: null }), o = z.hasEagerState ? z.eagerState : n(o, z.action); + else { + var W = { + lane: I, + action: z.action, + hasEagerState: z.hasEagerState, + eagerState: z.eagerState, + next: null + }; + T === null ? (E = T = W, m = o) : T = T.next = W, Lt.lanes |= I, Di |= I; + } + z = z.next; + } while (z !== null && z !== d); + T === null ? m = o : T.next = E, Za(o, r.memoizedState) || (Un = !0), r.memoizedState = o, r.baseState = m, r.baseQueue = T, l.lastRenderedState = o; + } + if (n = l.interleaved, n !== null) { + c = n; + do + d = c.lane, Lt.lanes |= d, Di |= d, c = c.next; + while (c !== n); + } else c === null && (l.lanes = 0); + return [r.memoizedState, l.dispatch]; + } + function Eu(n) { + var r = wn(), l = r.queue; + if (l === null) throw Error(A(311)); + l.lastRenderedReducer = n; + var o = l.dispatch, c = l.pending, d = r.memoizedState; + if (c !== null) { + l.pending = null; + var m = c = c.next; + do + d = n(d, m.action), m = m.next; + while (m !== c); + Za(d, r.memoizedState) || (Un = !0), r.memoizedState = d, r.baseQueue === null && (r.baseState = d), l.lastRenderedState = d; + } + return [d, o]; + } + function Mc() { + } + function Nc(n, r) { + var l = Lt, o = wn(), c = r(), d = !Za(o.memoizedState, c); + if (d && (o.memoizedState = c, Un = !0), o = o.queue, vs(Ac.bind(null, l, o, n), [n]), o.getSnapshot !== r || d || Kn !== null && Kn.memoizedState.tag & 1) { + if (l.flags |= 2048, Cu(9, Uc.bind(null, l, o, c, r), void 0, null), Qn === null) throw Error(A(349)); + (Wt & 30) !== 0 || zc(l, r, c); + } + return c; + } + function zc(n, r, l) { + n.flags |= 16384, n = { getSnapshot: r, value: l }, r = Lt.updateQueue, r === null ? (r = { lastEffect: null, stores: null }, Lt.updateQueue = r, r.stores = [n]) : (l = r.stores, l === null ? r.stores = [n] : l.push(n)); + } + function Uc(n, r, l, o) { + r.value = l, r.getSnapshot = o, Fc(r) && jc(n); + } + function Ac(n, r, l) { + return l(function() { + Fc(r) && jc(n); + }); + } + function Fc(n) { + var r = n.getSnapshot; + n = n.value; + try { + var l = r(); + return !Za(n, l); + } catch { + return !0; + } + } + function jc(n) { + var r = pa(n, 1); + r !== null && Nr(r, n, 1, -1); + } + function Hc(n) { + var r = Cr(); + return typeof n == "function" && (n = n()), r.memoizedState = r.baseState = n, n = { pending: null, interleaved: null, lanes: 0, dispatch: null, lastRenderedReducer: qi, lastRenderedState: n }, r.queue = n, n = n.dispatch = Tu.bind(null, Lt, n), [r.memoizedState, n]; + } + function Cu(n, r, l, o) { + return n = { tag: n, create: r, destroy: l, deps: o, next: null }, r = Lt.updateQueue, r === null ? (r = { lastEffect: null, stores: null }, Lt.updateQueue = r, r.lastEffect = n.next = n) : (l = r.lastEffect, l === null ? r.lastEffect = n.next = n : (o = l.next, l.next = n, n.next = o, r.lastEffect = n)), n; + } + function Pc() { + return wn().memoizedState; + } + function ho(n, r, l, o) { + var c = Cr(); + Lt.flags |= n, c.memoizedState = Cu(1 | r, l, void 0, o === void 0 ? null : o); + } + function mo(n, r, l, o) { + var c = wn(); + o = o === void 0 ? null : o; + var d = void 0; + if (zn !== null) { + var m = zn.memoizedState; + if (d = m.destroy, o !== null && Ae(o, m.deps)) { + c.memoizedState = Cu(r, l, d, o); + return; + } + } + Lt.flags |= n, c.memoizedState = Cu(1 | r, l, d, o); + } + function Vc(n, r) { + return ho(8390656, 8, n, r); + } + function vs(n, r) { + return mo(2048, 8, n, r); + } + function Bc(n, r) { + return mo(4, 2, n, r); + } + function hs(n, r) { + return mo(4, 4, n, r); + } + function Ru(n, r) { + if (typeof r == "function") return n = n(), r(n), function() { + r(null); + }; + if (r != null) return n = n(), r.current = n, function() { + r.current = null; + }; + } + function $c(n, r, l) { + return l = l != null ? l.concat([n]) : null, mo(4, 4, Ru.bind(null, r, n), l); + } + function ms() { + } + function Yc(n, r) { + var l = wn(); + r = r === void 0 ? null : r; + var o = l.memoizedState; + return o !== null && r !== null && Ae(r, o[1]) ? o[0] : (l.memoizedState = [n, r], n); + } + function Ic(n, r) { + var l = wn(); + r = r === void 0 ? null : r; + var o = l.memoizedState; + return o !== null && r !== null && Ae(r, o[1]) ? o[0] : (n = n(), l.memoizedState = [n, r], n); + } + function xd(n, r, l) { + return (Wt & 21) === 0 ? (n.baseState && (n.baseState = !1, Un = !0), n.memoizedState = l) : (Za(l, r) || (l = Gu(), Lt.lanes |= l, Di |= l, n.baseState = !0), r); + } + function ys(n, r) { + var l = kt; + kt = l !== 0 && 4 > l ? l : 4, n(!0); + var o = Ot.transition; + Ot.transition = {}; + try { + n(!1), r(); + } finally { + kt = l, Ot.transition = o; + } + } + function _d() { + return wn().memoizedState; + } + function gs(n, r, l) { + var o = ki(n); + if (l = { lane: o, action: l, hasEagerState: !1, eagerState: null, next: null }, Kr(n)) Av(r, l); + else if (l = Cd(n, r, l, o), l !== null) { + var c = jn(); + Nr(l, n, o, c), Xt(l, r, o); + } + } + function Tu(n, r, l) { + var o = ki(n), c = { lane: o, action: l, hasEagerState: !1, eagerState: null, next: null }; + if (Kr(n)) Av(r, c); + else { + var d = n.alternate; + if (n.lanes === 0 && (d === null || d.lanes === 0) && (d = r.lastRenderedReducer, d !== null)) try { + var m = r.lastRenderedState, E = d(m, l); + if (c.hasEagerState = !0, c.eagerState = E, Za(E, m)) { + var T = r.interleaved; + T === null ? (c.next = c, Ed(r)) : (c.next = T.next, T.next = c), r.interleaved = c; + return; + } + } catch { + } finally { + } + l = Cd(n, r, c, o), l !== null && (c = jn(), Nr(l, n, o, c), Xt(l, r, o)); + } + } + function Kr(n) { + var r = n.alternate; + return n === Lt || r !== null && r === Lt; + } + function Av(n, r) { + ps = Lc = !0; + var l = n.pending; + l === null ? r.next = r : (r.next = l.next, l.next = r), n.pending = r; + } + function Xt(n, r, l) { + if ((l & 4194240) !== 0) { + var o = r.lanes; + o &= n.pendingLanes, l |= o, r.lanes = l, Hi(n, l); + } + } + var wu = { readContext: La, useCallback: bt, useContext: bt, useEffect: bt, useImperativeHandle: bt, useInsertionEffect: bt, useLayoutEffect: bt, useMemo: bt, useReducer: bt, useRef: bt, useState: bt, useDebugValue: bt, useDeferredValue: bt, useTransition: bt, useMutableSource: bt, useSyncExternalStore: bt, useId: bt, unstable_isNewReconciler: !1 }, Qc = { readContext: La, useCallback: function(n, r) { + return Cr().memoizedState = [n, r === void 0 ? null : r], n; + }, useContext: La, useEffect: Vc, useImperativeHandle: function(n, r, l) { + return l = l != null ? l.concat([n]) : null, ho( + 4194308, + 4, + Ru.bind(null, r, n), + l + ); + }, useLayoutEffect: function(n, r) { + return ho(4194308, 4, n, r); + }, useInsertionEffect: function(n, r) { + return ho(4, 2, n, r); + }, useMemo: function(n, r) { + var l = Cr(); + return r = r === void 0 ? null : r, n = n(), l.memoizedState = [n, r], n; + }, useReducer: function(n, r, l) { + var o = Cr(); + return r = l !== void 0 ? l(r) : r, o.memoizedState = o.baseState = r, n = { pending: null, interleaved: null, lanes: 0, dispatch: null, lastRenderedReducer: n, lastRenderedState: r }, o.queue = n, n = n.dispatch = gs.bind(null, Lt, n), [o.memoizedState, n]; + }, useRef: function(n) { + var r = Cr(); + return n = { current: n }, r.memoizedState = n; + }, useState: Hc, useDebugValue: ms, useDeferredValue: function(n) { + return Cr().memoizedState = n; + }, useTransition: function() { + var n = Hc(!1), r = n[0]; + return n = ys.bind(null, n[1]), Cr().memoizedState = n, [r, n]; + }, useMutableSource: function() { + }, useSyncExternalStore: function(n, r, l) { + var o = Lt, c = Cr(); + if (fn) { + if (l === void 0) throw Error(A(407)); + l = l(); + } else { + if (l = r(), Qn === null) throw Error(A(349)); + (Wt & 30) !== 0 || zc(o, r, l); + } + c.memoizedState = l; + var d = { value: l, getSnapshot: r }; + return c.queue = d, Vc(Ac.bind( + null, + o, + d, + n + ), [n]), o.flags |= 2048, Cu(9, Uc.bind(null, o, d, l, r), void 0, null), l; + }, useId: function() { + var n = Cr(), r = Qn.identifierPrefix; + if (fn) { + var l = Ti, o = Ri; + l = (o & ~(1 << 32 - br(o) - 1)).toString(32) + l, r = ":" + r + "R" + l, l = Su++, 0 < l && (r += "H" + l.toString(32)), r += ":"; + } else l = $++, r = ":" + r + "r" + l.toString(32) + ":"; + return n.memoizedState = r; + }, unstable_isNewReconciler: !1 }, Ss = { + readContext: La, + useCallback: Yc, + useContext: La, + useEffect: vs, + useImperativeHandle: $c, + useInsertionEffect: Bc, + useLayoutEffect: hs, + useMemo: Ic, + useReducer: Ml, + useRef: Pc, + useState: function() { + return Ml(qi); + }, + useDebugValue: ms, + useDeferredValue: function(n) { + var r = wn(); + return xd(r, zn.memoizedState, n); + }, + useTransition: function() { + var n = Ml(qi)[0], r = wn().memoizedState; + return [n, r]; + }, + useMutableSource: Mc, + useSyncExternalStore: Nc, + useId: _d, + unstable_isNewReconciler: !1 + }, Wc = { readContext: La, useCallback: Yc, useContext: La, useEffect: vs, useImperativeHandle: $c, useInsertionEffect: Bc, useLayoutEffect: hs, useMemo: Ic, useReducer: Eu, useRef: Pc, useState: function() { + return Eu(qi); + }, useDebugValue: ms, useDeferredValue: function(n) { + var r = wn(); + return zn === null ? r.memoizedState = n : xd(r, zn.memoizedState, n); + }, useTransition: function() { + var n = Eu(qi)[0], r = wn().memoizedState; + return [n, r]; + }, useMutableSource: Mc, useSyncExternalStore: Nc, useId: _d, unstable_isNewReconciler: !1 }; + function ni(n, r) { + if (n && n.defaultProps) { + r = ne({}, r), n = n.defaultProps; + for (var l in n) r[l] === void 0 && (r[l] = n[l]); + return r; + } + return r; + } + function bd(n, r, l, o) { + r = n.memoizedState, l = l(o, r), l = l == null ? r : ne({}, r, l), n.memoizedState = l, n.lanes === 0 && (n.updateQueue.baseState = l); + } + var Gc = { isMounted: function(n) { + return (n = n._reactInternals) ? We(n) === n : !1; + }, enqueueSetState: function(n, r, l) { + n = n._reactInternals; + var o = jn(), c = ki(n), d = Gi(o, c); + d.payload = r, l != null && (d.callback = l), r = Ol(n, d, c), r !== null && (Nr(r, n, c, o), Dc(r, n, c)); + }, enqueueReplaceState: function(n, r, l) { + n = n._reactInternals; + var o = jn(), c = ki(n), d = Gi(o, c); + d.tag = 1, d.payload = r, l != null && (d.callback = l), r = Ol(n, d, c), r !== null && (Nr(r, n, c, o), Dc(r, n, c)); + }, enqueueForceUpdate: function(n, r) { + n = n._reactInternals; + var l = jn(), o = ki(n), c = Gi(l, o); + c.tag = 2, r != null && (c.callback = r), r = Ol(n, c, o), r !== null && (Nr(r, n, o, l), Dc(r, n, o)); + } }; + function Fv(n, r, l, o, c, d, m) { + return n = n.stateNode, typeof n.shouldComponentUpdate == "function" ? n.shouldComponentUpdate(o, d, m) : r.prototype && r.prototype.isPureReactComponent ? !Jo(l, o) || !Jo(c, d) : !0; + } + function qc(n, r, l) { + var o = !1, c = Er, d = r.contextType; + return typeof d == "object" && d !== null ? d = La(d) : (c = Mn(r) ? Qr : Sn.current, o = r.contextTypes, d = (o = o != null) ? Wr(n, c) : Er), r = new r(l, d), n.memoizedState = r.state !== null && r.state !== void 0 ? r.state : null, r.updater = Gc, n.stateNode = r, r._reactInternals = n, o && (n = n.stateNode, n.__reactInternalMemoizedUnmaskedChildContext = c, n.__reactInternalMemoizedMaskedChildContext = d), r; + } + function jv(n, r, l, o) { + n = r.state, typeof r.componentWillReceiveProps == "function" && r.componentWillReceiveProps(l, o), typeof r.UNSAFE_componentWillReceiveProps == "function" && r.UNSAFE_componentWillReceiveProps(l, o), r.state !== n && Gc.enqueueReplaceState(r, r.state, null); + } + function Es(n, r, l, o) { + var c = n.stateNode; + c.props = l, c.state = n.memoizedState, c.refs = {}, Rd(n); + var d = r.contextType; + typeof d == "object" && d !== null ? c.context = La(d) : (d = Mn(r) ? Qr : Sn.current, c.context = Wr(n, d)), c.state = n.memoizedState, d = r.getDerivedStateFromProps, typeof d == "function" && (bd(n, r, d, l), c.state = n.memoizedState), typeof r.getDerivedStateFromProps == "function" || typeof c.getSnapshotBeforeUpdate == "function" || typeof c.UNSAFE_componentWillMount != "function" && typeof c.componentWillMount != "function" || (r = c.state, typeof c.componentWillMount == "function" && c.componentWillMount(), typeof c.UNSAFE_componentWillMount == "function" && c.UNSAFE_componentWillMount(), r !== c.state && Gc.enqueueReplaceState(c, c.state, null), os(n, l, c, o), c.state = n.memoizedState), typeof c.componentDidMount == "function" && (n.flags |= 4194308); + } + function xu(n, r) { + try { + var l = "", o = r; + do + l += rt(o), o = o.return; + while (o); + var c = l; + } catch (d) { + c = ` +Error generating stack: ` + d.message + ` +` + d.stack; + } + return { value: n, source: r, stack: c, digest: null }; + } + function Dd(n, r, l) { + return { value: n, source: null, stack: l ?? null, digest: r ?? null }; + } + function kd(n, r) { + try { + console.error(r.value); + } catch (l) { + setTimeout(function() { + throw l; + }); + } + } + var Xc = typeof WeakMap == "function" ? WeakMap : Map; + function Hv(n, r, l) { + l = Gi(-1, l), l.tag = 3, l.payload = { element: null }; + var o = r.value; + return l.callback = function() { + Ro || (Ro = !0, Du = o), kd(n, r); + }, l; + } + function Od(n, r, l) { + l = Gi(-1, l), l.tag = 3; + var o = n.type.getDerivedStateFromError; + if (typeof o == "function") { + var c = r.value; + l.payload = function() { + return o(c); + }, l.callback = function() { + kd(n, r); + }; + } + var d = n.stateNode; + return d !== null && typeof d.componentDidCatch == "function" && (l.callback = function() { + kd(n, r), typeof o != "function" && (Ul === null ? Ul = /* @__PURE__ */ new Set([this]) : Ul.add(this)); + var m = r.stack; + this.componentDidCatch(r.value, { componentStack: m !== null ? m : "" }); + }), l; + } + function Ld(n, r, l) { + var o = n.pingCache; + if (o === null) { + o = n.pingCache = new Xc(); + var c = /* @__PURE__ */ new Set(); + o.set(r, c); + } else c = o.get(r), c === void 0 && (c = /* @__PURE__ */ new Set(), o.set(r, c)); + c.has(l) || (c.add(l), n = hy.bind(null, n, r, l), r.then(n, n)); + } + function Pv(n) { + do { + var r; + if ((r = n.tag === 13) && (r = n.memoizedState, r = r !== null ? r.dehydrated !== null : !0), r) return n; + n = n.return; + } while (n !== null); + return null; + } + function Nl(n, r, l, o, c) { + return (n.mode & 1) === 0 ? (n === r ? n.flags |= 65536 : (n.flags |= 128, l.flags |= 131072, l.flags &= -52805, l.tag === 1 && (l.alternate === null ? l.tag = 17 : (r = Gi(-1, 1), r.tag = 2, Ol(l, r, 1))), l.lanes |= 1), n) : (n.flags |= 65536, n.lanes = c, n); + } + var Cs = pt.ReactCurrentOwner, Un = !1; + function lr(n, r, l, o) { + r.child = n === null ? ie(r, null, l, o) : Tn(r, n.child, l, o); + } + function Jr(n, r, l, o, c) { + l = l.render; + var d = r.ref; + return mn(r, c), o = Ll(n, r, l, o, d, c), l = ti(), n !== null && !Un ? (r.updateQueue = n.updateQueue, r.flags &= -2053, n.lanes &= ~c, Na(n, r, c)) : (fn && l && wc(r), r.flags |= 1, lr(n, r, o, c), r.child); + } + function _u(n, r, l, o, c) { + if (n === null) { + var d = l.type; + return typeof d == "function" && !Id(d) && d.defaultProps === void 0 && l.compare === null && l.defaultProps === void 0 ? (r.tag = 15, r.type = d, qe(n, r, d, o, c)) : (n = Fs(l.type, null, o, r, r.mode, c), n.ref = r.ref, n.return = r, r.child = n); + } + if (d = n.child, (n.lanes & c) === 0) { + var m = d.memoizedProps; + if (l = l.compare, l = l !== null ? l : Jo, l(m, o) && n.ref === r.ref) return Na(n, r, c); + } + return r.flags |= 1, n = Fl(d, o), n.ref = r.ref, n.return = r, r.child = n; + } + function qe(n, r, l, o, c) { + if (n !== null) { + var d = n.memoizedProps; + if (Jo(d, o) && n.ref === r.ref) if (Un = !1, r.pendingProps = o = d, (n.lanes & c) !== 0) (n.flags & 131072) !== 0 && (Un = !0); + else return r.lanes = n.lanes, Na(n, r, c); + } + return Vv(n, r, l, o, c); + } + function Rs(n, r, l) { + var o = r.pendingProps, c = o.children, d = n !== null ? n.memoizedState : null; + if (o.mode === "hidden") if ((r.mode & 1) === 0) r.memoizedState = { baseLanes: 0, cachePool: null, transitions: null }, xe(So, ha), ha |= l; + else { + if ((l & 1073741824) === 0) return n = d !== null ? d.baseLanes | l : l, r.lanes = r.childLanes = 1073741824, r.memoizedState = { baseLanes: n, cachePool: null, transitions: null }, r.updateQueue = null, xe(So, ha), ha |= n, null; + r.memoizedState = { baseLanes: 0, cachePool: null, transitions: null }, o = d !== null ? d.baseLanes : l, xe(So, ha), ha |= o; + } + else d !== null ? (o = d.baseLanes | l, r.memoizedState = null) : o = l, xe(So, ha), ha |= o; + return lr(n, r, c, l), r.child; + } + function Md(n, r) { + var l = r.ref; + (n === null && l !== null || n !== null && n.ref !== l) && (r.flags |= 512, r.flags |= 2097152); + } + function Vv(n, r, l, o, c) { + var d = Mn(l) ? Qr : Sn.current; + return d = Wr(r, d), mn(r, c), l = Ll(n, r, l, o, d, c), o = ti(), n !== null && !Un ? (r.updateQueue = n.updateQueue, r.flags &= -2053, n.lanes &= ~c, Na(n, r, c)) : (fn && o && wc(r), r.flags |= 1, lr(n, r, l, c), r.child); + } + function Bv(n, r, l, o, c) { + if (Mn(l)) { + var d = !0; + Xn(r); + } else d = !1; + if (mn(r, c), r.stateNode === null) Ma(n, r), qc(r, l, o), Es(r, l, o, c), o = !0; + else if (n === null) { + var m = r.stateNode, E = r.memoizedProps; + m.props = E; + var T = m.context, z = l.contextType; + typeof z == "object" && z !== null ? z = La(z) : (z = Mn(l) ? Qr : Sn.current, z = Wr(r, z)); + var I = l.getDerivedStateFromProps, W = typeof I == "function" || typeof m.getSnapshotBeforeUpdate == "function"; + W || typeof m.UNSAFE_componentWillReceiveProps != "function" && typeof m.componentWillReceiveProps != "function" || (E !== o || T !== z) && jv(r, m, o, z), va = !1; + var Y = r.memoizedState; + m.state = Y, os(r, o, m, c), T = r.memoizedState, E !== o || Y !== T || Yn.current || va ? (typeof I == "function" && (bd(r, l, I, o), T = r.memoizedState), (E = va || Fv(r, l, E, o, Y, T, z)) ? (W || typeof m.UNSAFE_componentWillMount != "function" && typeof m.componentWillMount != "function" || (typeof m.componentWillMount == "function" && m.componentWillMount(), typeof m.UNSAFE_componentWillMount == "function" && m.UNSAFE_componentWillMount()), typeof m.componentDidMount == "function" && (r.flags |= 4194308)) : (typeof m.componentDidMount == "function" && (r.flags |= 4194308), r.memoizedProps = o, r.memoizedState = T), m.props = o, m.state = T, m.context = z, o = E) : (typeof m.componentDidMount == "function" && (r.flags |= 4194308), o = !1); + } else { + m = r.stateNode, Nv(n, r), E = r.memoizedProps, z = r.type === r.elementType ? E : ni(r.type, E), m.props = z, W = r.pendingProps, Y = m.context, T = l.contextType, typeof T == "object" && T !== null ? T = La(T) : (T = Mn(l) ? Qr : Sn.current, T = Wr(r, T)); + var se = l.getDerivedStateFromProps; + (I = typeof se == "function" || typeof m.getSnapshotBeforeUpdate == "function") || typeof m.UNSAFE_componentWillReceiveProps != "function" && typeof m.componentWillReceiveProps != "function" || (E !== W || Y !== T) && jv(r, m, o, T), va = !1, Y = r.memoizedState, m.state = Y, os(r, o, m, c); + var me = r.memoizedState; + E !== W || Y !== me || Yn.current || va ? (typeof se == "function" && (bd(r, l, se, o), me = r.memoizedState), (z = va || Fv(r, l, z, o, Y, me, T) || !1) ? (I || typeof m.UNSAFE_componentWillUpdate != "function" && typeof m.componentWillUpdate != "function" || (typeof m.componentWillUpdate == "function" && m.componentWillUpdate(o, me, T), typeof m.UNSAFE_componentWillUpdate == "function" && m.UNSAFE_componentWillUpdate(o, me, T)), typeof m.componentDidUpdate == "function" && (r.flags |= 4), typeof m.getSnapshotBeforeUpdate == "function" && (r.flags |= 1024)) : (typeof m.componentDidUpdate != "function" || E === n.memoizedProps && Y === n.memoizedState || (r.flags |= 4), typeof m.getSnapshotBeforeUpdate != "function" || E === n.memoizedProps && Y === n.memoizedState || (r.flags |= 1024), r.memoizedProps = o, r.memoizedState = me), m.props = o, m.state = me, m.context = T, o = z) : (typeof m.componentDidUpdate != "function" || E === n.memoizedProps && Y === n.memoizedState || (r.flags |= 4), typeof m.getSnapshotBeforeUpdate != "function" || E === n.memoizedProps && Y === n.memoizedState || (r.flags |= 1024), o = !1); + } + return Ts(n, r, l, o, d, c); + } + function Ts(n, r, l, o, c, d) { + Md(n, r); + var m = (r.flags & 128) !== 0; + if (!o && !m) return c && Rc(r, l, !1), Na(n, r, d); + o = r.stateNode, Cs.current = r; + var E = m && typeof l.getDerivedStateFromError != "function" ? null : o.render(); + return r.flags |= 1, n !== null && m ? (r.child = Tn(r, n.child, null, d), r.child = Tn(r, null, E, d)) : lr(n, r, E, d), r.memoizedState = o.state, c && Rc(r, l, !0), r.child; + } + function yo(n) { + var r = n.stateNode; + r.pendingContext ? kv(n, r.pendingContext, r.pendingContext !== r.context) : r.context && kv(n, r.context, !1), wd(n, r.containerInfo); + } + function $v(n, r, l, o, c) { + return kl(), Wi(c), r.flags |= 256, lr(n, r, l, o), r.child; + } + var Kc = { dehydrated: null, treeContext: null, retryLane: 0 }; + function Nd(n) { + return { baseLanes: n, cachePool: null, transitions: null }; + } + function Jc(n, r, l) { + var o = r.pendingProps, c = yn.current, d = !1, m = (r.flags & 128) !== 0, E; + if ((E = m) || (E = n !== null && n.memoizedState === null ? !1 : (c & 2) !== 0), E ? (d = !0, r.flags &= -129) : (n === null || n.memoizedState !== null) && (c |= 1), xe(yn, c & 1), n === null) + return hd(r), n = r.memoizedState, n !== null && (n = n.dehydrated, n !== null) ? ((r.mode & 1) === 0 ? r.lanes = 1 : n.data === "$!" ? r.lanes = 8 : r.lanes = 1073741824, null) : (m = o.children, n = o.fallback, d ? (o = r.mode, d = r.child, m = { mode: "hidden", children: m }, (o & 1) === 0 && d !== null ? (d.childLanes = 0, d.pendingProps = m) : d = jl(m, o, 0, null), n = Zi(n, o, l, null), d.return = r, n.return = r, d.sibling = n, r.child = d, r.child.memoizedState = Nd(l), r.memoizedState = Kc, n) : zd(r, m)); + if (c = n.memoizedState, c !== null && (E = c.dehydrated, E !== null)) return Yv(n, r, m, o, E, c, l); + if (d) { + d = o.fallback, m = r.mode, c = n.child, E = c.sibling; + var T = { mode: "hidden", children: o.children }; + return (m & 1) === 0 && r.child !== c ? (o = r.child, o.childLanes = 0, o.pendingProps = T, r.deletions = null) : (o = Fl(c, T), o.subtreeFlags = c.subtreeFlags & 14680064), E !== null ? d = Fl(E, d) : (d = Zi(d, m, l, null), d.flags |= 2), d.return = r, o.return = r, o.sibling = d, r.child = o, o = d, d = r.child, m = n.child.memoizedState, m = m === null ? Nd(l) : { baseLanes: m.baseLanes | l, cachePool: null, transitions: m.transitions }, d.memoizedState = m, d.childLanes = n.childLanes & ~l, r.memoizedState = Kc, o; + } + return d = n.child, n = d.sibling, o = Fl(d, { mode: "visible", children: o.children }), (r.mode & 1) === 0 && (o.lanes = l), o.return = r, o.sibling = null, n !== null && (l = r.deletions, l === null ? (r.deletions = [n], r.flags |= 16) : l.push(n)), r.child = o, r.memoizedState = null, o; + } + function zd(n, r) { + return r = jl({ mode: "visible", children: r }, n.mode, 0, null), r.return = n, n.child = r; + } + function ws(n, r, l, o) { + return o !== null && Wi(o), Tn(r, n.child, null, l), n = zd(r, r.pendingProps.children), n.flags |= 2, r.memoizedState = null, n; + } + function Yv(n, r, l, o, c, d, m) { + if (l) + return r.flags & 256 ? (r.flags &= -257, o = Dd(Error(A(422))), ws(n, r, m, o)) : r.memoizedState !== null ? (r.child = n.child, r.flags |= 128, null) : (d = o.fallback, c = r.mode, o = jl({ mode: "visible", children: o.children }, c, 0, null), d = Zi(d, c, m, null), d.flags |= 2, o.return = r, d.return = r, o.sibling = d, r.child = o, (r.mode & 1) !== 0 && Tn(r, n.child, null, m), r.child.memoizedState = Nd(m), r.memoizedState = Kc, d); + if ((r.mode & 1) === 0) return ws(n, r, m, null); + if (c.data === "$!") { + if (o = c.nextSibling && c.nextSibling.dataset, o) var E = o.dgst; + return o = E, d = Error(A(419)), o = Dd(d, o, void 0), ws(n, r, m, o); + } + if (E = (m & n.childLanes) !== 0, Un || E) { + if (o = Qn, o !== null) { + switch (m & -m) { + case 4: + c = 2; + break; + case 16: + c = 8; + break; + case 64: + case 128: + case 256: + case 512: + case 1024: + case 2048: + case 4096: + case 8192: + case 16384: + case 32768: + case 65536: + case 131072: + case 262144: + case 524288: + case 1048576: + case 2097152: + case 4194304: + case 8388608: + case 16777216: + case 33554432: + case 67108864: + c = 32; + break; + case 536870912: + c = 268435456; + break; + default: + c = 0; + } + c = (c & (o.suspendedLanes | m)) !== 0 ? 0 : c, c !== 0 && c !== d.retryLane && (d.retryLane = c, pa(n, c), Nr(o, n, c, -1)); + } + return Yd(), o = Dd(Error(A(421))), ws(n, r, m, o); + } + return c.data === "$?" ? (r.flags |= 128, r.child = n.child, r = my.bind(null, n), c._reactRetry = r, null) : (n = d.treeContext, qr = gi(c.nextSibling), Gr = r, fn = !0, Oa = null, n !== null && (Nn[ka++] = Ri, Nn[ka++] = Ti, Nn[ka++] = fa, Ri = n.id, Ti = n.overflow, fa = r), r = zd(r, o.children), r.flags |= 4096, r); + } + function Ud(n, r, l) { + n.lanes |= r; + var o = n.alternate; + o !== null && (o.lanes |= r), Sd(n.return, r, l); + } + function Or(n, r, l, o, c) { + var d = n.memoizedState; + d === null ? n.memoizedState = { isBackwards: r, rendering: null, renderingStartTime: 0, last: o, tail: l, tailMode: c } : (d.isBackwards = r, d.rendering = null, d.renderingStartTime = 0, d.last = o, d.tail = l, d.tailMode = c); + } + function xi(n, r, l) { + var o = r.pendingProps, c = o.revealOrder, d = o.tail; + if (lr(n, r, o.children, l), o = yn.current, (o & 2) !== 0) o = o & 1 | 2, r.flags |= 128; + else { + if (n !== null && (n.flags & 128) !== 0) e: for (n = r.child; n !== null; ) { + if (n.tag === 13) n.memoizedState !== null && Ud(n, l, r); + else if (n.tag === 19) Ud(n, l, r); + else if (n.child !== null) { + n.child.return = n, n = n.child; + continue; + } + if (n === r) break e; + for (; n.sibling === null; ) { + if (n.return === null || n.return === r) break e; + n = n.return; + } + n.sibling.return = n.return, n = n.sibling; + } + o &= 1; + } + if (xe(yn, o), (r.mode & 1) === 0) r.memoizedState = null; + else switch (c) { + case "forwards": + for (l = r.child, c = null; l !== null; ) n = l.alternate, n !== null && Oc(n) === null && (c = l), l = l.sibling; + l = c, l === null ? (c = r.child, r.child = null) : (c = l.sibling, l.sibling = null), Or(r, !1, c, l, d); + break; + case "backwards": + for (l = null, c = r.child, r.child = null; c !== null; ) { + if (n = c.alternate, n !== null && Oc(n) === null) { + r.child = c; + break; + } + n = c.sibling, c.sibling = l, l = c, c = n; + } + Or(r, !0, l, null, d); + break; + case "together": + Or(r, !1, null, null, void 0); + break; + default: + r.memoizedState = null; + } + return r.child; + } + function Ma(n, r) { + (r.mode & 1) === 0 && n !== null && (n.alternate = null, r.alternate = null, r.flags |= 2); + } + function Na(n, r, l) { + if (n !== null && (r.dependencies = n.dependencies), Di |= r.lanes, (l & r.childLanes) === 0) return null; + if (n !== null && r.child !== n.child) throw Error(A(153)); + if (r.child !== null) { + for (n = r.child, l = Fl(n, n.pendingProps), r.child = l, l.return = r; n.sibling !== null; ) n = n.sibling, l = l.sibling = Fl(n, n.pendingProps), l.return = r; + l.sibling = null; + } + return r.child; + } + function xs(n, r, l) { + switch (r.tag) { + case 3: + yo(r), kl(); + break; + case 5: + Uv(r); + break; + case 1: + Mn(r.type) && Xn(r); + break; + case 4: + wd(r, r.stateNode.containerInfo); + break; + case 10: + var o = r.type._context, c = r.memoizedProps.value; + xe(da, o._currentValue), o._currentValue = c; + break; + case 13: + if (o = r.memoizedState, o !== null) + return o.dehydrated !== null ? (xe(yn, yn.current & 1), r.flags |= 128, null) : (l & r.child.childLanes) !== 0 ? Jc(n, r, l) : (xe(yn, yn.current & 1), n = Na(n, r, l), n !== null ? n.sibling : null); + xe(yn, yn.current & 1); + break; + case 19: + if (o = (l & r.childLanes) !== 0, (n.flags & 128) !== 0) { + if (o) return xi(n, r, l); + r.flags |= 128; + } + if (c = r.memoizedState, c !== null && (c.rendering = null, c.tail = null, c.lastEffect = null), xe(yn, yn.current), o) break; + return null; + case 22: + case 23: + return r.lanes = 0, Rs(n, r, l); + } + return Na(n, r, l); + } + var za, An, Iv, Qv; + za = function(n, r) { + for (var l = r.child; l !== null; ) { + if (l.tag === 5 || l.tag === 6) n.appendChild(l.stateNode); + else if (l.tag !== 4 && l.child !== null) { + l.child.return = l, l = l.child; + continue; + } + if (l === r) break; + for (; l.sibling === null; ) { + if (l.return === null || l.return === r) return; + l = l.return; + } + l.sibling.return = l.return, l = l.sibling; + } + }, An = function() { + }, Iv = function(n, r, l, o) { + var c = n.memoizedProps; + if (c !== o) { + n = r.stateNode, yu(wi.current); + var d = null; + switch (l) { + case "input": + c = tr(n, c), o = tr(n, o), d = []; + break; + case "select": + c = ne({}, c, { value: void 0 }), o = ne({}, o, { value: void 0 }), d = []; + break; + case "textarea": + c = Bn(n, c), o = Bn(n, o), d = []; + break; + default: + typeof c.onClick != "function" && typeof o.onClick == "function" && (n.onclick = Tl); + } + ln(l, o); + var m; + l = null; + for (z in c) if (!o.hasOwnProperty(z) && c.hasOwnProperty(z) && c[z] != null) if (z === "style") { + var E = c[z]; + for (m in E) E.hasOwnProperty(m) && (l || (l = {}), l[m] = ""); + } else z !== "dangerouslySetInnerHTML" && z !== "children" && z !== "suppressContentEditableWarning" && z !== "suppressHydrationWarning" && z !== "autoFocus" && (Je.hasOwnProperty(z) ? d || (d = []) : (d = d || []).push(z, null)); + for (z in o) { + var T = o[z]; + if (E = c != null ? c[z] : void 0, o.hasOwnProperty(z) && T !== E && (T != null || E != null)) if (z === "style") if (E) { + for (m in E) !E.hasOwnProperty(m) || T && T.hasOwnProperty(m) || (l || (l = {}), l[m] = ""); + for (m in T) T.hasOwnProperty(m) && E[m] !== T[m] && (l || (l = {}), l[m] = T[m]); + } else l || (d || (d = []), d.push( + z, + l + )), l = T; + else z === "dangerouslySetInnerHTML" ? (T = T ? T.__html : void 0, E = E ? E.__html : void 0, T != null && E !== T && (d = d || []).push(z, T)) : z === "children" ? typeof T != "string" && typeof T != "number" || (d = d || []).push(z, "" + T) : z !== "suppressContentEditableWarning" && z !== "suppressHydrationWarning" && (Je.hasOwnProperty(z) ? (T != null && z === "onScroll" && jt("scroll", n), d || E === T || (d = [])) : (d = d || []).push(z, T)); + } + l && (d = d || []).push("style", l); + var z = d; + (r.updateQueue = z) && (r.flags |= 4); + } + }, Qv = function(n, r, l, o) { + l !== o && (r.flags |= 4); + }; + function _s(n, r) { + if (!fn) switch (n.tailMode) { + case "hidden": + r = n.tail; + for (var l = null; r !== null; ) r.alternate !== null && (l = r), r = r.sibling; + l === null ? n.tail = null : l.sibling = null; + break; + case "collapsed": + l = n.tail; + for (var o = null; l !== null; ) l.alternate !== null && (o = l), l = l.sibling; + o === null ? r || n.tail === null ? n.tail = null : n.tail.sibling = null : o.sibling = null; + } + } + function Jn(n) { + var r = n.alternate !== null && n.alternate.child === n.child, l = 0, o = 0; + if (r) for (var c = n.child; c !== null; ) l |= c.lanes | c.childLanes, o |= c.subtreeFlags & 14680064, o |= c.flags & 14680064, c.return = n, c = c.sibling; + else for (c = n.child; c !== null; ) l |= c.lanes | c.childLanes, o |= c.subtreeFlags, o |= c.flags, c.return = n, c = c.sibling; + return n.subtreeFlags |= o, n.childLanes = l, r; + } + function Wv(n, r, l) { + var o = r.pendingProps; + switch (xc(r), r.tag) { + case 2: + case 16: + case 15: + case 0: + case 11: + case 7: + case 8: + case 12: + case 9: + case 14: + return Jn(r), null; + case 1: + return Mn(r.type) && fo(), Jn(r), null; + case 3: + return o = r.stateNode, gu(), nn(Yn), nn(Sn), De(), o.pendingContext && (o.context = o.pendingContext, o.pendingContext = null), (n === null || n.child === null) && (_c(r) ? r.flags |= 4 : n === null || n.memoizedState.isDehydrated && (r.flags & 256) === 0 || (r.flags |= 1024, Oa !== null && (ku(Oa), Oa = null))), An(n, r), Jn(r), null; + case 5: + kc(r); + var c = yu(fs.current); + if (l = r.type, n !== null && r.stateNode != null) Iv(n, r, l, o, c), n.ref !== r.ref && (r.flags |= 512, r.flags |= 2097152); + else { + if (!o) { + if (r.stateNode === null) throw Error(A(166)); + return Jn(r), null; + } + if (n = yu(wi.current), _c(r)) { + o = r.stateNode, l = r.type; + var d = r.memoizedProps; + switch (o[Si] = r, o[as] = d, n = (r.mode & 1) !== 0, l) { + case "dialog": + jt("cancel", o), jt("close", o); + break; + case "iframe": + case "object": + case "embed": + jt("load", o); + break; + case "video": + case "audio": + for (c = 0; c < ts.length; c++) jt(ts[c], o); + break; + case "source": + jt("error", o); + break; + case "img": + case "image": + case "link": + jt( + "error", + o + ), jt("load", o); + break; + case "details": + jt("toggle", o); + break; + case "input": + Pn(o, d), jt("invalid", o); + break; + case "select": + o._wrapperState = { wasMultiple: !!d.multiple }, jt("invalid", o); + break; + case "textarea": + yr(o, d), jt("invalid", o); + } + ln(l, d), c = null; + for (var m in d) if (d.hasOwnProperty(m)) { + var E = d[m]; + m === "children" ? typeof E == "string" ? o.textContent !== E && (d.suppressHydrationWarning !== !0 && gc(o.textContent, E, n), c = ["children", E]) : typeof E == "number" && o.textContent !== "" + E && (d.suppressHydrationWarning !== !0 && gc( + o.textContent, + E, + n + ), c = ["children", "" + E]) : Je.hasOwnProperty(m) && E != null && m === "onScroll" && jt("scroll", o); + } + switch (l) { + case "input": + kn(o), oi(o, d, !0); + break; + case "textarea": + kn(o), On(o); + break; + case "select": + case "option": + break; + default: + typeof d.onClick == "function" && (o.onclick = Tl); + } + o = c, r.updateQueue = o, o !== null && (r.flags |= 4); + } else { + m = c.nodeType === 9 ? c : c.ownerDocument, n === "http://www.w3.org/1999/xhtml" && (n = gr(l)), n === "http://www.w3.org/1999/xhtml" ? l === "script" ? (n = m.createElement("div"), n.innerHTML = " - - - -
    -
    -
    - Summary - - - -
    - -
    - - - -
    -
    - - Pass
    - 40 -
    - - Skip
    - 1 -
    - - Fail
    - 59 -
    - - Total
    - 100 -
    - - Rules
    - 3 -
    -
    -
    -
    - - -
    -
    -
    Rules
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Severity - - Document - - Module - - Type - - Rule - - Category - - Status -
    - MEDIUM - - - System Administration.ActiveSessions - - - Administration - - Forms$Page - -
    - - InlineStylePropertyUsed - -

    - Inline style property used -
    - Avoid using the style property, because this will make the life of your UI designer a lot more complicated. It will be harder to overrule styles from CSS file level. -

    -
    -
    - Maintainability - - Failed -
    - HIGH - - ProjectSettings - - - - - Security$ProjectSecurity - -
    - - PasswordPolicy - -

    - Strong password policy -
    - Bruteforce is quite common. Ensure passwords are very strong. - Avoid using the style property, because this will make the life of your UI designer a lot more complicated. It will be harder to overrule styles from CSS file level. -

    -

    - Remediation -
    Ensure minimum password length of at least 8 characters and must use all character classes. -

    -

    - Error -
    [HIGH, Security, 4100] Password must require symbols -

    -
    -
    - Security - - Failed -
    - - -
    - Debug | - MxLint.com -
    - - - - \ No newline at end of file diff --git a/wwwroot/main.js b/wwwroot/main.js deleted file mode 100644 index e9d12d0..0000000 --- a/wwwroot/main.js +++ /dev/null @@ -1,393 +0,0 @@ - -document.filter = ["HIGH", "MEDIUM", "LOW"]; -const filtersAppliedKey = 'filtersApplied'; -function postMessage(message, data) { - if (window.chrome.webview === undefined) { - console.log("Missing webview ", message, data); - return; - } - console.log("PostMessage", message, data); - window.chrome.webview.postMessage({ message, data }); -} - -async function handleMessage(event) { - console.log(event); - const { message, data } = event.data; - if (message === "refreshData") { - await refreshData(); - } else if (message === "start") { - document.getElementById("loading").classList.remove("hidden"); - document.getElementById("ready").classList.add("hidden"); - } else if (message === "end") { - document.getElementById("loading").classList.add("hidden"); - document.getElementById("ready").classList.remove("hidden"); - } -} - -if (window.chrome.webview !== undefined) { - window.chrome.webview.addEventListener("message", handleMessage); -} - - -function getRule(path, rules) { - for (const rule of rules) { - if (rule.path == path) { - return rule; - } - } -} - -function flattenTestCase(testsuite, testcase, rules) { - const rule = getRule(testsuite.name, rules); - let status = "pass"; - let statusClass = "pico-background-cyan"; - if (rule.skipReason != "") { - status = "skip"; - statusClass = "pico-background-slate"; - } - if (testcase.failure) { - status = "fail"; - statusClass = "pico-background-orange"; - } - testcase.rule = rule; - testcase.status = status; - testcase.statusClass = statusClass; - // clean up name - let modelsource = "modelsource\\"; - if (testcase.name.startsWith(modelsource)) { - testcase.name = testcase.name.substring(modelsource.length); - } - return testcase; -} - -function createSpan(text, className) { - let span = document.createElement("span"); - span.innerText = text; - if (className !== undefined) { - span.classList.add(className); - } - return span; -} - -function createLink(text, href, obj) { - let a = document.createElement("a"); - a.innerText = text; - a.href = href; - if (obj !== undefined) { - a.addEventListener('click', (e) => { - postMessage("openDocument", { - document: obj.docname, - type: obj.doctype, - module: obj.module - }); - e.preventDefault(); - }); - } - return a; -} - -function renderTestCase(testcase) { - let tr = document.createElement("tr"); - let tdSeverity = document.createElement("td"); - tdSeverity.setAttribute("data-label", "Severity"); - let tdDocument = document.createElement("td"); - tdDocument.setAttribute("data-label", "Document"); - let tdModule = document.createElement("td"); - tdModule.setAttribute("data-label", "Module"); - let tdDocType = document.createElement("td"); - tdDocType.setAttribute("data-label", "Type"); - let tdRuleName = document.createElement("td"); - tdRuleName.setAttribute("data-label", "Rule"); - let tdCategory = document.createElement("td"); - tdCategory.setAttribute("data-label", "Category"); - let tdStatus = document.createElement("td"); - tdStatus.setAttribute("data-label", "Status"); - - let details = document.createElement("details"); - let summary = document.createElement("summary"); - summary.innerText = testcase.rule.ruleName; - details.appendChild(summary); - - let pDescription = document.createElement("p"); - let title = document.createElement("strong"); - title.innerText = testcase.rule.title; - let description = document.createElement("span"); - description.innerText = testcase.rule.description; - - - pDescription.appendChild(title); - pDescription.appendChild(document.createElement("br")); - pDescription.appendChild(description); - details.appendChild(pDescription); - - let pRemediation = document.createElement("p"); - let remediation = document.createElement("strong"); - remediation.innerText = "Remediation"; - let remediationDescription = document.createElement("span"); - remediationDescription.innerText = testcase.rule.remediation; - pRemediation.appendChild(remediation); - pRemediation.appendChild(document.createElement("br")); - pRemediation.appendChild(remediationDescription); - pRemediation.classList.add("pico-color-blue"); - details.appendChild(pRemediation); - - if (testcase.status === "fail") { - let pError = document.createElement("p"); - let error = document.createElement("strong"); - error.innerText = "Error"; - let errorDescription = document.createElement("span"); - errorDescription.innerText = testcase.failure.message; - pError.appendChild(error); - pError.appendChild(document.createElement("br")); - pError.appendChild(errorDescription); - pError.classList.add("pico-color-orange"); - details.appendChild(pError); - } - - - let spanStatus = document.createElement("span"); - spanStatus.innerText = testcase.status; - spanStatus.classList.add("label"); - spanStatus.classList.add(testcase.statusClass); - spanStatus.addEventListener('click', () => { - postMessage("openDocument", { document: testcase.name }); - }); - - tdSeverity.replaceChildren(createSpan(testcase.rule.severity)); - - if (testcase.docname === "Metadata" && testcase.doctype === "") { - tdDocument.replaceChildren(createSpan(testcase.docname)); - } else if (testcase.docname === "Security$ProjectSecurity" && testcase.doctype === "") { - tdDocument.replaceChildren(createSpan(testcase.docname)); - } else { - tdDocument.replaceChildren(createLink(testcase.docname, "#", testcase)); - } - - tdRuleName.replaceChildren(details); - tdCategory.replaceChildren(createSpan(testcase.rule.category)); - tdDocType.replaceChildren(createSpan(testcase.doctype)); - tdModule.replaceChildren(createSpan(testcase.module)); - tdStatus.replaceChildren(spanStatus); - - tr.appendChild(tdSeverity); - tr.appendChild(tdDocument); - tr.appendChild(tdModule); - tr.appendChild(tdDocType); - tr.appendChild(tdRuleName); - tr.appendChild(tdCategory); - tr.appendChild(tdStatus); - return tr; -} - -function allowTestCaseRender(testCase) { - const filterContent = document.getElementById('filter-content'); - let filtersApplied = filterContent.getAttribute(filtersAppliedKey); - if (!filtersApplied) { - return true; - } - - let allow = true; - - //check severity - filtersApplied = JSON.parse(filtersApplied); - let severityFilters = filtersApplied['Severity']; - //if (severityFiltersApplied && severityFiltersApplied != []) { - // allow = severityFiltersApplied.includes(testCase.rule.severity); - //} - allow = severityFilters.length === 0 || severityFilters.includes(testCase.rule.severity); - - return allow; -} - -function renderData() { - let details = document.getElementById("testcases"); - - let ruleItems = []; - let pass = 0; - let skip = 0; - let fail = 0; - let total = 0; - let all_testcases = []; - let data = document.data; - - for (const testsuite of data.testsuites) { - let testcases = testsuite.testcases; - for (const testcase of testcases) { - let ts = flattenTestCase(testsuite, testcase, data.rules); - if (allowTestCaseRender(ts)) { - if (ts.status === "fail") { - fail++; - ts.status_code = 1; - } else if (ts.status === "skip") { - skip++; - ts.status_code = 2; - } else { - pass++; - ts.status_code = 3; - } - if (ts.rule.severity === "HIGH") { - ts.severity_code = 1; - } else if (ts.rule.severity === "MEDIUM") { - ts.severity_code = 2; - } else { - ts.severity_code = 3; - } - const tokens = ts.name.split("\\"); - //console.log(tokens); - ts.module = ""; - if (tokens.length > 1) { - ts.module = tokens[0]; - const last = tokens.length - 1; - const rest = tokens.slice(1, tokens.length); - //console.log(rest); - if (rest.length > 1) { - ts.docname = rest.join("/").split('.')[0]; - ts.doctype = tokens[last].split('.')[1]; - } else { - ts.docname = tokens[last].split('.')[0] - ts.doctype = ""; - } - } else { - ts.docname = ts.name.split('.')[0]; - ts.doctype = ""; - - } - all_testcases.push(ts); - } - } - } - - let testcases_filtered = all_testcases.filter((ts) => document.filter.includes(ts.rule.severity)); - - let testcases_sorted = testcases_filtered.sort((a, b) => { - return a.status_code - b.status_code || a.severity_code - b.severity_code; - }); - - for (const ts of testcases_sorted) { - let tr = renderTestCase(ts); - ruleItems.push(tr); - } - let rules = data.rules.length; - - total = pass + skip + fail; - let passWidth = (pass / total) * 100; - let skipWidth = (skip / total) * 100; - let failWidth = (fail / total) * 100; - document.getElementById("summaryPass").style = "width: " + passWidth + "%;"; - document.getElementById("summarySkip").style = "width: " + skipWidth + "%;"; - document.getElementById("summaryFail").style = "width: " + failWidth + "%;"; - - document.getElementById("pass").innerText = pass; - document.getElementById("skip").innerText = skip; - document.getElementById("fail").innerText = fail; - document.getElementById("total").innerText = total; - document.getElementById("rules").innerText = rules; - - - if (total === 0) { - console.log("No testcases found"); - } - //else { - details.replaceChildren(...ruleItems); - //} -} - -function applyFilter(e) { - const filterContent = document.getElementById('filter-content'); - const filterType = e.getAttribute('parentFilter'); - - // Initialize or retrieve filtersApplied - let filtersApplied = filterContent.hasAttribute(filtersAppliedKey) ? JSON.parse(filterContent.getAttribute(filtersAppliedKey)) : {}; - - // Ensure the filterType array exists - filtersApplied[filterType] = filtersApplied[filterType] || []; - - // Add or remove the filter value based on checkbox status - e.checked - ? filtersApplied[filterType].push(e.value) - : filtersApplied[filterType] = filtersApplied[filterType].filter(item => item !== e.value) - - //let filterHash = djb2(JSON.stringify(filtersApplied)); - //filterContent['hash'] = filterHash; - - // Update the attribute and notify - filterContent.setAttribute(filtersAppliedKey, JSON.stringify(filtersApplied)); - console.log("Filters changed"); - renderData(); -} - -function djb2(str) { - let hash = 5381; - for (let i = 0; i < str.length; i++) { - hash = (hash * 33) ^ str.charCodeAt(i); - } - return hash; -} - -async function refreshData() { - let response; - if (window.chrome.webview === undefined) { - response = await fetch("./api-sample.json"); - } else { - response = await fetch("./api"); - } - document.data = await response.json(); - let text = JSON.stringify(document.data); - const newHash = djb2(text); - if (document.hash !== newHash) { - console.log("Data changed"); - renderData(); - } - document.hash = newHash; -} - -function init() { - document.hash = ""; - document.data = { - "testsuites": [], - "rules": [] - } - if (window.chrome.webview === undefined) { - refreshData(); - } - renderData(); -} - - -document.getElementById("toggleDebug").addEventListener("click", () => { - let hidden = document.getElementById("debug").classList.contains("hidden"); - if (hidden) { - document.getElementById("debug").classList.remove("hidden"); - } else { - document.getElementById("debug").classList.add("hidden"); - } - postMessage("toggeDebug"); - -}); - -document.getElementById("btn-filter").addEventListener("click", () => { - let filterContent = document.getElementById("filter-content") - let hidden = filterContent.classList.contains("hidden"); - if (hidden) { - filterContent.classList.remove("hidden"); - } else { - filterContent.classList.add("hidden"); - } -}); - -document.addEventListener("DOMContentLoaded", () => { - const checkboxes = document.querySelectorAll(".filter-checkbox"); - checkboxes.forEach((checkbox) => { - checkbox.addEventListener("change", (event) => applyFilter(event.target)); - }); -}); - -init(); - -postMessage("MessageListenerRegistered"); -setInterval(async () => { - postMessage("refreshData"); - - await refreshData(); -}, 1000); - diff --git a/wwwroot/pico-v2.0.6.css b/wwwroot/pico-v2.0.6.css deleted file mode 100644 index 06faa9c..0000000 --- a/wwwroot/pico-v2.0.6.css +++ /dev/null @@ -1,2802 +0,0 @@ -@charset "UTF-8"; -/*! - * Pico CSS ✨ v2.0.6 (https://picocss.com) - * Copyright 2019-2024 - Licensed under MIT - */ -/** - * Styles - */ -:root { - --pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji); - --pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji); - --pico-font-family: var(--pico-font-family-sans-serif); - --pico-line-height: 1.5; - --pico-font-weight: 400; - --pico-font-size: 100%; - --pico-text-underline-offset: 0.1rem; - --pico-border-radius: 0.25rem; - --pico-border-width: 0.0625rem; - --pico-outline-width: 0.125rem; - --pico-transition: 0.2s ease-in-out; - --pico-spacing: 1rem; - --pico-typography-spacing-vertical: 1rem; - --pico-block-spacing-vertical: var(--pico-spacing); - --pico-block-spacing-horizontal: var(--pico-spacing); - --pico-grid-column-gap: var(--pico-spacing); - --pico-grid-row-gap: var(--pico-spacing); - --pico-form-element-spacing-vertical: 0.75rem; - --pico-form-element-spacing-horizontal: 1rem; - --pico-group-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-group-box-shadow-focus-with-button: 0 0 0 var(--pico-outline-width) var(--pico-primary-focus); - --pico-group-box-shadow-focus-with-input: 0 0 0 0.0625rem var(--pico-form-element-border-color); - --pico-modal-overlay-backdrop-filter: blur(0.375rem); - --pico-nav-element-spacing-vertical: 1rem; - --pico-nav-element-spacing-horizontal: 0.5rem; - --pico-nav-link-spacing-vertical: 0.5rem; - --pico-nav-link-spacing-horizontal: 0.5rem; - --pico-nav-breadcrumb-divider: ">"; - --pico-icon-checkbox: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); - --pico-icon-minus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); - --pico-icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); - --pico-icon-date: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E"); - --pico-icon-time: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E"); - --pico-icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E"); - --pico-icon-close: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E"); - --pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E"); -} -@media (min-width: 576px) { - :root { - --pico-font-size: 106.25%; - } -} -@media (min-width: 768px) { - :root { - --pico-font-size: 112.5%; - } -} -@media (min-width: 1024px) { - :root { - --pico-font-size: 118.75%; - } -} -@media (min-width: 1280px) { - :root { - --pico-font-size: 125%; - } -} -@media (min-width: 1536px) { - :root { - --pico-font-size: 131.25%; - } -} - -a { - --pico-text-decoration: underline; -} -a.secondary, a.contrast { - --pico-text-decoration: underline; -} - -small { - --pico-font-size: 0.875em; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - --pico-font-weight: 700; -} - -h1 { - --pico-font-size: 2rem; - --pico-line-height: 1.125; - --pico-typography-spacing-top: 3rem; -} - -h2 { - --pico-font-size: 1.75rem; - --pico-line-height: 1.15; - --pico-typography-spacing-top: 2.625rem; -} - -h3 { - --pico-font-size: 1.5rem; - --pico-line-height: 1.175; - --pico-typography-spacing-top: 2.25rem; -} - -h4 { - --pico-font-size: 1.25rem; - --pico-line-height: 1.2; - --pico-typography-spacing-top: 1.874rem; -} - -h5 { - --pico-font-size: 1.125rem; - --pico-line-height: 1.225; - --pico-typography-spacing-top: 1.6875rem; -} - -h6 { - --pico-font-size: 1rem; - --pico-line-height: 1.25; - --pico-typography-spacing-top: 1.5rem; -} - -thead th, -thead td, -tfoot th, -tfoot td { - --pico-font-weight: 600; - --pico-border-width: 0.1875rem; -} - -pre, -code, -kbd, -samp { - --pico-font-family: var(--pico-font-family-monospace); -} - -kbd { - --pico-font-weight: bolder; -} - -input:not([type=submit], -[type=button], -[type=reset], -[type=checkbox], -[type=radio], -[type=file]), -:where(select, textarea) { - --pico-outline-width: 0.0625rem; -} - -[type=search] { - --pico-border-radius: 5rem; -} - -[type=checkbox], -[type=radio] { - --pico-border-width: 0.125rem; -} - -[type=checkbox][role=switch] { - --pico-border-width: 0.1875rem; -} - -details.dropdown summary:not([role=button]) { - --pico-outline-width: 0.0625rem; -} - -nav details.dropdown summary:focus-visible { - --pico-outline-width: 0.125rem; -} - -[role=search] { - --pico-border-radius: 5rem; -} - -[role=search]:has(button.secondary:focus, -[type=submit].secondary:focus, -[type=button].secondary:focus, -[role=button].secondary:focus), -[role=group]:has(button.secondary:focus, -[type=submit].secondary:focus, -[type=button].secondary:focus, -[role=button].secondary:focus) { - --pico-group-box-shadow-focus-with-button: 0 0 0 var(--pico-outline-width) var(--pico-secondary-focus); -} -[role=search]:has(button.contrast:focus, -[type=submit].contrast:focus, -[type=button].contrast:focus, -[role=button].contrast:focus), -[role=group]:has(button.contrast:focus, -[type=submit].contrast:focus, -[type=button].contrast:focus, -[role=button].contrast:focus) { - --pico-group-box-shadow-focus-with-button: 0 0 0 var(--pico-outline-width) var(--pico-contrast-focus); -} -[role=search] button, -[role=search] [type=submit], -[role=search] [type=button], -[role=search] [role=button], -[role=group] button, -[role=group] [type=submit], -[role=group] [type=button], -[role=group] [role=button] { - --pico-form-element-spacing-horizontal: 2rem; -} - -details summary[role=button]:not(.outline)::after { - filter: brightness(0) invert(1); -} - -[aria-busy=true]:not(input, select, textarea):is(button, [type=submit], [type=button], [type=reset], [role=button]):not(.outline)::before { - filter: brightness(0) invert(1); -} - -/** - * Color schemes - */ -[data-theme=light], -:root:not([data-theme=dark]) { - --pico-background-color: #fff; - --pico-color: #373c44; - --pico-text-selection-color: rgba(2, 154, 232, 0.25); - --pico-muted-color: #646b79; - --pico-muted-border-color: #e7eaf0; - --pico-primary: #0172ad; - --pico-primary-background: #0172ad; - --pico-primary-border: var(--pico-primary-background); - --pico-primary-underline: rgba(1, 114, 173, 0.5); - --pico-primary-hover: #015887; - --pico-primary-hover-background: #02659a; - --pico-primary-hover-border: var(--pico-primary-hover-background); - --pico-primary-hover-underline: var(--pico-primary-hover); - --pico-primary-focus: rgba(2, 154, 232, 0.5); - --pico-primary-inverse: #fff; - --pico-secondary: #5d6b89; - --pico-secondary-background: #525f7a; - --pico-secondary-border: var(--pico-secondary-background); - --pico-secondary-underline: rgba(93, 107, 137, 0.5); - --pico-secondary-hover: #48536b; - --pico-secondary-hover-background: #48536b; - --pico-secondary-hover-border: var(--pico-secondary-hover-background); - --pico-secondary-hover-underline: var(--pico-secondary-hover); - --pico-secondary-focus: rgba(93, 107, 137, 0.25); - --pico-secondary-inverse: #fff; - --pico-contrast: #181c25; - --pico-contrast-background: #181c25; - --pico-contrast-border: var(--pico-contrast-background); - --pico-contrast-underline: rgba(24, 28, 37, 0.5); - --pico-contrast-hover: #000; - --pico-contrast-hover-background: #000; - --pico-contrast-hover-border: var(--pico-contrast-hover-background); - --pico-contrast-hover-underline: var(--pico-secondary-hover); - --pico-contrast-focus: rgba(93, 107, 137, 0.25); - --pico-contrast-inverse: #fff; - --pico-box-shadow: 0.0145rem 0.029rem 0.174rem rgba(129, 145, 181, 0.01698), 0.0335rem 0.067rem 0.402rem rgba(129, 145, 181, 0.024), 0.0625rem 0.125rem 0.75rem rgba(129, 145, 181, 0.03), 0.1125rem 0.225rem 1.35rem rgba(129, 145, 181, 0.036), 0.2085rem 0.417rem 2.502rem rgba(129, 145, 181, 0.04302), 0.5rem 1rem 6rem rgba(129, 145, 181, 0.06), 0 0 0 0.0625rem rgba(129, 145, 181, 0.015); - --pico-h1-color: #2d3138; - --pico-h2-color: #373c44; - --pico-h3-color: #424751; - --pico-h4-color: #4d535e; - --pico-h5-color: #5c6370; - --pico-h6-color: #646b79; - --pico-mark-background-color: #fde7c0; - --pico-mark-color: #0f1114; - --pico-ins-color: #1d6a54; - --pico-del-color: #883935; - --pico-blockquote-border-color: var(--pico-muted-border-color); - --pico-blockquote-footer-color: var(--pico-muted-color); - --pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-table-border-color: var(--pico-muted-border-color); - --pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375); - --pico-code-background-color: #f3f5f7; - --pico-code-color: #646b79; - --pico-code-kbd-background-color: var(--pico-color); - --pico-code-kbd-color: var(--pico-background-color); - --pico-form-element-background-color: #fbfcfc; - --pico-form-element-selected-background-color: #dfe3eb; - --pico-form-element-border-color: #cfd5e2; - --pico-form-element-color: #23262c; - --pico-form-element-placeholder-color: var(--pico-muted-color); - --pico-form-element-active-background-color: #fff; - --pico-form-element-active-border-color: var(--pico-primary-border); - --pico-form-element-focus-color: var(--pico-primary-border); - --pico-form-element-disabled-opacity: 0.5; - --pico-form-element-invalid-border-color: #b86a6b; - --pico-form-element-invalid-active-border-color: #c84f48; - --pico-form-element-invalid-focus-color: var(--pico-form-element-invalid-active-border-color); - --pico-form-element-valid-border-color: #4c9b8a; - --pico-form-element-valid-active-border-color: #279977; - --pico-form-element-valid-focus-color: var(--pico-form-element-valid-active-border-color); - --pico-switch-background-color: #bfc7d9; - --pico-switch-checked-background-color: var(--pico-primary-background); - --pico-switch-color: #fff; - --pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-range-border-color: #dfe3eb; - --pico-range-active-border-color: #bfc7d9; - --pico-range-thumb-border-color: var(--pico-background-color); - --pico-range-thumb-color: var(--pico-secondary-background); - --pico-range-thumb-active-color: var(--pico-primary-background); - --pico-accordion-border-color: var(--pico-muted-border-color); - --pico-accordion-active-summary-color: var(--pico-primary-hover); - --pico-accordion-close-summary-color: var(--pico-color); - --pico-accordion-open-summary-color: var(--pico-muted-color); - --pico-card-background-color: var(--pico-background-color); - --pico-card-border-color: var(--pico-muted-border-color); - --pico-card-box-shadow: var(--pico-box-shadow); - --pico-card-sectioning-background-color: #fbfcfc; - --pico-dropdown-background-color: #fff; - --pico-dropdown-border-color: #eff1f4; - --pico-dropdown-box-shadow: var(--pico-box-shadow); - --pico-dropdown-color: var(--pico-color); - --pico-dropdown-hover-background-color: #eff1f4; - --pico-loading-spinner-opacity: 0.5; - --pico-modal-overlay-background-color: rgba(232, 234, 237, 0.75); - --pico-progress-background-color: #dfe3eb; - --pico-progress-color: var(--pico-primary-background); - --pico-tooltip-background-color: var(--pico-contrast-background); - --pico-tooltip-color: var(--pico-contrast-inverse); - --pico-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(76, 155, 138)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); - --pico-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(200, 79, 72)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E"); - color-scheme: light; -} -[data-theme=light] input:is([type=submit], -[type=button], -[type=reset], -[type=checkbox], -[type=radio], -[type=file]), -:root:not([data-theme=dark]) input:is([type=submit], -[type=button], -[type=reset], -[type=checkbox], -[type=radio], -[type=file]) { - --pico-form-element-focus-color: var(--pico-primary-focus); -} - -@media only screen and (prefers-color-scheme: dark) { - :root:not([data-theme]) { - --pico-background-color: #13171f; - --pico-color: #c2c7d0; - --pico-text-selection-color: rgba(1, 170, 255, 0.1875); - --pico-muted-color: #7b8495; - --pico-muted-border-color: #202632; - --pico-primary: #01aaff; - --pico-primary-background: #0172ad; - --pico-primary-border: var(--pico-primary-background); - --pico-primary-underline: rgba(1, 170, 255, 0.5); - --pico-primary-hover: #79c0ff; - --pico-primary-hover-background: #017fc0; - --pico-primary-hover-border: var(--pico-primary-hover-background); - --pico-primary-hover-underline: var(--pico-primary-hover); - --pico-primary-focus: rgba(1, 170, 255, 0.375); - --pico-primary-inverse: #fff; - --pico-secondary: #969eaf; - --pico-secondary-background: #525f7a; - --pico-secondary-border: var(--pico-secondary-background); - --pico-secondary-underline: rgba(150, 158, 175, 0.5); - --pico-secondary-hover: #b3b9c5; - --pico-secondary-hover-background: #5d6b89; - --pico-secondary-hover-border: var(--pico-secondary-hover-background); - --pico-secondary-hover-underline: var(--pico-secondary-hover); - --pico-secondary-focus: rgba(144, 158, 190, 0.25); - --pico-secondary-inverse: #fff; - --pico-contrast: #dfe3eb; - --pico-contrast-background: #eff1f4; - --pico-contrast-border: var(--pico-contrast-background); - --pico-contrast-underline: rgba(223, 227, 235, 0.5); - --pico-contrast-hover: #fff; - --pico-contrast-hover-background: #fff; - --pico-contrast-hover-border: var(--pico-contrast-hover-background); - --pico-contrast-hover-underline: var(--pico-contrast-hover); - --pico-contrast-focus: rgba(207, 213, 226, 0.25); - --pico-contrast-inverse: #000; - --pico-box-shadow: 0.0145rem 0.029rem 0.174rem rgba(7, 9, 12, 0.01698), 0.0335rem 0.067rem 0.402rem rgba(7, 9, 12, 0.024), 0.0625rem 0.125rem 0.75rem rgba(7, 9, 12, 0.03), 0.1125rem 0.225rem 1.35rem rgba(7, 9, 12, 0.036), 0.2085rem 0.417rem 2.502rem rgba(7, 9, 12, 0.04302), 0.5rem 1rem 6rem rgba(7, 9, 12, 0.06), 0 0 0 0.0625rem rgba(7, 9, 12, 0.015); - --pico-h1-color: #f0f1f3; - --pico-h2-color: #e0e3e7; - --pico-h3-color: #c2c7d0; - --pico-h4-color: #b3b9c5; - --pico-h5-color: #a4acba; - --pico-h6-color: #8891a4; - --pico-mark-background-color: #014063; - --pico-mark-color: #fff; - --pico-ins-color: #62af9a; - --pico-del-color: #ce7e7b; - --pico-blockquote-border-color: var(--pico-muted-border-color); - --pico-blockquote-footer-color: var(--pico-muted-color); - --pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-table-border-color: var(--pico-muted-border-color); - --pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375); - --pico-code-background-color: #1a1f28; - --pico-code-color: #8891a4; - --pico-code-kbd-background-color: var(--pico-color); - --pico-code-kbd-color: var(--pico-background-color); - --pico-form-element-background-color: #1c212c; - --pico-form-element-selected-background-color: #2a3140; - --pico-form-element-border-color: #2a3140; - --pico-form-element-color: #e0e3e7; - --pico-form-element-placeholder-color: #8891a4; - --pico-form-element-active-background-color: #1a1f28; - --pico-form-element-active-border-color: var(--pico-primary-border); - --pico-form-element-focus-color: var(--pico-primary-border); - --pico-form-element-disabled-opacity: 0.5; - --pico-form-element-invalid-border-color: #964a50; - --pico-form-element-invalid-active-border-color: #b7403b; - --pico-form-element-invalid-focus-color: var(--pico-form-element-invalid-active-border-color); - --pico-form-element-valid-border-color: #2a7b6f; - --pico-form-element-valid-active-border-color: #16896a; - --pico-form-element-valid-focus-color: var(--pico-form-element-valid-active-border-color); - --pico-switch-background-color: #333c4e; - --pico-switch-checked-background-color: var(--pico-primary-background); - --pico-switch-color: #fff; - --pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-range-border-color: #202632; - --pico-range-active-border-color: #2a3140; - --pico-range-thumb-border-color: var(--pico-background-color); - --pico-range-thumb-color: var(--pico-secondary-background); - --pico-range-thumb-active-color: var(--pico-primary-background); - --pico-accordion-border-color: var(--pico-muted-border-color); - --pico-accordion-active-summary-color: var(--pico-primary-hover); - --pico-accordion-close-summary-color: var(--pico-color); - --pico-accordion-open-summary-color: var(--pico-muted-color); - --pico-card-background-color: #181c25; - --pico-card-border-color: var(--pico-card-background-color); - --pico-card-box-shadow: var(--pico-box-shadow); - --pico-card-sectioning-background-color: #1a1f28; - --pico-dropdown-background-color: #181c25; - --pico-dropdown-border-color: #202632; - --pico-dropdown-box-shadow: var(--pico-box-shadow); - --pico-dropdown-color: var(--pico-color); - --pico-dropdown-hover-background-color: #202632; - --pico-loading-spinner-opacity: 0.5; - --pico-modal-overlay-background-color: rgba(8, 9, 10, 0.75); - --pico-progress-background-color: #202632; - --pico-progress-color: var(--pico-primary-background); - --pico-tooltip-background-color: var(--pico-contrast-background); - --pico-tooltip-color: var(--pico-contrast-inverse); - --pico-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(42, 123, 111)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); - --pico-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(150, 74, 80)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E"); - color-scheme: dark; - } - :root:not([data-theme]) input:is([type=submit], - [type=button], - [type=reset], - [type=checkbox], - [type=radio], - [type=file]) { - --pico-form-element-focus-color: var(--pico-primary-focus); - } - :root:not([data-theme]) details summary[role=button].contrast:not(.outline)::after { - filter: brightness(0); - } - :root:not([data-theme]) [aria-busy=true]:not(input, select, textarea).contrast:is(button, - [type=submit], - [type=button], - [type=reset], - [role=button]):not(.outline)::before { - filter: brightness(0); - } -} -[data-theme=dark] { - --pico-background-color: #13171f; - --pico-color: #c2c7d0; - --pico-text-selection-color: rgba(1, 170, 255, 0.1875); - --pico-muted-color: #7b8495; - --pico-muted-border-color: #202632; - --pico-primary: #01aaff; - --pico-primary-background: #0172ad; - --pico-primary-border: var(--pico-primary-background); - --pico-primary-underline: rgba(1, 170, 255, 0.5); - --pico-primary-hover: #79c0ff; - --pico-primary-hover-background: #017fc0; - --pico-primary-hover-border: var(--pico-primary-hover-background); - --pico-primary-hover-underline: var(--pico-primary-hover); - --pico-primary-focus: rgba(1, 170, 255, 0.375); - --pico-primary-inverse: #fff; - --pico-secondary: #969eaf; - --pico-secondary-background: #525f7a; - --pico-secondary-border: var(--pico-secondary-background); - --pico-secondary-underline: rgba(150, 158, 175, 0.5); - --pico-secondary-hover: #b3b9c5; - --pico-secondary-hover-background: #5d6b89; - --pico-secondary-hover-border: var(--pico-secondary-hover-background); - --pico-secondary-hover-underline: var(--pico-secondary-hover); - --pico-secondary-focus: rgba(144, 158, 190, 0.25); - --pico-secondary-inverse: #fff; - --pico-contrast: #dfe3eb; - --pico-contrast-background: #eff1f4; - --pico-contrast-border: var(--pico-contrast-background); - --pico-contrast-underline: rgba(223, 227, 235, 0.5); - --pico-contrast-hover: #fff; - --pico-contrast-hover-background: #fff; - --pico-contrast-hover-border: var(--pico-contrast-hover-background); - --pico-contrast-hover-underline: var(--pico-contrast-hover); - --pico-contrast-focus: rgba(207, 213, 226, 0.25); - --pico-contrast-inverse: #000; - --pico-box-shadow: 0.0145rem 0.029rem 0.174rem rgba(7, 9, 12, 0.01698), 0.0335rem 0.067rem 0.402rem rgba(7, 9, 12, 0.024), 0.0625rem 0.125rem 0.75rem rgba(7, 9, 12, 0.03), 0.1125rem 0.225rem 1.35rem rgba(7, 9, 12, 0.036), 0.2085rem 0.417rem 2.502rem rgba(7, 9, 12, 0.04302), 0.5rem 1rem 6rem rgba(7, 9, 12, 0.06), 0 0 0 0.0625rem rgba(7, 9, 12, 0.015); - --pico-h1-color: #f0f1f3; - --pico-h2-color: #e0e3e7; - --pico-h3-color: #c2c7d0; - --pico-h4-color: #b3b9c5; - --pico-h5-color: #a4acba; - --pico-h6-color: #8891a4; - --pico-mark-background-color: #014063; - --pico-mark-color: #fff; - --pico-ins-color: #62af9a; - --pico-del-color: #ce7e7b; - --pico-blockquote-border-color: var(--pico-muted-border-color); - --pico-blockquote-footer-color: var(--pico-muted-color); - --pico-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-table-border-color: var(--pico-muted-border-color); - --pico-table-row-stripped-background-color: rgba(111, 120, 135, 0.0375); - --pico-code-background-color: #1a1f28; - --pico-code-color: #8891a4; - --pico-code-kbd-background-color: var(--pico-color); - --pico-code-kbd-color: var(--pico-background-color); - --pico-form-element-background-color: #1c212c; - --pico-form-element-selected-background-color: #2a3140; - --pico-form-element-border-color: #2a3140; - --pico-form-element-color: #e0e3e7; - --pico-form-element-placeholder-color: #8891a4; - --pico-form-element-active-background-color: #1a1f28; - --pico-form-element-active-border-color: var(--pico-primary-border); - --pico-form-element-focus-color: var(--pico-primary-border); - --pico-form-element-disabled-opacity: 0.5; - --pico-form-element-invalid-border-color: #964a50; - --pico-form-element-invalid-active-border-color: #b7403b; - --pico-form-element-invalid-focus-color: var(--pico-form-element-invalid-active-border-color); - --pico-form-element-valid-border-color: #2a7b6f; - --pico-form-element-valid-active-border-color: #16896a; - --pico-form-element-valid-focus-color: var(--pico-form-element-valid-active-border-color); - --pico-switch-background-color: #333c4e; - --pico-switch-checked-background-color: var(--pico-primary-background); - --pico-switch-color: #fff; - --pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0); - --pico-range-border-color: #202632; - --pico-range-active-border-color: #2a3140; - --pico-range-thumb-border-color: var(--pico-background-color); - --pico-range-thumb-color: var(--pico-secondary-background); - --pico-range-thumb-active-color: var(--pico-primary-background); - --pico-accordion-border-color: var(--pico-muted-border-color); - --pico-accordion-active-summary-color: var(--pico-primary-hover); - --pico-accordion-close-summary-color: var(--pico-color); - --pico-accordion-open-summary-color: var(--pico-muted-color); - --pico-card-background-color: #181c25; - --pico-card-border-color: var(--pico-card-background-color); - --pico-card-box-shadow: var(--pico-box-shadow); - --pico-card-sectioning-background-color: #1a1f28; - --pico-dropdown-background-color: #181c25; - --pico-dropdown-border-color: #202632; - --pico-dropdown-box-shadow: var(--pico-box-shadow); - --pico-dropdown-color: var(--pico-color); - --pico-dropdown-hover-background-color: #202632; - --pico-loading-spinner-opacity: 0.5; - --pico-modal-overlay-background-color: rgba(8, 9, 10, 0.75); - --pico-progress-background-color: #202632; - --pico-progress-color: var(--pico-primary-background); - --pico-tooltip-background-color: var(--pico-contrast-background); - --pico-tooltip-color: var(--pico-contrast-inverse); - --pico-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(42, 123, 111)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); - --pico-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(150, 74, 80)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E"); - color-scheme: dark; -} -[data-theme=dark] input:is([type=submit], -[type=button], -[type=reset], -[type=checkbox], -[type=radio], -[type=file]) { - --pico-form-element-focus-color: var(--pico-primary-focus); -} -[data-theme=dark] details summary[role=button].contrast:not(.outline)::after { - filter: brightness(0); -} -[data-theme=dark] [aria-busy=true]:not(input, select, textarea).contrast:is(button, -[type=submit], -[type=button], -[type=reset], -[role=button]):not(.outline)::before { - filter: brightness(0); -} - -progress, -[type=checkbox], -[type=radio], -[type=range] { - accent-color: var(--pico-primary); -} - -/** - * Document - * Content-box & Responsive typography - */ -*, -*::before, -*::after { - box-sizing: border-box; - background-repeat: no-repeat; -} - -::before, -::after { - text-decoration: inherit; - vertical-align: inherit; -} - -:where(:root) { - -webkit-tap-highlight-color: transparent; - -webkit-text-size-adjust: 100%; - -moz-text-size-adjust: 100%; - text-size-adjust: 100%; - background-color: var(--pico-background-color); - color: var(--pico-color); - font-weight: var(--pico-font-weight); - font-size: var(--pico-font-size); - line-height: var(--pico-line-height); - font-family: var(--pico-font-family); - text-underline-offset: var(--pico-text-underline-offset); - text-rendering: optimizeLegibility; - overflow-wrap: break-word; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; -} - -/** - * Landmarks - */ -body { - width: 100%; - margin: 0; -} - -main { - display: block; -} - -body > header, -body > main, -body > footer { - padding-block: var(--pico-block-spacing-vertical); -} - -/** - * Section - */ -section { - margin-bottom: var(--pico-block-spacing-vertical); -} - -/** - * Container - */ -.container, -.container-fluid { - width: 100%; - margin-right: auto; - margin-left: auto; - padding-right: var(--pico-spacing); - padding-left: var(--pico-spacing); -} - -@media (min-width: 576px) { - .container { - max-width: 510px; - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 768px) { - .container { - max-width: 700px; - } -} -@media (min-width: 1024px) { - .container { - max-width: 950px; - } -} -@media (min-width: 1280px) { - .container { - max-width: 1200px; - } -} -@media (min-width: 1536px) { - .container { - max-width: 1450px; - } -} - -/** - * Grid - * Minimal grid system with auto-layout columns - */ -.grid { - grid-column-gap: var(--pico-grid-column-gap); - grid-row-gap: var(--pico-grid-row-gap); - display: grid; - grid-template-columns: 1fr; -} -@media (min-width: 768px) { - .grid { - grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); - } -} -.grid > * { - min-width: 0; -} - -/** - * Overflow auto - */ -.overflow-auto { - overflow: auto; -} - -/** - * Typography - */ -b, -strong { - font-weight: bolder; -} - -sub, -sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -address, -blockquote, -dl, -ol, -p, -pre, -table, -ul { - margin-top: 0; - margin-bottom: var(--pico-typography-spacing-vertical); - color: var(--pico-color); - font-style: normal; - font-weight: var(--pico-font-weight); -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: var(--pico-typography-spacing-vertical); - color: var(--pico-color); - font-weight: var(--pico-font-weight); - font-size: var(--pico-font-size); - line-height: var(--pico-line-height); - font-family: var(--pico-font-family); -} - -h1 { - --pico-color: var(--pico-h1-color); -} - -h2 { - --pico-color: var(--pico-h2-color); -} - -h3 { - --pico-color: var(--pico-h3-color); -} - -h4 { - --pico-color: var(--pico-h4-color); -} - -h5 { - --pico-color: var(--pico-h5-color); -} - -h6 { - --pico-color: var(--pico-h6-color); -} - -:where(article, address, blockquote, dl, figure, form, ol, p, pre, table, ul) ~ :is(h1, h2, h3, h4, h5, h6) { - margin-top: var(--pico-typography-spacing-top); -} - -p { - margin-bottom: var(--pico-typography-spacing-vertical); -} - -hgroup { - margin-bottom: var(--pico-typography-spacing-vertical); -} -hgroup > * { - margin-top: 0; - margin-bottom: 0; -} -hgroup > *:not(:first-child):last-child { - --pico-color: var(--pico-muted-color); - --pico-font-weight: unset; - font-size: 1rem; -} - -:where(ol, ul) li { - margin-bottom: calc(var(--pico-typography-spacing-vertical) * 0.25); -} - -:where(dl, ol, ul) :where(dl, ol, ul) { - margin: 0; - margin-top: calc(var(--pico-typography-spacing-vertical) * 0.25); -} - -ul li { - list-style: square; -} - -mark { - padding: 0.125rem 0.25rem; - background-color: var(--pico-mark-background-color); - color: var(--pico-mark-color); - vertical-align: baseline; -} - -blockquote { - display: block; - margin: var(--pico-typography-spacing-vertical) 0; - padding: var(--pico-spacing); - border-right: none; - border-left: 0.25rem solid var(--pico-blockquote-border-color); - border-inline-start: 0.25rem solid var(--pico-blockquote-border-color); - border-inline-end: none; -} -blockquote footer { - margin-top: calc(var(--pico-typography-spacing-vertical) * 0.5); - color: var(--pico-blockquote-footer-color); -} - -abbr[title] { - border-bottom: 1px dotted; - text-decoration: none; - cursor: help; -} - -ins { - color: var(--pico-ins-color); - text-decoration: none; -} - -del { - color: var(--pico-del-color); -} - -::-moz-selection { - background-color: var(--pico-text-selection-color); -} - -::selection { - background-color: var(--pico-text-selection-color); -} - -/** - * Link - */ -:where(a:not([role=button])), -[role=link] { - --pico-color: var(--pico-primary); - --pico-background-color: transparent; - --pico-underline: var(--pico-primary-underline); - outline: none; - background-color: var(--pico-background-color); - color: var(--pico-color); - -webkit-text-decoration: var(--pico-text-decoration); - text-decoration: var(--pico-text-decoration); - text-decoration-color: var(--pico-underline); - text-underline-offset: 0.125em; - transition: background-color var(--pico-transition), color var(--pico-transition), box-shadow var(--pico-transition), -webkit-text-decoration var(--pico-transition); - transition: background-color var(--pico-transition), color var(--pico-transition), text-decoration var(--pico-transition), box-shadow var(--pico-transition); - transition: background-color var(--pico-transition), color var(--pico-transition), text-decoration var(--pico-transition), box-shadow var(--pico-transition), -webkit-text-decoration var(--pico-transition); -} -:where(a:not([role=button])):is([aria-current]:not([aria-current=false]), :hover, :active, :focus), -[role=link]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-color: var(--pico-primary-hover); - --pico-underline: var(--pico-primary-hover-underline); - --pico-text-decoration: underline; -} -:where(a:not([role=button])):focus-visible, -[role=link]:focus-visible { - box-shadow: 0 0 0 var(--pico-outline-width) var(--pico-primary-focus); -} -:where(a:not([role=button])).secondary, -[role=link].secondary { - --pico-color: var(--pico-secondary); - --pico-underline: var(--pico-secondary-underline); -} -:where(a:not([role=button])).secondary:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), -[role=link].secondary:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-color: var(--pico-secondary-hover); - --pico-underline: var(--pico-secondary-hover-underline); -} -:where(a:not([role=button])).contrast, -[role=link].contrast { - --pico-color: var(--pico-contrast); - --pico-underline: var(--pico-contrast-underline); -} -:where(a:not([role=button])).contrast:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), -[role=link].contrast:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-color: var(--pico-contrast-hover); - --pico-underline: var(--pico-contrast-hover-underline); -} - -a[role=button] { - display: inline-block; -} - -/** - * Button - */ -button { - margin: 0; - overflow: visible; - font-family: inherit; - text-transform: none; -} - -button, -[type=submit], -[type=reset], -[type=button] { - -webkit-appearance: button; -} - -button, -[type=submit], -[type=reset], -[type=button], -[type=file]::file-selector-button, -[role=button] { - --pico-background-color: var(--pico-primary-background); - --pico-border-color: var(--pico-primary-border); - --pico-color: var(--pico-primary-inverse); - --pico-box-shadow: var(--pico-button-box-shadow, 0 0 0 rgba(0, 0, 0, 0)); - padding: var(--pico-form-element-spacing-vertical) var(--pico-form-element-spacing-horizontal); - border: var(--pico-border-width) solid var(--pico-border-color); - border-radius: var(--pico-border-radius); - outline: none; - background-color: var(--pico-background-color); - box-shadow: var(--pico-box-shadow); - color: var(--pico-color); - font-weight: var(--pico-font-weight); - font-size: 1rem; - line-height: var(--pico-line-height); - text-align: center; - text-decoration: none; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - transition: background-color var(--pico-transition), border-color var(--pico-transition), color var(--pico-transition), box-shadow var(--pico-transition); -} -button:is([aria-current]:not([aria-current=false])), button:is(:hover, :active, :focus), -[type=submit]:is([aria-current]:not([aria-current=false])), -[type=submit]:is(:hover, :active, :focus), -[type=reset]:is([aria-current]:not([aria-current=false])), -[type=reset]:is(:hover, :active, :focus), -[type=button]:is([aria-current]:not([aria-current=false])), -[type=button]:is(:hover, :active, :focus), -[type=file]::file-selector-button:is([aria-current]:not([aria-current=false])), -[type=file]::file-selector-button:is(:hover, :active, :focus), -[role=button]:is([aria-current]:not([aria-current=false])), -[role=button]:is(:hover, :active, :focus) { - --pico-background-color: var(--pico-primary-hover-background); - --pico-border-color: var(--pico-primary-hover-border); - --pico-box-shadow: var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)); - --pico-color: var(--pico-primary-inverse); -} -button:focus, button:is([aria-current]:not([aria-current=false])):focus, -[type=submit]:focus, -[type=submit]:is([aria-current]:not([aria-current=false])):focus, -[type=reset]:focus, -[type=reset]:is([aria-current]:not([aria-current=false])):focus, -[type=button]:focus, -[type=button]:is([aria-current]:not([aria-current=false])):focus, -[type=file]::file-selector-button:focus, -[type=file]::file-selector-button:is([aria-current]:not([aria-current=false])):focus, -[role=button]:focus, -[role=button]:is([aria-current]:not([aria-current=false])):focus { - --pico-box-shadow: var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)), 0 0 0 var(--pico-outline-width) var(--pico-primary-focus); -} - -[type=submit], -[type=reset], -[type=button] { - margin-bottom: var(--pico-spacing); -} - -:is(button, [type=submit], [type=button], [role=button]).secondary, -[type=reset], -[type=file]::file-selector-button { - --pico-background-color: var(--pico-secondary-background); - --pico-border-color: var(--pico-secondary-border); - --pico-color: var(--pico-secondary-inverse); - cursor: pointer; -} -:is(button, [type=submit], [type=button], [role=button]).secondary:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), -[type=reset]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), -[type=file]::file-selector-button:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-background-color: var(--pico-secondary-hover-background); - --pico-border-color: var(--pico-secondary-hover-border); - --pico-color: var(--pico-secondary-inverse); -} -:is(button, [type=submit], [type=button], [role=button]).secondary:focus, :is(button, [type=submit], [type=button], [role=button]).secondary:is([aria-current]:not([aria-current=false])):focus, -[type=reset]:focus, -[type=reset]:is([aria-current]:not([aria-current=false])):focus, -[type=file]::file-selector-button:focus, -[type=file]::file-selector-button:is([aria-current]:not([aria-current=false])):focus { - --pico-box-shadow: var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)), 0 0 0 var(--pico-outline-width) var(--pico-secondary-focus); -} - -:is(button, [type=submit], [type=button], [role=button]).contrast { - --pico-background-color: var(--pico-contrast-background); - --pico-border-color: var(--pico-contrast-border); - --pico-color: var(--pico-contrast-inverse); -} -:is(button, [type=submit], [type=button], [role=button]).contrast:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-background-color: var(--pico-contrast-hover-background); - --pico-border-color: var(--pico-contrast-hover-border); - --pico-color: var(--pico-contrast-inverse); -} -:is(button, [type=submit], [type=button], [role=button]).contrast:focus, :is(button, [type=submit], [type=button], [role=button]).contrast:is([aria-current]:not([aria-current=false])):focus { - --pico-box-shadow: var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)), 0 0 0 var(--pico-outline-width) var(--pico-contrast-focus); -} - -:is(button, [type=submit], [type=button], [role=button]).outline, -[type=reset].outline { - --pico-background-color: transparent; - --pico-color: var(--pico-primary); - --pico-border-color: var(--pico-primary); -} -:is(button, [type=submit], [type=button], [role=button]).outline:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), -[type=reset].outline:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-background-color: transparent; - --pico-color: var(--pico-primary-hover); - --pico-border-color: var(--pico-primary-hover); -} - -:is(button, [type=submit], [type=button], [role=button]).outline.secondary, -[type=reset].outline { - --pico-color: var(--pico-secondary); - --pico-border-color: var(--pico-secondary); -} -:is(button, [type=submit], [type=button], [role=button]).outline.secondary:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), -[type=reset].outline:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-color: var(--pico-secondary-hover); - --pico-border-color: var(--pico-secondary-hover); -} - -:is(button, [type=submit], [type=button], [role=button]).outline.contrast { - --pico-color: var(--pico-contrast); - --pico-border-color: var(--pico-contrast); -} -:is(button, [type=submit], [type=button], [role=button]).outline.contrast:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - --pico-color: var(--pico-contrast-hover); - --pico-border-color: var(--pico-contrast-hover); -} - -:where(button, [type=submit], [type=reset], [type=button], [role=button])[disabled], -:where(fieldset[disabled]) :is(button, [type=submit], [type=button], [type=reset], [role=button]) { - opacity: 0.5; - pointer-events: none; -} - -/** - * Table - */ -:where(table) { - width: 100%; - border-collapse: collapse; - border-spacing: 0; - text-indent: 0; -} - -th, -td { - padding: calc(var(--pico-spacing) / 2) var(--pico-spacing); - border-bottom: var(--pico-border-width) solid var(--pico-table-border-color); - background-color: var(--pico-background-color); - color: var(--pico-color); - font-weight: var(--pico-font-weight); - text-align: left; - text-align: start; -} - -tfoot th, -tfoot td { - border-top: var(--pico-border-width) solid var(--pico-table-border-color); - border-bottom: 0; -} - -table.striped tbody tr:nth-child(odd) th, -table.striped tbody tr:nth-child(odd) td { - background-color: var(--pico-table-row-stripped-background-color); -} - -/** - * Embedded content - */ -:where(audio, canvas, iframe, img, svg, video) { - vertical-align: middle; -} - -audio, -video { - display: inline-block; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -:where(iframe) { - border-style: none; -} - -img { - max-width: 100%; - height: auto; - border-style: none; -} - -:where(svg:not([fill])) { - fill: currentColor; -} - -svg:not(:root) { - overflow: hidden; -} - -/** - * Code - */ -pre, -code, -kbd, -samp { - font-size: 0.875em; - font-family: var(--pico-font-family); -} - -pre code { - font-size: inherit; - font-family: inherit; -} - -pre { - -ms-overflow-style: scrollbar; - overflow: auto; -} - -pre, -code, -kbd { - border-radius: var(--pico-border-radius); - background: var(--pico-code-background-color); - color: var(--pico-code-color); - font-weight: var(--pico-font-weight); - line-height: initial; -} - -code, -kbd { - display: inline-block; - padding: 0.375rem; -} - -pre { - display: block; - margin-bottom: var(--pico-spacing); - overflow-x: auto; -} -pre > code { - display: block; - padding: var(--pico-spacing); - background: none; - line-height: var(--pico-line-height); -} - -kbd { - background-color: var(--pico-code-kbd-background-color); - color: var(--pico-code-kbd-color); - vertical-align: baseline; -} - -/** - * Figure - */ -figure { - display: block; - margin: 0; - padding: 0; -} -figure figcaption { - padding: calc(var(--pico-spacing) * 0.5) 0; - color: var(--pico-muted-color); -} - -/** - * Miscs - */ -hr { - height: 0; - margin: var(--pico-typography-spacing-vertical) 0; - border: 0; - border-top: 1px solid var(--pico-muted-border-color); - color: inherit; -} - -[hidden], -template { - display: none !important; -} - -canvas { - display: inline-block; -} - -/** - * Basics form elements - */ -input, -optgroup, -select, -textarea { - margin: 0; - font-size: 1rem; - line-height: var(--pico-line-height); - font-family: inherit; - letter-spacing: inherit; -} - -input { - overflow: visible; -} - -select { - text-transform: none; -} - -legend { - max-width: 100%; - padding: 0; - color: inherit; - white-space: normal; -} - -textarea { - overflow: auto; -} - -[type=checkbox], -[type=radio] { - padding: 0; -} - -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} - -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px; -} - -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} - -::-moz-focus-inner { - padding: 0; - border-style: none; -} - -:-moz-focusring { - outline: none; -} - -:-moz-ui-invalid { - box-shadow: none; -} - -::-ms-expand { - display: none; -} - -[type=file], -[type=range] { - padding: 0; - border-width: 0; -} - -input:not([type=checkbox], [type=radio], [type=range]) { - height: calc(1rem * var(--pico-line-height) + var(--pico-form-element-spacing-vertical) * 2 + var(--pico-border-width) * 2); -} - -fieldset { - width: 100%; - margin: 0; - margin-bottom: var(--pico-spacing); - padding: 0; - border: 0; -} - -label, -fieldset legend { - display: block; - margin-bottom: calc(var(--pico-spacing) * 0.375); - color: var(--pico-color); - font-weight: var(--pico-form-label-font-weight, var(--pico-font-weight)); -} - -fieldset legend { - margin-bottom: calc(var(--pico-spacing) * 0.5); -} - -input:not([type=checkbox], [type=radio]), -button[type=submit], -select, -textarea { - width: 100%; -} - -input:not([type=checkbox], [type=radio], [type=range], [type=file]), -select, -textarea { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - padding: var(--pico-form-element-spacing-vertical) var(--pico-form-element-spacing-horizontal); -} - -input, -select, -textarea { - --pico-background-color: var(--pico-form-element-background-color); - --pico-border-color: var(--pico-form-element-border-color); - --pico-color: var(--pico-form-element-color); - --pico-box-shadow: none; - border: var(--pico-border-width) solid var(--pico-border-color); - border-radius: var(--pico-border-radius); - outline: none; - background-color: var(--pico-background-color); - box-shadow: var(--pico-box-shadow); - color: var(--pico-color); - font-weight: var(--pico-font-weight); - transition: background-color var(--pico-transition), border-color var(--pico-transition), color var(--pico-transition), box-shadow var(--pico-transition); -} - -input:not([type=submit], -[type=button], -[type=reset], -[type=checkbox], -[type=radio], -[readonly]):is(:active, :focus), -:where(select, textarea):not([readonly]):is(:active, :focus) { - --pico-background-color: var(--pico-form-element-active-background-color); -} - -input:not([type=submit], [type=button], [type=reset], [role=switch], [readonly]):is(:active, :focus), -:where(select, textarea):not([readonly]):is(:active, :focus) { - --pico-border-color: var(--pico-form-element-active-border-color); -} - -input:not([type=submit], -[type=button], -[type=reset], -[type=range], -[type=file], -[readonly]):focus, -:where(select, textarea):not([readonly]):focus { - --pico-box-shadow: 0 0 0 var(--pico-outline-width) var(--pico-form-element-focus-color); -} - -input:not([type=submit], [type=button], [type=reset])[disabled], -select[disabled], -textarea[disabled], -label[aria-disabled=true], -:where(fieldset[disabled]) :is(input:not([type=submit], [type=button], [type=reset]), select, textarea) { - opacity: var(--pico-form-element-disabled-opacity); - pointer-events: none; -} - -label[aria-disabled=true] input[disabled] { - opacity: 1; -} - -:where(input, select, textarea):not([type=checkbox], -[type=radio], -[type=date], -[type=datetime-local], -[type=month], -[type=time], -[type=week], -[type=range])[aria-invalid] { - padding-right: calc(var(--pico-form-element-spacing-horizontal) + 1.5rem) !important; - padding-left: var(--pico-form-element-spacing-horizontal); - padding-inline-start: var(--pico-form-element-spacing-horizontal) !important; - padding-inline-end: calc(var(--pico-form-element-spacing-horizontal) + 1.5rem) !important; - background-position: center right 0.75rem; - background-size: 1rem auto; - background-repeat: no-repeat; -} -:where(input, select, textarea):not([type=checkbox], -[type=radio], -[type=date], -[type=datetime-local], -[type=month], -[type=time], -[type=week], -[type=range])[aria-invalid=false]:not(select) { - background-image: var(--pico-icon-valid); -} -:where(input, select, textarea):not([type=checkbox], -[type=radio], -[type=date], -[type=datetime-local], -[type=month], -[type=time], -[type=week], -[type=range])[aria-invalid=true]:not(select) { - background-image: var(--pico-icon-invalid); -} -:where(input, select, textarea)[aria-invalid=false] { - --pico-border-color: var(--pico-form-element-valid-border-color); -} -:where(input, select, textarea)[aria-invalid=false]:is(:active, :focus) { - --pico-border-color: var(--pico-form-element-valid-active-border-color) !important; -} -:where(input, select, textarea)[aria-invalid=false]:is(:active, :focus):not([type=checkbox], [type=radio]) { - --pico-box-shadow: 0 0 0 var(--pico-outline-width) var(--pico-form-element-valid-focus-color) !important; -} -:where(input, select, textarea)[aria-invalid=true] { - --pico-border-color: var(--pico-form-element-invalid-border-color); -} -:where(input, select, textarea)[aria-invalid=true]:is(:active, :focus) { - --pico-border-color: var(--pico-form-element-invalid-active-border-color) !important; -} -:where(input, select, textarea)[aria-invalid=true]:is(:active, :focus):not([type=checkbox], [type=radio]) { - --pico-box-shadow: 0 0 0 var(--pico-outline-width) var(--pico-form-element-invalid-focus-color) !important; -} - -[dir=rtl] :where(input, select, textarea):not([type=checkbox], [type=radio]):is([aria-invalid], [aria-invalid=true], [aria-invalid=false]) { - background-position: center left 0.75rem; -} - -input::placeholder, -input::-webkit-input-placeholder, -textarea::placeholder, -textarea::-webkit-input-placeholder, -select:invalid { - color: var(--pico-form-element-placeholder-color); - opacity: 1; -} - -input:not([type=checkbox], [type=radio]), -select, -textarea { - margin-bottom: var(--pico-spacing); -} - -select::-ms-expand { - border: 0; - background-color: transparent; -} -select:not([multiple], [size]) { - padding-right: calc(var(--pico-form-element-spacing-horizontal) + 1.5rem); - padding-left: var(--pico-form-element-spacing-horizontal); - padding-inline-start: var(--pico-form-element-spacing-horizontal); - padding-inline-end: calc(var(--pico-form-element-spacing-horizontal) + 1.5rem); - background-image: var(--pico-icon-chevron); - background-position: center right 0.75rem; - background-size: 1rem auto; - background-repeat: no-repeat; -} -select[multiple] option:checked { - background: var(--pico-form-element-selected-background-color); - color: var(--pico-form-element-color); -} - -[dir=rtl] select:not([multiple], [size]) { - background-position: center left 0.75rem; -} - -textarea { - display: block; - resize: vertical; -} -textarea[aria-invalid] { - --pico-icon-height: calc(1rem * var(--pico-line-height) + var(--pico-form-element-spacing-vertical) * 2 + var(--pico-border-width) * 2); - background-position: top right 0.75rem !important; - background-size: 1rem var(--pico-icon-height) !important; -} - -:where(input, select, textarea, fieldset, .grid) + small { - display: block; - width: 100%; - margin-top: calc(var(--pico-spacing) * -0.75); - margin-bottom: var(--pico-spacing); - color: var(--pico-muted-color); -} -:where(input, select, textarea, fieldset, .grid)[aria-invalid=false] + small { - color: var(--pico-ins-color); -} -:where(input, select, textarea, fieldset, .grid)[aria-invalid=true] + small { - color: var(--pico-del-color); -} - -label > :where(input, select, textarea) { - margin-top: calc(var(--pico-spacing) * 0.25); -} - -/** - * Checkboxes, Radios and Switches - */ -label:has([type=checkbox], [type=radio]) { - width: -moz-fit-content; - width: fit-content; - cursor: pointer; -} - -[type=checkbox], -[type=radio] { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - width: 1.25em; - height: 1.25em; - margin-top: -0.125em; - margin-inline-end: 0.5em; - border-width: var(--pico-border-width); - vertical-align: middle; - cursor: pointer; -} -[type=checkbox]::-ms-check, -[type=radio]::-ms-check { - display: none; -} -[type=checkbox]:checked, [type=checkbox]:checked:active, [type=checkbox]:checked:focus, -[type=radio]:checked, -[type=radio]:checked:active, -[type=radio]:checked:focus { - --pico-background-color: var(--pico-primary-background); - --pico-border-color: var(--pico-primary-border); - background-image: var(--pico-icon-checkbox); - background-position: center; - background-size: 0.75em auto; - background-repeat: no-repeat; -} -[type=checkbox] ~ label, -[type=radio] ~ label { - display: inline-block; - margin-bottom: 0; - cursor: pointer; -} -[type=checkbox] ~ label:not(:last-of-type), -[type=radio] ~ label:not(:last-of-type) { - margin-inline-end: 1em; -} - -[type=checkbox]:indeterminate { - --pico-background-color: var(--pico-primary-background); - --pico-border-color: var(--pico-primary-border); - background-image: var(--pico-icon-minus); - background-position: center; - background-size: 0.75em auto; - background-repeat: no-repeat; -} - -[type=radio] { - border-radius: 50%; -} -[type=radio]:checked, [type=radio]:checked:active, [type=radio]:checked:focus { - --pico-background-color: var(--pico-primary-inverse); - border-width: 0.35em; - background-image: none; -} - -[type=checkbox][role=switch] { - --pico-background-color: var(--pico-switch-background-color); - --pico-color: var(--pico-switch-color); - width: 2.25em; - height: 1.25em; - border: var(--pico-border-width) solid var(--pico-border-color); - border-radius: 1.25em; - background-color: var(--pico-background-color); - line-height: 1.25em; -} -[type=checkbox][role=switch]:not([aria-invalid]) { - --pico-border-color: var(--pico-switch-background-color); -} -[type=checkbox][role=switch]:before { - display: block; - aspect-ratio: 1; - height: 100%; - border-radius: 50%; - background-color: var(--pico-color); - box-shadow: var(--pico-switch-thumb-box-shadow); - content: ""; - transition: margin 0.1s ease-in-out; -} -[type=checkbox][role=switch]:focus { - --pico-background-color: var(--pico-switch-background-color); - --pico-border-color: var(--pico-switch-background-color); -} -[type=checkbox][role=switch]:checked { - --pico-background-color: var(--pico-switch-checked-background-color); - --pico-border-color: var(--pico-switch-checked-background-color); - background-image: none; -} -[type=checkbox][role=switch]:checked::before { - margin-inline-start: calc(2.25em - 1.25em); -} -[type=checkbox][role=switch][disabled] { - --pico-background-color: var(--pico-border-color); -} - -[type=checkbox][aria-invalid=false]:checked, [type=checkbox][aria-invalid=false]:checked:active, [type=checkbox][aria-invalid=false]:checked:focus, -[type=checkbox][role=switch][aria-invalid=false]:checked, -[type=checkbox][role=switch][aria-invalid=false]:checked:active, -[type=checkbox][role=switch][aria-invalid=false]:checked:focus { - --pico-background-color: var(--pico-form-element-valid-border-color); -} -[type=checkbox]:checked[aria-invalid=true], [type=checkbox]:checked:active[aria-invalid=true], [type=checkbox]:checked:focus[aria-invalid=true], -[type=checkbox][role=switch]:checked[aria-invalid=true], -[type=checkbox][role=switch]:checked:active[aria-invalid=true], -[type=checkbox][role=switch]:checked:focus[aria-invalid=true] { - --pico-background-color: var(--pico-form-element-invalid-border-color); -} - -[type=checkbox][aria-invalid=false]:checked, [type=checkbox][aria-invalid=false]:checked:active, [type=checkbox][aria-invalid=false]:checked:focus, -[type=radio][aria-invalid=false]:checked, -[type=radio][aria-invalid=false]:checked:active, -[type=radio][aria-invalid=false]:checked:focus, -[type=checkbox][role=switch][aria-invalid=false]:checked, -[type=checkbox][role=switch][aria-invalid=false]:checked:active, -[type=checkbox][role=switch][aria-invalid=false]:checked:focus { - --pico-border-color: var(--pico-form-element-valid-border-color); -} -[type=checkbox]:checked[aria-invalid=true], [type=checkbox]:checked:active[aria-invalid=true], [type=checkbox]:checked:focus[aria-invalid=true], -[type=radio]:checked[aria-invalid=true], -[type=radio]:checked:active[aria-invalid=true], -[type=radio]:checked:focus[aria-invalid=true], -[type=checkbox][role=switch]:checked[aria-invalid=true], -[type=checkbox][role=switch]:checked:active[aria-invalid=true], -[type=checkbox][role=switch]:checked:focus[aria-invalid=true] { - --pico-border-color: var(--pico-form-element-invalid-border-color); -} - -/** - * Input type color - */ -[type=color]::-webkit-color-swatch-wrapper { - padding: 0; -} -[type=color]::-moz-focus-inner { - padding: 0; -} -[type=color]::-webkit-color-swatch { - border: 0; - border-radius: calc(var(--pico-border-radius) * 0.5); -} -[type=color]::-moz-color-swatch { - border: 0; - border-radius: calc(var(--pico-border-radius) * 0.5); -} - -/** - * Input type datetime - */ -input:not([type=checkbox], [type=radio], [type=range], [type=file]):is([type=date], [type=datetime-local], [type=month], [type=time], [type=week]) { - --pico-icon-position: 0.75rem; - --pico-icon-width: 1rem; - padding-right: calc(var(--pico-icon-width) + var(--pico-icon-position)); - background-image: var(--pico-icon-date); - background-position: center right var(--pico-icon-position); - background-size: var(--pico-icon-width) auto; - background-repeat: no-repeat; -} -input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] { - background-image: var(--pico-icon-time); -} - -[type=date]::-webkit-calendar-picker-indicator, -[type=datetime-local]::-webkit-calendar-picker-indicator, -[type=month]::-webkit-calendar-picker-indicator, -[type=time]::-webkit-calendar-picker-indicator, -[type=week]::-webkit-calendar-picker-indicator { - width: var(--pico-icon-width); - margin-right: calc(var(--pico-icon-width) * -1); - margin-left: var(--pico-icon-position); - opacity: 0; -} - -@-moz-document url-prefix() { - [type=date], - [type=datetime-local], - [type=month], - [type=time], - [type=week] { - padding-right: var(--pico-form-element-spacing-horizontal) !important; - background-image: none !important; - } -} -[dir=rtl] :is([type=date], [type=datetime-local], [type=month], [type=time], [type=week]) { - text-align: right; -} - -/** - * Input type file - */ -[type=file] { - --pico-color: var(--pico-muted-color); - margin-left: calc(var(--pico-outline-width) * -1); - padding: calc(var(--pico-form-element-spacing-vertical) * 0.5) 0; - padding-left: var(--pico-outline-width); - border: 0; - border-radius: 0; - background: none; -} -[type=file]::file-selector-button { - margin-right: calc(var(--pico-spacing) / 2); - padding: calc(var(--pico-form-element-spacing-vertical) * 0.5) var(--pico-form-element-spacing-horizontal); -} -[type=file]:is(:hover, :active, :focus)::file-selector-button { - --pico-background-color: var(--pico-secondary-hover-background); - --pico-border-color: var(--pico-secondary-hover-border); -} -[type=file]:focus::file-selector-button { - --pico-box-shadow: var(--pico-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)), 0 0 0 var(--pico-outline-width) var(--pico-secondary-focus); -} - -/** - * Input type range - */ -[type=range] { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - width: 100%; - height: 1.25rem; - background: none; -} -[type=range]::-webkit-slider-runnable-track { - width: 100%; - height: 0.375rem; - border-radius: var(--pico-border-radius); - background-color: var(--pico-range-border-color); - -webkit-transition: background-color var(--pico-transition), box-shadow var(--pico-transition); - transition: background-color var(--pico-transition), box-shadow var(--pico-transition); -} -[type=range]::-moz-range-track { - width: 100%; - height: 0.375rem; - border-radius: var(--pico-border-radius); - background-color: var(--pico-range-border-color); - -moz-transition: background-color var(--pico-transition), box-shadow var(--pico-transition); - transition: background-color var(--pico-transition), box-shadow var(--pico-transition); -} -[type=range]::-ms-track { - width: 100%; - height: 0.375rem; - border-radius: var(--pico-border-radius); - background-color: var(--pico-range-border-color); - -ms-transition: background-color var(--pico-transition), box-shadow var(--pico-transition); - transition: background-color var(--pico-transition), box-shadow var(--pico-transition); -} -[type=range]::-webkit-slider-thumb { - -webkit-appearance: none; - width: 1.25rem; - height: 1.25rem; - margin-top: -0.4375rem; - border: 2px solid var(--pico-range-thumb-border-color); - border-radius: 50%; - background-color: var(--pico-range-thumb-color); - cursor: pointer; - -webkit-transition: background-color var(--pico-transition), transform var(--pico-transition); - transition: background-color var(--pico-transition), transform var(--pico-transition); -} -[type=range]::-moz-range-thumb { - -webkit-appearance: none; - width: 1.25rem; - height: 1.25rem; - margin-top: -0.4375rem; - border: 2px solid var(--pico-range-thumb-border-color); - border-radius: 50%; - background-color: var(--pico-range-thumb-color); - cursor: pointer; - -moz-transition: background-color var(--pico-transition), transform var(--pico-transition); - transition: background-color var(--pico-transition), transform var(--pico-transition); -} -[type=range]::-ms-thumb { - -webkit-appearance: none; - width: 1.25rem; - height: 1.25rem; - margin-top: -0.4375rem; - border: 2px solid var(--pico-range-thumb-border-color); - border-radius: 50%; - background-color: var(--pico-range-thumb-color); - cursor: pointer; - -ms-transition: background-color var(--pico-transition), transform var(--pico-transition); - transition: background-color var(--pico-transition), transform var(--pico-transition); -} -[type=range]:active, [type=range]:focus-within { - --pico-range-border-color: var(--pico-range-active-border-color); - --pico-range-thumb-color: var(--pico-range-thumb-active-color); -} -[type=range]:active::-webkit-slider-thumb { - transform: scale(1.25); -} -[type=range]:active::-moz-range-thumb { - transform: scale(1.25); -} -[type=range]:active::-ms-thumb { - transform: scale(1.25); -} - -/** - * Input type search - */ -input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { - padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); - background-image: var(--pico-icon-search); - background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem); - background-size: 1rem auto; - background-repeat: no-repeat; -} -input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search][aria-invalid] { - padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem) !important; - background-position: center left 1.125rem, center right 0.75rem; -} -input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search][aria-invalid=false] { - background-image: var(--pico-icon-search), var(--pico-icon-valid); -} -input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search][aria-invalid=true] { - background-image: var(--pico-icon-search), var(--pico-icon-invalid); -} - -[dir=rtl] :where(input):not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { - background-position: center right 1.125rem; -} -[dir=rtl] :where(input):not([type=checkbox], [type=radio], [type=range], [type=file])[type=search][aria-invalid] { - background-position: center right 1.125rem, center left 0.75rem; -} - -/** - * Accordion (
    ) - */ -details { - display: block; - margin-bottom: var(--pico-spacing); -} -details summary { - line-height: 1rem; - list-style-type: none; - cursor: pointer; - transition: color var(--pico-transition); -} -details summary:not([role]) { - color: var(--pico-accordion-close-summary-color); -} -details summary::-webkit-details-marker { - display: none; -} -details summary::marker { - display: none; -} -details summary::-moz-list-bullet { - list-style-type: none; -} -details summary::after { - display: block; - width: 1rem; - height: 1rem; - margin-inline-start: calc(var(--pico-spacing, 1rem) * 0.5); - float: right; - transform: rotate(-90deg); - background-image: var(--pico-icon-chevron); - background-position: right center; - background-size: 1rem auto; - background-repeat: no-repeat; - content: ""; - transition: transform var(--pico-transition); -} -details summary:focus { - outline: none; -} -details summary:focus:not([role]) { - color: var(--pico-accordion-active-summary-color); -} -details summary:focus-visible:not([role]) { - outline: var(--pico-outline-width) solid var(--pico-primary-focus); - outline-offset: calc(var(--pico-spacing, 1rem) * 0.5); - color: var(--pico-primary); -} -details summary[role=button] { - width: 100%; - text-align: left; -} -details summary[role=button]::after { - height: calc(1rem * var(--pico-line-height, 1.5)); -} -details[open] > summary { - margin-bottom: var(--pico-spacing); -} -details[open] > summary:not([role]):not(:focus) { - color: var(--pico-accordion-open-summary-color); -} -details[open] > summary::after { - transform: rotate(0); -} - -[dir=rtl] details summary { - text-align: right; -} -[dir=rtl] details summary::after { - float: left; - background-position: left center; -} - -/** - * Card (
    ) - */ -article { - margin-bottom: var(--pico-block-spacing-vertical); - padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal); - border-radius: var(--pico-border-radius); - background: var(--pico-card-background-color); - box-shadow: var(--pico-card-box-shadow); -} -article > header, -article > footer { - margin-right: calc(var(--pico-block-spacing-horizontal) * -1); - margin-left: calc(var(--pico-block-spacing-horizontal) * -1); - padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal); - background-color: var(--pico-card-sectioning-background-color); -} -article > header { - margin-top: calc(var(--pico-block-spacing-vertical) * -1); - margin-bottom: var(--pico-block-spacing-vertical); - border-bottom: var(--pico-border-width) solid var(--pico-card-border-color); - border-top-right-radius: var(--pico-border-radius); - border-top-left-radius: var(--pico-border-radius); -} -article > footer { - margin-top: var(--pico-block-spacing-vertical); - margin-bottom: calc(var(--pico-block-spacing-vertical) * -1); - border-top: var(--pico-border-width) solid var(--pico-card-border-color); - border-bottom-right-radius: var(--pico-border-radius); - border-bottom-left-radius: var(--pico-border-radius); -} - -/** - * Dropdown (details.dropdown) - */ -details.dropdown { - position: relative; - border-bottom: none; -} -details.dropdown summary::after, -details.dropdown > button::after, -details.dropdown > a::after { - display: block; - width: 1rem; - height: calc(1rem * var(--pico-line-height, 1.5)); - margin-inline-start: 0.25rem; - float: right; - transform: rotate(0deg) translateX(0.2rem); - background-image: var(--pico-icon-chevron); - background-position: right center; - background-size: 1rem auto; - background-repeat: no-repeat; - content: ""; -} - -nav details.dropdown { - margin-bottom: 0; -} - -details.dropdown summary:not([role]) { - height: calc(1rem * var(--pico-line-height) + var(--pico-form-element-spacing-vertical) * 2 + var(--pico-border-width) * 2); - padding: var(--pico-form-element-spacing-vertical) var(--pico-form-element-spacing-horizontal); - border: var(--pico-border-width) solid var(--pico-form-element-border-color); - border-radius: var(--pico-border-radius); - background-color: var(--pico-form-element-background-color); - color: var(--pico-form-element-placeholder-color); - line-height: inherit; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - transition: background-color var(--pico-transition), border-color var(--pico-transition), color var(--pico-transition), box-shadow var(--pico-transition); -} -details.dropdown summary:not([role]):active, details.dropdown summary:not([role]):focus { - border-color: var(--pico-form-element-active-border-color); - background-color: var(--pico-form-element-active-background-color); -} -details.dropdown summary:not([role]):focus { - box-shadow: 0 0 0 var(--pico-outline-width) var(--pico-form-element-focus-color); -} -details.dropdown summary:not([role]):focus-visible { - outline: none; -} -details.dropdown summary:not([role])[aria-invalid=false] { - --pico-form-element-border-color: var(--pico-form-element-valid-border-color); - --pico-form-element-active-border-color: var(--pico-form-element-valid-focus-color); - --pico-form-element-focus-color: var(--pico-form-element-valid-focus-color); -} -details.dropdown summary:not([role])[aria-invalid=true] { - --pico-form-element-border-color: var(--pico-form-element-invalid-border-color); - --pico-form-element-active-border-color: var(--pico-form-element-invalid-focus-color); - --pico-form-element-focus-color: var(--pico-form-element-invalid-focus-color); -} - -nav details.dropdown { - display: inline; - margin: calc(var(--pico-nav-element-spacing-vertical) * -1) 0; -} -nav details.dropdown summary::after { - transform: rotate(0deg) translateX(0rem); -} -nav details.dropdown summary:not([role]) { - height: calc(1rem * var(--pico-line-height) + var(--pico-nav-link-spacing-vertical) * 2); - padding: calc(var(--pico-nav-link-spacing-vertical) - var(--pico-border-width) * 2) var(--pico-nav-link-spacing-horizontal); -} -nav details.dropdown summary:not([role]):focus-visible { - box-shadow: 0 0 0 var(--pico-outline-width) var(--pico-primary-focus); -} - -details.dropdown summary + ul { - display: flex; - z-index: 99; - position: absolute; - left: 0; - flex-direction: column; - width: 100%; - min-width: -moz-fit-content; - min-width: fit-content; - margin: 0; - margin-top: var(--pico-outline-width); - padding: 0; - border: var(--pico-border-width) solid var(--pico-dropdown-border-color); - border-radius: var(--pico-border-radius); - background-color: var(--pico-dropdown-background-color); - box-shadow: var(--pico-dropdown-box-shadow); - color: var(--pico-dropdown-color); - white-space: nowrap; - opacity: 0; - transition: opacity var(--pico-transition), transform 0s ease-in-out 1s; -} -details.dropdown summary + ul[dir=rtl] { - right: 0; - left: auto; -} -details.dropdown summary + ul li { - width: 100%; - margin-bottom: 0; - padding: calc(var(--pico-form-element-spacing-vertical) * 0.5) var(--pico-form-element-spacing-horizontal); - list-style: none; -} -details.dropdown summary + ul li:first-of-type { - margin-top: calc(var(--pico-form-element-spacing-vertical) * 0.5); -} -details.dropdown summary + ul li:last-of-type { - margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5); -} -details.dropdown summary + ul li a { - display: block; - margin: calc(var(--pico-form-element-spacing-vertical) * -0.5) calc(var(--pico-form-element-spacing-horizontal) * -1); - padding: calc(var(--pico-form-element-spacing-vertical) * 0.5) var(--pico-form-element-spacing-horizontal); - overflow: hidden; - border-radius: 0; - color: var(--pico-dropdown-color); - text-decoration: none; - text-overflow: ellipsis; -} -details.dropdown summary + ul li a:hover, details.dropdown summary + ul li a:focus, details.dropdown summary + ul li a:active, details.dropdown summary + ul li a:focus-visible, details.dropdown summary + ul li a[aria-current]:not([aria-current=false]) { - background-color: var(--pico-dropdown-hover-background-color); -} -details.dropdown summary + ul li label { - width: 100%; -} -details.dropdown summary + ul li:has(label):hover { - background-color: var(--pico-dropdown-hover-background-color); -} - -details.dropdown[open] summary { - margin-bottom: 0; -} - -details.dropdown[open] summary + ul { - transform: scaleY(1); - opacity: 1; - transition: opacity var(--pico-transition), transform 0s ease-in-out 0s; -} - -details.dropdown[open] summary::before { - display: block; - z-index: 1; - position: fixed; - width: 100vw; - height: 100vh; - inset: 0; - background: none; - content: ""; - cursor: default; -} - -label > details.dropdown { - margin-top: calc(var(--pico-spacing) * 0.25); -} - -/** - * Group ([role="group"], [role="search"]) - */ -[role=search], -[role=group] { - display: inline-flex; - position: relative; - width: 100%; - margin-bottom: var(--pico-spacing); - border-radius: var(--pico-border-radius); - box-shadow: var(--pico-group-box-shadow, 0 0 0 rgba(0, 0, 0, 0)); - vertical-align: middle; - transition: box-shadow var(--pico-transition); -} -[role=search] > *, -[role=search] input:not([type=checkbox], [type=radio]), -[role=search] select, -[role=group] > *, -[role=group] input:not([type=checkbox], [type=radio]), -[role=group] select { - position: relative; - flex: 1 1 auto; - margin-bottom: 0; -} -[role=search] > *:not(:first-child), -[role=search] input:not([type=checkbox], [type=radio]):not(:first-child), -[role=search] select:not(:first-child), -[role=group] > *:not(:first-child), -[role=group] input:not([type=checkbox], [type=radio]):not(:first-child), -[role=group] select:not(:first-child) { - margin-left: 0; - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -[role=search] > *:not(:last-child), -[role=search] input:not([type=checkbox], [type=radio]):not(:last-child), -[role=search] select:not(:last-child), -[role=group] > *:not(:last-child), -[role=group] input:not([type=checkbox], [type=radio]):not(:last-child), -[role=group] select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -[role=search] > *:focus, -[role=search] input:not([type=checkbox], [type=radio]):focus, -[role=search] select:focus, -[role=group] > *:focus, -[role=group] input:not([type=checkbox], [type=radio]):focus, -[role=group] select:focus { - z-index: 2; -} -[role=search] button:not(:first-child), -[role=search] [type=submit]:not(:first-child), -[role=search] [type=reset]:not(:first-child), -[role=search] [type=button]:not(:first-child), -[role=search] [role=button]:not(:first-child), -[role=search] input:not([type=checkbox], [type=radio]):not(:first-child), -[role=search] select:not(:first-child), -[role=group] button:not(:first-child), -[role=group] [type=submit]:not(:first-child), -[role=group] [type=reset]:not(:first-child), -[role=group] [type=button]:not(:first-child), -[role=group] [role=button]:not(:first-child), -[role=group] input:not([type=checkbox], [type=radio]):not(:first-child), -[role=group] select:not(:first-child) { - margin-left: calc(var(--pico-border-width) * -1); -} -[role=search] button, -[role=search] [type=submit], -[role=search] [type=reset], -[role=search] [type=button], -[role=search] [role=button], -[role=group] button, -[role=group] [type=submit], -[role=group] [type=reset], -[role=group] [type=button], -[role=group] [role=button] { - width: auto; -} -@supports selector(:has(*)) { - [role=search]:has(button:focus, [type=submit]:focus, [type=button]:focus, [role=button]:focus), - [role=group]:has(button:focus, [type=submit]:focus, [type=button]:focus, [role=button]:focus) { - --pico-group-box-shadow: var(--pico-group-box-shadow-focus-with-button); - } - [role=search]:has(button:focus, [type=submit]:focus, [type=button]:focus, [role=button]:focus) input:not([type=checkbox], [type=radio]), - [role=search]:has(button:focus, [type=submit]:focus, [type=button]:focus, [role=button]:focus) select, - [role=group]:has(button:focus, [type=submit]:focus, [type=button]:focus, [role=button]:focus) input:not([type=checkbox], [type=radio]), - [role=group]:has(button:focus, [type=submit]:focus, [type=button]:focus, [role=button]:focus) select { - border-color: transparent; - } - [role=search]:has(input:not([type=submit], [type=button]):focus, select:focus), - [role=group]:has(input:not([type=submit], [type=button]):focus, select:focus) { - --pico-group-box-shadow: var(--pico-group-box-shadow-focus-with-input); - } - [role=search]:has(input:not([type=submit], [type=button]):focus, select:focus) button, - [role=search]:has(input:not([type=submit], [type=button]):focus, select:focus) [type=submit], - [role=search]:has(input:not([type=submit], [type=button]):focus, select:focus) [type=button], - [role=search]:has(input:not([type=submit], [type=button]):focus, select:focus) [role=button], - [role=group]:has(input:not([type=submit], [type=button]):focus, select:focus) button, - [role=group]:has(input:not([type=submit], [type=button]):focus, select:focus) [type=submit], - [role=group]:has(input:not([type=submit], [type=button]):focus, select:focus) [type=button], - [role=group]:has(input:not([type=submit], [type=button]):focus, select:focus) [role=button] { - --pico-button-box-shadow: 0 0 0 var(--pico-border-width) var(--pico-primary-border); - --pico-button-hover-box-shadow: 0 0 0 var(--pico-border-width) var(--pico-primary-hover-border); - } - [role=search] button:focus, - [role=search] [type=submit]:focus, - [role=search] [type=reset]:focus, - [role=search] [type=button]:focus, - [role=search] [role=button]:focus, - [role=group] button:focus, - [role=group] [type=submit]:focus, - [role=group] [type=reset]:focus, - [role=group] [type=button]:focus, - [role=group] [role=button]:focus { - box-shadow: none; - } -} - -[role=search] > *:first-child { - border-top-left-radius: 5rem; - border-bottom-left-radius: 5rem; -} -[role=search] > *:last-child { - border-top-right-radius: 5rem; - border-bottom-right-radius: 5rem; -} - -/** - * Loading ([aria-busy=true]) - */ -[aria-busy=true]:not(input, select, textarea, html) { - white-space: nowrap; -} -[aria-busy=true]:not(input, select, textarea, html)::before { - display: inline-block; - width: 1em; - height: 1em; - background-image: var(--pico-icon-loading); - background-size: 1em auto; - background-repeat: no-repeat; - content: ""; - vertical-align: -0.125em; -} -[aria-busy=true]:not(input, select, textarea, html):not(:empty)::before { - margin-inline-end: calc(var(--pico-spacing) * 0.5); -} -[aria-busy=true]:not(input, select, textarea, html):empty { - text-align: center; -} - -button[aria-busy=true], -[type=submit][aria-busy=true], -[type=button][aria-busy=true], -[type=reset][aria-busy=true], -[role=button][aria-busy=true], -a[aria-busy=true] { - pointer-events: none; -} - -/** - * Modal () - */ -:root { - --pico-scrollbar-width: 0px; -} - -dialog { - display: flex; - z-index: 999; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - align-items: center; - justify-content: center; - width: inherit; - min-width: 100%; - height: inherit; - min-height: 100%; - padding: 0; - border: 0; - -webkit-backdrop-filter: var(--pico-modal-overlay-backdrop-filter); - backdrop-filter: var(--pico-modal-overlay-backdrop-filter); - background-color: var(--pico-modal-overlay-background-color); - color: var(--pico-color); -} -dialog article { - width: 100%; - max-height: calc(100vh - var(--pico-spacing) * 2); - margin: var(--pico-spacing); - overflow: auto; -} -@media (min-width: 576px) { - dialog article { - max-width: 510px; - } -} -@media (min-width: 768px) { - dialog article { - max-width: 700px; - } -} -dialog article > header > * { - margin-bottom: 0; -} -dialog article > header .close, dialog article > header :is(a, button)[rel=prev] { - margin: 0; - margin-left: var(--pico-spacing); - padding: 0; - float: right; -} -dialog article > footer { - text-align: right; -} -dialog article > footer button, -dialog article > footer [role=button] { - margin-bottom: 0; -} -dialog article > footer button:not(:first-of-type), -dialog article > footer [role=button]:not(:first-of-type) { - margin-left: calc(var(--pico-spacing) * 0.5); -} -dialog article .close, dialog article :is(a, button)[rel=prev] { - display: block; - width: 1rem; - height: 1rem; - margin-top: calc(var(--pico-spacing) * -1); - margin-bottom: var(--pico-spacing); - margin-left: auto; - border: none; - background-image: var(--pico-icon-close); - background-position: center; - background-size: auto 1rem; - background-repeat: no-repeat; - background-color: transparent; - opacity: 0.5; - transition: opacity var(--pico-transition); -} -dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { - opacity: 1; -} -dialog:not([open]), dialog[open=false] { - display: none; -} - -.modal-is-open { - padding-right: var(--pico-scrollbar-width, 0px); - overflow: hidden; - pointer-events: none; - touch-action: none; -} -.modal-is-open dialog { - pointer-events: auto; - touch-action: auto; -} - -:where(.modal-is-opening, .modal-is-closing) dialog, -:where(.modal-is-opening, .modal-is-closing) dialog > article { - animation-duration: 0.2s; - animation-timing-function: ease-in-out; - animation-fill-mode: both; -} -:where(.modal-is-opening, .modal-is-closing) dialog { - animation-duration: 0.8s; - animation-name: modal-overlay; -} -:where(.modal-is-opening, .modal-is-closing) dialog > article { - animation-delay: 0.2s; - animation-name: modal; -} - -.modal-is-closing dialog, -.modal-is-closing dialog > article { - animation-delay: 0s; - animation-direction: reverse; -} - -@keyframes modal-overlay { - from { - -webkit-backdrop-filter: none; - backdrop-filter: none; - background-color: transparent; - } -} -@keyframes modal { - from { - transform: translateY(-100%); - opacity: 0; - } -} -/** - * Nav - */ -:where(nav li)::before { - float: left; - content: "​"; -} - -nav, -nav ul { - display: flex; -} - -nav { - justify-content: space-between; - overflow: visible; -} -nav ol, -nav ul { - align-items: center; - margin-bottom: 0; - padding: 0; - list-style: none; -} -nav ol:first-of-type, -nav ul:first-of-type { - margin-left: calc(var(--pico-nav-element-spacing-horizontal) * -1); -} -nav ol:last-of-type, -nav ul:last-of-type { - margin-right: calc(var(--pico-nav-element-spacing-horizontal) * -1); -} -nav li { - display: inline-block; - margin: 0; - padding: var(--pico-nav-element-spacing-vertical) var(--pico-nav-element-spacing-horizontal); -} -nav li :where(a, [role=link]) { - display: inline-block; - margin: calc(var(--pico-nav-link-spacing-vertical) * -1) calc(var(--pico-nav-link-spacing-horizontal) * -1); - padding: var(--pico-nav-link-spacing-vertical) var(--pico-nav-link-spacing-horizontal); - border-radius: var(--pico-border-radius); -} -nav li :where(a, [role=link]):not(:hover) { - text-decoration: none; -} -nav li button, -nav li [role=button], -nav li [type=button], -nav li input:not([type=checkbox], [type=radio], [type=range], [type=file]), -nav li select { - height: auto; - margin-right: inherit; - margin-bottom: 0; - margin-left: inherit; - padding: calc(var(--pico-nav-link-spacing-vertical) - var(--pico-border-width) * 2) var(--pico-nav-link-spacing-horizontal); -} -nav[aria-label=breadcrumb] { - align-items: center; - justify-content: start; -} -nav[aria-label=breadcrumb] ul li:not(:first-child) { - margin-inline-start: var(--pico-nav-link-spacing-horizontal); -} -nav[aria-label=breadcrumb] ul li a { - margin: calc(var(--pico-nav-link-spacing-vertical) * -1) 0; - margin-inline-start: calc(var(--pico-nav-link-spacing-horizontal) * -1); -} -nav[aria-label=breadcrumb] ul li:not(:last-child)::after { - display: inline-block; - position: absolute; - width: calc(var(--pico-nav-link-spacing-horizontal) * 4); - margin: 0 calc(var(--pico-nav-link-spacing-horizontal) * -1); - content: var(--pico-nav-breadcrumb-divider); - color: var(--pico-muted-color); - text-align: center; - text-decoration: none; - white-space: nowrap; -} -nav[aria-label=breadcrumb] a[aria-current]:not([aria-current=false]) { - background-color: transparent; - color: inherit; - text-decoration: none; - pointer-events: none; -} - -aside nav, -aside ol, -aside ul, -aside li { - display: block; -} -aside li { - padding: calc(var(--pico-nav-element-spacing-vertical) * 0.5) var(--pico-nav-element-spacing-horizontal); -} -aside li a { - display: block; -} -aside li [role=button] { - margin: inherit; -} - -[dir=rtl] nav[aria-label=breadcrumb] ul li:not(:last-child) ::after { - content: "\\"; -} - -/** - * Progress - */ -progress { - display: inline-block; - vertical-align: baseline; -} - -progress { - -webkit-appearance: none; - -moz-appearance: none; - display: inline-block; - appearance: none; - width: 100%; - height: 0.5rem; - margin-bottom: calc(var(--pico-spacing) * 0.5); - overflow: hidden; - border: 0; - border-radius: var(--pico-border-radius); - background-color: var(--pico-progress-background-color); - color: var(--pico-progress-color); -} -progress::-webkit-progress-bar { - border-radius: var(--pico-border-radius); - background: none; -} -progress[value]::-webkit-progress-value { - background-color: var(--pico-progress-color); - -webkit-transition: inline-size var(--pico-transition); - transition: inline-size var(--pico-transition); -} -progress::-moz-progress-bar { - background-color: var(--pico-progress-color); -} -@media (prefers-reduced-motion: no-preference) { - progress:indeterminate { - background: var(--pico-progress-background-color) linear-gradient(to right, var(--pico-progress-color) 30%, var(--pico-progress-background-color) 30%) top left/150% 150% no-repeat; - animation: progress-indeterminate 1s linear infinite; - } - progress:indeterminate[value]::-webkit-progress-value { - background-color: transparent; - } - progress:indeterminate::-moz-progress-bar { - background-color: transparent; - } -} - -@media (prefers-reduced-motion: no-preference) { - [dir=rtl] progress:indeterminate { - animation-direction: reverse; - } -} - -@keyframes progress-indeterminate { - 0% { - background-position: 200% 0; - } - 100% { - background-position: -200% 0; - } -} -/** - * Tooltip ([data-tooltip]) - */ -[data-tooltip] { - position: relative; -} -[data-tooltip]:not(a, button, input) { - border-bottom: 1px dotted; - text-decoration: none; - cursor: help; -} -[data-tooltip][data-placement=top]::before, [data-tooltip][data-placement=top]::after, [data-tooltip]::before, [data-tooltip]::after { - display: block; - z-index: 99; - position: absolute; - bottom: 100%; - left: 50%; - padding: 0.25rem 0.5rem; - overflow: hidden; - transform: translate(-50%, -0.25rem); - border-radius: var(--pico-border-radius); - background: var(--pico-tooltip-background-color); - content: attr(data-tooltip); - color: var(--pico-tooltip-color); - font-style: normal; - font-weight: var(--pico-font-weight); - font-size: 0.875rem; - text-decoration: none; - text-overflow: ellipsis; - white-space: nowrap; - opacity: 0; - pointer-events: none; -} -[data-tooltip][data-placement=top]::after, [data-tooltip]::after { - padding: 0; - transform: translate(-50%, 0rem); - border-top: 0.3rem solid; - border-right: 0.3rem solid transparent; - border-left: 0.3rem solid transparent; - border-radius: 0; - background-color: transparent; - content: ""; - color: var(--pico-tooltip-background-color); -} -[data-tooltip][data-placement=bottom]::before, [data-tooltip][data-placement=bottom]::after { - top: 100%; - bottom: auto; - transform: translate(-50%, 0.25rem); -} -[data-tooltip][data-placement=bottom]:after { - transform: translate(-50%, -0.3rem); - border: 0.3rem solid transparent; - border-bottom: 0.3rem solid; -} -[data-tooltip][data-placement=left]::before, [data-tooltip][data-placement=left]::after { - top: 50%; - right: 100%; - bottom: auto; - left: auto; - transform: translate(-0.25rem, -50%); -} -[data-tooltip][data-placement=left]:after { - transform: translate(0.3rem, -50%); - border: 0.3rem solid transparent; - border-left: 0.3rem solid; -} -[data-tooltip][data-placement=right]::before, [data-tooltip][data-placement=right]::after { - top: 50%; - right: auto; - bottom: auto; - left: 100%; - transform: translate(0.25rem, -50%); -} -[data-tooltip][data-placement=right]:after { - transform: translate(-0.3rem, -50%); - border: 0.3rem solid transparent; - border-right: 0.3rem solid; -} -[data-tooltip]:focus::before, [data-tooltip]:focus::after, [data-tooltip]:hover::before, [data-tooltip]:hover::after { - opacity: 1; -} -@media (hover: hover) and (pointer: fine) { - [data-tooltip]:focus::before, [data-tooltip]:focus::after, [data-tooltip]:hover::before, [data-tooltip]:hover::after { - --pico-tooltip-slide-to: translate(-50%, -0.25rem); - transform: translate(-50%, 0.75rem); - animation-duration: 0.2s; - animation-fill-mode: forwards; - animation-name: tooltip-slide; - opacity: 0; - } - [data-tooltip]:focus::after, [data-tooltip]:hover::after { - --pico-tooltip-caret-slide-to: translate(-50%, 0rem); - transform: translate(-50%, -0.25rem); - animation-name: tooltip-caret-slide; - } - [data-tooltip][data-placement=bottom]:focus::before, [data-tooltip][data-placement=bottom]:focus::after, [data-tooltip][data-placement=bottom]:hover::before, [data-tooltip][data-placement=bottom]:hover::after { - --pico-tooltip-slide-to: translate(-50%, 0.25rem); - transform: translate(-50%, -0.75rem); - animation-name: tooltip-slide; - } - [data-tooltip][data-placement=bottom]:focus::after, [data-tooltip][data-placement=bottom]:hover::after { - --pico-tooltip-caret-slide-to: translate(-50%, -0.3rem); - transform: translate(-50%, -0.5rem); - animation-name: tooltip-caret-slide; - } - [data-tooltip][data-placement=left]:focus::before, [data-tooltip][data-placement=left]:focus::after, [data-tooltip][data-placement=left]:hover::before, [data-tooltip][data-placement=left]:hover::after { - --pico-tooltip-slide-to: translate(-0.25rem, -50%); - transform: translate(0.75rem, -50%); - animation-name: tooltip-slide; - } - [data-tooltip][data-placement=left]:focus::after, [data-tooltip][data-placement=left]:hover::after { - --pico-tooltip-caret-slide-to: translate(0.3rem, -50%); - transform: translate(0.05rem, -50%); - animation-name: tooltip-caret-slide; - } - [data-tooltip][data-placement=right]:focus::before, [data-tooltip][data-placement=right]:focus::after, [data-tooltip][data-placement=right]:hover::before, [data-tooltip][data-placement=right]:hover::after { - --pico-tooltip-slide-to: translate(0.25rem, -50%); - transform: translate(-0.75rem, -50%); - animation-name: tooltip-slide; - } - [data-tooltip][data-placement=right]:focus::after, [data-tooltip][data-placement=right]:hover::after { - --pico-tooltip-caret-slide-to: translate(-0.3rem, -50%); - transform: translate(-0.05rem, -50%); - animation-name: tooltip-caret-slide; - } -} -@keyframes tooltip-slide { - to { - transform: var(--pico-tooltip-slide-to); - opacity: 1; - } -} -@keyframes tooltip-caret-slide { - 50% { - opacity: 0; - } - to { - transform: var(--pico-tooltip-caret-slide-to); - opacity: 1; - } -} - -/** - * Accessibility & User interaction - */ -[aria-controls] { - cursor: pointer; -} - -[aria-disabled=true], -[disabled] { - cursor: not-allowed; -} - -[aria-hidden=false][hidden] { - display: initial; -} - -[aria-hidden=false][hidden]:not(:focus) { - clip: rect(0, 0, 0, 0); - position: absolute; -} - -a, -area, -button, -input, -label, -select, -summary, -textarea, -[tabindex] { - -ms-touch-action: manipulation; -} - -[dir=rtl] { - direction: rtl; -} - -/** - * Reduce Motion Features - */ -@media (prefers-reduced-motion: reduce) { - *:not([aria-busy=true]), - :not([aria-busy=true])::before, - :not([aria-busy=true])::after { - background-attachment: initial !important; - animation-duration: 1ms !important; - animation-delay: -1ms !important; - animation-iteration-count: 1 !important; - scroll-behavior: auto !important; - transition-delay: 0s !important; - transition-duration: 0s !important; - } -} diff --git a/wwwroot/pico.colors-v2.0.6.css b/wwwroot/pico.colors-v2.0.6.css deleted file mode 100644 index 5bcb28e..0000000 --- a/wwwroot/pico.colors-v2.0.6.css +++ /dev/null @@ -1,4009 +0,0 @@ -@charset "UTF-8"; -/*! - * Pico CSS ✨ v2.0.6 (https://picocss.com) - * Copyright 2019-2024 - Licensed under MIT - */ -:root { - --pico-color-red-950: #1c0d06; - --pico-color-red-900: #30130a; - --pico-color-red-850: #45150c; - --pico-color-red-800: #5c160d; - --pico-color-red-750: #72170f; - --pico-color-red-700: #861d13; - --pico-color-red-650: #9b2318; - --pico-color-red-600: #af291d; - --pico-color-red-550: #c52f21; - --pico-color-red-500: #d93526; - --pico-color-red-450: #ee402e; - --pico-color-red-400: #f06048; - --pico-color-red-350: #f17961; - --pico-color-red-300: #f38f79; - --pico-color-red-250: #f5a390; - --pico-color-red-200: #f5b7a8; - --pico-color-red-150: #f6cabf; - --pico-color-red-100: #f8dcd6; - --pico-color-red-50: #faeeeb; - --pico-color-red: #c52f21; - --pico-color-pink-950: #25060c; - --pico-color-pink-900: #380916; - --pico-color-pink-850: #4b0c1f; - --pico-color-pink-800: #5f0e28; - --pico-color-pink-750: #740f31; - --pico-color-pink-700: #88143b; - --pico-color-pink-650: #9d1945; - --pico-color-pink-600: #b21e4f; - --pico-color-pink-550: #c72259; - --pico-color-pink-500: #d92662; - --pico-color-pink-450: #f42c6f; - --pico-color-pink-400: #f6547e; - --pico-color-pink-350: #f7708e; - --pico-color-pink-300: #f8889e; - --pico-color-pink-250: #f99eae; - --pico-color-pink-200: #f9b4be; - --pico-color-pink-150: #f9c8ce; - --pico-color-pink-100: #f9dbdf; - --pico-color-pink-50: #fbedef; - --pico-color-pink: #d92662; - --pico-color-fuchsia-950: #230518; - --pico-color-fuchsia-900: #360925; - --pico-color-fuchsia-850: #480b33; - --pico-color-fuchsia-800: #5c0d41; - --pico-color-fuchsia-750: #700e4f; - --pico-color-fuchsia-700: #84135e; - --pico-color-fuchsia-650: #98176d; - --pico-color-fuchsia-600: #ac1c7c; - --pico-color-fuchsia-550: #c1208b; - --pico-color-fuchsia-500: #d9269d; - --pico-color-fuchsia-450: #ed2aac; - --pico-color-fuchsia-400: #f748b7; - --pico-color-fuchsia-350: #f869bf; - --pico-color-fuchsia-300: #f983c7; - --pico-color-fuchsia-250: #fa9acf; - --pico-color-fuchsia-200: #f9b1d8; - --pico-color-fuchsia-150: #f9c6e1; - --pico-color-fuchsia-100: #f9daea; - --pico-color-fuchsia-50: #fbedf4; - --pico-color-fuchsia: #c1208b; - --pico-color-purple-950: #1e0820; - --pico-color-purple-900: #2d0f33; - --pico-color-purple-850: #3d1545; - --pico-color-purple-800: #4d1a57; - --pico-color-purple-750: #5e206b; - --pico-color-purple-700: #6f277d; - --pico-color-purple-650: #802e90; - --pico-color-purple-600: #9236a4; - --pico-color-purple-550: #aa40bf; - --pico-color-purple-500: #b645cd; - --pico-color-purple-450: #c652dc; - --pico-color-purple-400: #cd68e0; - --pico-color-purple-350: #d47de4; - --pico-color-purple-300: #db90e8; - --pico-color-purple-250: #e2a3eb; - --pico-color-purple-200: #e7b6ee; - --pico-color-purple-150: #edc9f1; - --pico-color-purple-100: #f2dcf4; - --pico-color-purple-50: #f8eef9; - --pico-color-purple: #9236a4; - --pico-color-violet-950: #190928; - --pico-color-violet-900: #251140; - --pico-color-violet-850: #321856; - --pico-color-violet-800: #3f1e6d; - --pico-color-violet-750: #4d2585; - --pico-color-violet-700: #5b2d9c; - --pico-color-violet-650: #6935b3; - --pico-color-violet-600: #7540bf; - --pico-color-violet-550: #8352c5; - --pico-color-violet-500: #9062ca; - --pico-color-violet-450: #9b71cf; - --pico-color-violet-400: #a780d4; - --pico-color-violet-350: #b290d9; - --pico-color-violet-300: #bd9fdf; - --pico-color-violet-250: #c9afe4; - --pico-color-violet-200: #d3bfe8; - --pico-color-violet-150: #decfed; - --pico-color-violet-100: #e8dff2; - --pico-color-violet-50: #f3eff7; - --pico-color-violet: #7540bf; - --pico-color-indigo-950: #110b31; - --pico-color-indigo-900: #181546; - --pico-color-indigo-850: #1f1e5e; - --pico-color-indigo-800: #272678; - --pico-color-indigo-750: #2f2f92; - --pico-color-indigo-700: #3838ab; - --pico-color-indigo-650: #4040bf; - --pico-color-indigo-600: #524ed2; - --pico-color-indigo-550: #655cd6; - --pico-color-indigo-500: #7569da; - --pico-color-indigo-450: #8577dd; - --pico-color-indigo-400: #9486e1; - --pico-color-indigo-350: #a294e5; - --pico-color-indigo-300: #b0a3e8; - --pico-color-indigo-250: #bdb2ec; - --pico-color-indigo-200: #cac1ee; - --pico-color-indigo-150: #d8d0f1; - --pico-color-indigo-100: #e5e0f4; - --pico-color-indigo-50: #f2f0f9; - --pico-color-indigo: #524ed2; - --pico-color-blue-950: #080f2d; - --pico-color-blue-900: #0c1a41; - --pico-color-blue-850: #0e2358; - --pico-color-blue-800: #0f2d70; - --pico-color-blue-750: #0f3888; - --pico-color-blue-700: #1343a0; - --pico-color-blue-650: #184eb8; - --pico-color-blue-600: #1d59d0; - --pico-color-blue-550: #2060df; - --pico-color-blue-500: #3c71f7; - --pico-color-blue-450: #5c7ef8; - --pico-color-blue-400: #748bf8; - --pico-color-blue-350: #8999f9; - --pico-color-blue-300: #9ca7fa; - --pico-color-blue-250: #aeb5fb; - --pico-color-blue-200: #bfc3fa; - --pico-color-blue-150: #d0d2fa; - --pico-color-blue-100: #e0e1fa; - --pico-color-blue-50: #f0f0fb; - --pico-color-blue: #2060df; - --pico-color-azure-950: #04121d; - --pico-color-azure-900: #061e2f; - --pico-color-azure-850: #052940; - --pico-color-azure-800: #033452; - --pico-color-azure-750: #014063; - --pico-color-azure-700: #014c75; - --pico-color-azure-650: #015887; - --pico-color-azure-600: #02659a; - --pico-color-azure-550: #0172ad; - --pico-color-azure-500: #017fc0; - --pico-color-azure-450: #018cd4; - --pico-color-azure-400: #029ae8; - --pico-color-azure-350: #01aaff; - --pico-color-azure-300: #51b4ff; - --pico-color-azure-250: #79c0ff; - --pico-color-azure-200: #9bccfd; - --pico-color-azure-150: #b7d9fc; - --pico-color-azure-100: #d1e5fb; - --pico-color-azure-50: #e9f2fc; - --pico-color-azure: #0172ad; - --pico-color-cyan-950: #041413; - --pico-color-cyan-900: #051f1f; - --pico-color-cyan-850: #052b2b; - --pico-color-cyan-800: #043737; - --pico-color-cyan-750: #014343; - --pico-color-cyan-700: #015050; - --pico-color-cyan-650: #025d5d; - --pico-color-cyan-600: #046a6a; - --pico-color-cyan-550: #047878; - --pico-color-cyan-500: #058686; - --pico-color-cyan-450: #059494; - --pico-color-cyan-400: #05a2a2; - --pico-color-cyan-350: #0ab1b1; - --pico-color-cyan-300: #0ac2c2; - --pico-color-cyan-250: #0ccece; - --pico-color-cyan-200: #25dddd; - --pico-color-cyan-150: #3deceb; - --pico-color-cyan-100: #58faf9; - --pico-color-cyan-50: #c3fcfa; - --pico-color-cyan: #047878; - --pico-color-jade-950: #04140c; - --pico-color-jade-900: #052014; - --pico-color-jade-850: #042c1b; - --pico-color-jade-800: #033823; - --pico-color-jade-750: #00452b; - --pico-color-jade-700: #015234; - --pico-color-jade-650: #005f3d; - --pico-color-jade-600: #006d46; - --pico-color-jade-550: #007a50; - --pico-color-jade-500: #00895a; - --pico-color-jade-450: #029764; - --pico-color-jade-400: #00a66e; - --pico-color-jade-350: #00b478; - --pico-color-jade-300: #00c482; - --pico-color-jade-250: #00cc88; - --pico-color-jade-200: #21e299; - --pico-color-jade-150: #39f1a6; - --pico-color-jade-100: #70fcba; - --pico-color-jade-50: #cbfce1; - --pico-color-jade: #007a50; - --pico-color-green-950: #0b1305; - --pico-color-green-900: #131f07; - --pico-color-green-850: #152b07; - --pico-color-green-800: #173806; - --pico-color-green-750: #1a4405; - --pico-color-green-700: #205107; - --pico-color-green-650: #265e09; - --pico-color-green-600: #2c6c0c; - --pico-color-green-550: #33790f; - --pico-color-green-500: #398712; - --pico-color-green-450: #409614; - --pico-color-green-400: #47a417; - --pico-color-green-350: #4eb31b; - --pico-color-green-300: #55c21e; - --pico-color-green-250: #5dd121; - --pico-color-green-200: #62d926; - --pico-color-green-150: #77ef3d; - --pico-color-green-100: #95fb62; - --pico-color-green-50: #d7fbc1; - --pico-color-green: #398712; - --pico-color-lime-950: #101203; - --pico-color-lime-900: #191d03; - --pico-color-lime-850: #202902; - --pico-color-lime-800: #273500; - --pico-color-lime-750: #304100; - --pico-color-lime-700: #394d00; - --pico-color-lime-650: #435a00; - --pico-color-lime-600: #4d6600; - --pico-color-lime-550: #577400; - --pico-color-lime-500: #628100; - --pico-color-lime-450: #6c8f00; - --pico-color-lime-400: #779c00; - --pico-color-lime-350: #82ab00; - --pico-color-lime-300: #8eb901; - --pico-color-lime-250: #99c801; - --pico-color-lime-200: #a5d601; - --pico-color-lime-150: #b2e51a; - --pico-color-lime-100: #c1f335; - --pico-color-lime-50: #defc85; - --pico-color-lime: #a5d601; - --pico-color-yellow-950: #141103; - --pico-color-yellow-900: #1f1c02; - --pico-color-yellow-850: #2b2600; - --pico-color-yellow-800: #363100; - --pico-color-yellow-750: #423c00; - --pico-color-yellow-700: #4e4700; - --pico-color-yellow-650: #5b5300; - --pico-color-yellow-600: #685f00; - --pico-color-yellow-550: #756b00; - --pico-color-yellow-500: #827800; - --pico-color-yellow-450: #908501; - --pico-color-yellow-400: #9e9200; - --pico-color-yellow-350: #ad9f00; - --pico-color-yellow-300: #bbac00; - --pico-color-yellow-250: #caba01; - --pico-color-yellow-200: #d9c800; - --pico-color-yellow-150: #e8d600; - --pico-color-yellow-100: #f2df0d; - --pico-color-yellow-50: #fdf1b4; - --pico-color-yellow: #f2df0d; - --pico-color-amber-950: #161003; - --pico-color-amber-900: #231a03; - --pico-color-amber-850: #312302; - --pico-color-amber-800: #3f2d00; - --pico-color-amber-750: #4d3700; - --pico-color-amber-700: #5b4200; - --pico-color-amber-650: #694d00; - --pico-color-amber-600: #785800; - --pico-color-amber-550: #876400; - --pico-color-amber-500: #977000; - --pico-color-amber-450: #a77c00; - --pico-color-amber-400: #b78800; - --pico-color-amber-350: #c79400; - --pico-color-amber-300: #d8a100; - --pico-color-amber-250: #e8ae01; - --pico-color-amber-200: #ffbf00; - --pico-color-amber-150: #fecc63; - --pico-color-amber-100: #fddea6; - --pico-color-amber-50: #fcefd9; - --pico-color-amber: #ffbf00; - --pico-color-pumpkin-950: #180f04; - --pico-color-pumpkin-900: #271805; - --pico-color-pumpkin-850: #372004; - --pico-color-pumpkin-800: #482802; - --pico-color-pumpkin-750: #593100; - --pico-color-pumpkin-700: #693a00; - --pico-color-pumpkin-650: #7a4400; - --pico-color-pumpkin-600: #8b4f00; - --pico-color-pumpkin-550: #9c5900; - --pico-color-pumpkin-500: #ad6400; - --pico-color-pumpkin-450: #bf6e00; - --pico-color-pumpkin-400: #d27a01; - --pico-color-pumpkin-350: #e48500; - --pico-color-pumpkin-300: #ff9500; - --pico-color-pumpkin-250: #ffa23a; - --pico-color-pumpkin-200: #feb670; - --pico-color-pumpkin-150: #fcca9b; - --pico-color-pumpkin-100: #fcdcc1; - --pico-color-pumpkin-50: #fceee3; - --pico-color-pumpkin: #ff9500; - --pico-color-orange-950: #1b0d06; - --pico-color-orange-900: #2d1509; - --pico-color-orange-850: #411a0a; - --pico-color-orange-800: #561e0a; - --pico-color-orange-750: #6b220a; - --pico-color-orange-700: #7f270b; - --pico-color-orange-650: #942d0d; - --pico-color-orange-600: #a83410; - --pico-color-orange-550: #bd3c13; - --pico-color-orange-500: #d24317; - --pico-color-orange-450: #e74b1a; - --pico-color-orange-400: #f45d2c; - --pico-color-orange-350: #f56b3d; - --pico-color-orange-300: #f68e68; - --pico-color-orange-250: #f8a283; - --pico-color-orange-200: #f8b79f; - --pico-color-orange-150: #f8cab9; - --pico-color-orange-100: #f9dcd2; - --pico-color-orange-50: #faeeea; - --pico-color-orange: #d24317; - --pico-color-sand-950: #111110; - --pico-color-sand-900: #1c1b19; - --pico-color-sand-850: #272622; - --pico-color-sand-800: #32302b; - --pico-color-sand-750: #3d3b35; - --pico-color-sand-700: #49463f; - --pico-color-sand-650: #55524a; - --pico-color-sand-600: #615e55; - --pico-color-sand-550: #6e6a60; - --pico-color-sand-500: #7b776b; - --pico-color-sand-450: #888377; - --pico-color-sand-400: #959082; - --pico-color-sand-350: #a39e8f; - --pico-color-sand-300: #b0ab9b; - --pico-color-sand-250: #beb8a7; - --pico-color-sand-200: #ccc6b4; - --pico-color-sand-150: #dad4c2; - --pico-color-sand-100: #e8e2d2; - --pico-color-sand-50: #f2f0ec; - --pico-color-sand: #ccc6b4; - --pico-color-grey-950: #111111; - --pico-color-grey-900: #1b1b1b; - --pico-color-grey-850: #262626; - --pico-color-grey-800: #303030; - --pico-color-grey-750: #3b3b3b; - --pico-color-grey-700: #474747; - --pico-color-grey-650: #525252; - --pico-color-grey-600: #5e5e5e; - --pico-color-grey-550: #6a6a6a; - --pico-color-grey-500: #777777; - --pico-color-grey-450: #808080; - --pico-color-grey-400: #919191; - --pico-color-grey-350: #9e9e9e; - --pico-color-grey-300: #ababab; - --pico-color-grey-250: #b9b9b9; - --pico-color-grey-200: #c6c6c6; - --pico-color-grey-150: #d4d4d4; - --pico-color-grey-100: #e2e2e2; - --pico-color-grey-50: #f1f1f1; - --pico-color-grey: #ababab; - --pico-color-zinc-950: #0f1114; - --pico-color-zinc-900: #191c20; - --pico-color-zinc-850: #23262c; - --pico-color-zinc-800: #2d3138; - --pico-color-zinc-750: #373c44; - --pico-color-zinc-700: #424751; - --pico-color-zinc-650: #4d535e; - --pico-color-zinc-600: #5c6370; - --pico-color-zinc-550: #646b79; - --pico-color-zinc-500: #6f7887; - --pico-color-zinc-450: #7b8495; - --pico-color-zinc-400: #8891a4; - --pico-color-zinc-350: #969eaf; - --pico-color-zinc-300: #a4acba; - --pico-color-zinc-250: #b3b9c5; - --pico-color-zinc-200: #c2c7d0; - --pico-color-zinc-150: #d1d5db; - --pico-color-zinc-100: #e0e3e7; - --pico-color-zinc-50: #f0f1f3; - --pico-color-zinc: #646b79; - --pico-color-slate-950: #0e1118; - --pico-color-slate-900: #181c25; - --pico-color-slate-850: #202632; - --pico-color-slate-800: #2a3140; - --pico-color-slate-750: #333c4e; - --pico-color-slate-700: #3d475c; - --pico-color-slate-650: #48536b; - --pico-color-slate-600: #525f7a; - --pico-color-slate-550: #5d6b89; - --pico-color-slate-500: #687899; - --pico-color-slate-450: #7385a9; - --pico-color-slate-400: #8191b5; - --pico-color-slate-350: #909ebe; - --pico-color-slate-300: #a0acc7; - --pico-color-slate-250: #b0b9d0; - --pico-color-slate-200: #bfc7d9; - --pico-color-slate-150: #cfd5e2; - --pico-color-slate-100: #dfe3eb; - --pico-color-slate-50: #eff1f4; - --pico-color-slate: #525f7a; - --pico-color-light: #fff; - --pico-color-dark: #000; -} - -.pico-color-red-950 { - color: var(--pico-color-red-950); -} - -.pico-color-red-900 { - color: var(--pico-color-red-900); -} - -.pico-color-red-850 { - color: var(--pico-color-red-850); -} - -.pico-color-red-800 { - color: var(--pico-color-red-800); -} - -.pico-color-red-750 { - color: var(--pico-color-red-750); -} - -.pico-color-red-700 { - color: var(--pico-color-red-700); -} - -.pico-color-red-650 { - color: var(--pico-color-red-650); -} - -.pico-color-red-600 { - color: var(--pico-color-red-600); -} - -.pico-color-red-550 { - color: var(--pico-color-red-550); -} - -.pico-color-red-500 { - color: var(--pico-color-red-500); -} - -.pico-color-red-450 { - color: var(--pico-color-red-450); -} - -.pico-color-red-400 { - color: var(--pico-color-red-400); -} - -.pico-color-red-350 { - color: var(--pico-color-red-350); -} - -.pico-color-red-300 { - color: var(--pico-color-red-300); -} - -.pico-color-red-250 { - color: var(--pico-color-red-250); -} - -.pico-color-red-200 { - color: var(--pico-color-red-200); -} - -.pico-color-red-150 { - color: var(--pico-color-red-150); -} - -.pico-color-red-100 { - color: var(--pico-color-red-100); -} - -.pico-color-red-50 { - color: var(--pico-color-red-50); -} - -.pico-color-red { - color: var(--pico-color-red); -} - -.pico-color-pink-950 { - color: var(--pico-color-pink-950); -} - -.pico-color-pink-900 { - color: var(--pico-color-pink-900); -} - -.pico-color-pink-850 { - color: var(--pico-color-pink-850); -} - -.pico-color-pink-800 { - color: var(--pico-color-pink-800); -} - -.pico-color-pink-750 { - color: var(--pico-color-pink-750); -} - -.pico-color-pink-700 { - color: var(--pico-color-pink-700); -} - -.pico-color-pink-650 { - color: var(--pico-color-pink-650); -} - -.pico-color-pink-600 { - color: var(--pico-color-pink-600); -} - -.pico-color-pink-550 { - color: var(--pico-color-pink-550); -} - -.pico-color-pink-500 { - color: var(--pico-color-pink-500); -} - -.pico-color-pink-450 { - color: var(--pico-color-pink-450); -} - -.pico-color-pink-400 { - color: var(--pico-color-pink-400); -} - -.pico-color-pink-350 { - color: var(--pico-color-pink-350); -} - -.pico-color-pink-300 { - color: var(--pico-color-pink-300); -} - -.pico-color-pink-250 { - color: var(--pico-color-pink-250); -} - -.pico-color-pink-200 { - color: var(--pico-color-pink-200); -} - -.pico-color-pink-150 { - color: var(--pico-color-pink-150); -} - -.pico-color-pink-100 { - color: var(--pico-color-pink-100); -} - -.pico-color-pink-50 { - color: var(--pico-color-pink-50); -} - -.pico-color-pink { - color: var(--pico-color-pink); -} - -.pico-color-fuchsia-950 { - color: var(--pico-color-fuchsia-950); -} - -.pico-color-fuchsia-900 { - color: var(--pico-color-fuchsia-900); -} - -.pico-color-fuchsia-850 { - color: var(--pico-color-fuchsia-850); -} - -.pico-color-fuchsia-800 { - color: var(--pico-color-fuchsia-800); -} - -.pico-color-fuchsia-750 { - color: var(--pico-color-fuchsia-750); -} - -.pico-color-fuchsia-700 { - color: var(--pico-color-fuchsia-700); -} - -.pico-color-fuchsia-650 { - color: var(--pico-color-fuchsia-650); -} - -.pico-color-fuchsia-600 { - color: var(--pico-color-fuchsia-600); -} - -.pico-color-fuchsia-550 { - color: var(--pico-color-fuchsia-550); -} - -.pico-color-fuchsia-500 { - color: var(--pico-color-fuchsia-500); -} - -.pico-color-fuchsia-450 { - color: var(--pico-color-fuchsia-450); -} - -.pico-color-fuchsia-400 { - color: var(--pico-color-fuchsia-400); -} - -.pico-color-fuchsia-350 { - color: var(--pico-color-fuchsia-350); -} - -.pico-color-fuchsia-300 { - color: var(--pico-color-fuchsia-300); -} - -.pico-color-fuchsia-250 { - color: var(--pico-color-fuchsia-250); -} - -.pico-color-fuchsia-200 { - color: var(--pico-color-fuchsia-200); -} - -.pico-color-fuchsia-150 { - color: var(--pico-color-fuchsia-150); -} - -.pico-color-fuchsia-100 { - color: var(--pico-color-fuchsia-100); -} - -.pico-color-fuchsia-50 { - color: var(--pico-color-fuchsia-50); -} - -.pico-color-fuchsia { - color: var(--pico-color-fuchsia); -} - -.pico-color-purple-950 { - color: var(--pico-color-purple-950); -} - -.pico-color-purple-900 { - color: var(--pico-color-purple-900); -} - -.pico-color-purple-850 { - color: var(--pico-color-purple-850); -} - -.pico-color-purple-800 { - color: var(--pico-color-purple-800); -} - -.pico-color-purple-750 { - color: var(--pico-color-purple-750); -} - -.pico-color-purple-700 { - color: var(--pico-color-purple-700); -} - -.pico-color-purple-650 { - color: var(--pico-color-purple-650); -} - -.pico-color-purple-600 { - color: var(--pico-color-purple-600); -} - -.pico-color-purple-550 { - color: var(--pico-color-purple-550); -} - -.pico-color-purple-500 { - color: var(--pico-color-purple-500); -} - -.pico-color-purple-450 { - color: var(--pico-color-purple-450); -} - -.pico-color-purple-400 { - color: var(--pico-color-purple-400); -} - -.pico-color-purple-350 { - color: var(--pico-color-purple-350); -} - -.pico-color-purple-300 { - color: var(--pico-color-purple-300); -} - -.pico-color-purple-250 { - color: var(--pico-color-purple-250); -} - -.pico-color-purple-200 { - color: var(--pico-color-purple-200); -} - -.pico-color-purple-150 { - color: var(--pico-color-purple-150); -} - -.pico-color-purple-100 { - color: var(--pico-color-purple-100); -} - -.pico-color-purple-50 { - color: var(--pico-color-purple-50); -} - -.pico-color-purple { - color: var(--pico-color-purple); -} - -.pico-color-violet-950 { - color: var(--pico-color-violet-950); -} - -.pico-color-violet-900 { - color: var(--pico-color-violet-900); -} - -.pico-color-violet-850 { - color: var(--pico-color-violet-850); -} - -.pico-color-violet-800 { - color: var(--pico-color-violet-800); -} - -.pico-color-violet-750 { - color: var(--pico-color-violet-750); -} - -.pico-color-violet-700 { - color: var(--pico-color-violet-700); -} - -.pico-color-violet-650 { - color: var(--pico-color-violet-650); -} - -.pico-color-violet-600 { - color: var(--pico-color-violet-600); -} - -.pico-color-violet-550 { - color: var(--pico-color-violet-550); -} - -.pico-color-violet-500 { - color: var(--pico-color-violet-500); -} - -.pico-color-violet-450 { - color: var(--pico-color-violet-450); -} - -.pico-color-violet-400 { - color: var(--pico-color-violet-400); -} - -.pico-color-violet-350 { - color: var(--pico-color-violet-350); -} - -.pico-color-violet-300 { - color: var(--pico-color-violet-300); -} - -.pico-color-violet-250 { - color: var(--pico-color-violet-250); -} - -.pico-color-violet-200 { - color: var(--pico-color-violet-200); -} - -.pico-color-violet-150 { - color: var(--pico-color-violet-150); -} - -.pico-color-violet-100 { - color: var(--pico-color-violet-100); -} - -.pico-color-violet-50 { - color: var(--pico-color-violet-50); -} - -.pico-color-violet { - color: var(--pico-color-violet); -} - -.pico-color-indigo-950 { - color: var(--pico-color-indigo-950); -} - -.pico-color-indigo-900 { - color: var(--pico-color-indigo-900); -} - -.pico-color-indigo-850 { - color: var(--pico-color-indigo-850); -} - -.pico-color-indigo-800 { - color: var(--pico-color-indigo-800); -} - -.pico-color-indigo-750 { - color: var(--pico-color-indigo-750); -} - -.pico-color-indigo-700 { - color: var(--pico-color-indigo-700); -} - -.pico-color-indigo-650 { - color: var(--pico-color-indigo-650); -} - -.pico-color-indigo-600 { - color: var(--pico-color-indigo-600); -} - -.pico-color-indigo-550 { - color: var(--pico-color-indigo-550); -} - -.pico-color-indigo-500 { - color: var(--pico-color-indigo-500); -} - -.pico-color-indigo-450 { - color: var(--pico-color-indigo-450); -} - -.pico-color-indigo-400 { - color: var(--pico-color-indigo-400); -} - -.pico-color-indigo-350 { - color: var(--pico-color-indigo-350); -} - -.pico-color-indigo-300 { - color: var(--pico-color-indigo-300); -} - -.pico-color-indigo-250 { - color: var(--pico-color-indigo-250); -} - -.pico-color-indigo-200 { - color: var(--pico-color-indigo-200); -} - -.pico-color-indigo-150 { - color: var(--pico-color-indigo-150); -} - -.pico-color-indigo-100 { - color: var(--pico-color-indigo-100); -} - -.pico-color-indigo-50 { - color: var(--pico-color-indigo-50); -} - -.pico-color-indigo { - color: var(--pico-color-indigo); -} - -.pico-color-blue-950 { - color: var(--pico-color-blue-950); -} - -.pico-color-blue-900 { - color: var(--pico-color-blue-900); -} - -.pico-color-blue-850 { - color: var(--pico-color-blue-850); -} - -.pico-color-blue-800 { - color: var(--pico-color-blue-800); -} - -.pico-color-blue-750 { - color: var(--pico-color-blue-750); -} - -.pico-color-blue-700 { - color: var(--pico-color-blue-700); -} - -.pico-color-blue-650 { - color: var(--pico-color-blue-650); -} - -.pico-color-blue-600 { - color: var(--pico-color-blue-600); -} - -.pico-color-blue-550 { - color: var(--pico-color-blue-550); -} - -.pico-color-blue-500 { - color: var(--pico-color-blue-500); -} - -.pico-color-blue-450 { - color: var(--pico-color-blue-450); -} - -.pico-color-blue-400 { - color: var(--pico-color-blue-400); -} - -.pico-color-blue-350 { - color: var(--pico-color-blue-350); -} - -.pico-color-blue-300 { - color: var(--pico-color-blue-300); -} - -.pico-color-blue-250 { - color: var(--pico-color-blue-250); -} - -.pico-color-blue-200 { - color: var(--pico-color-blue-200); -} - -.pico-color-blue-150 { - color: var(--pico-color-blue-150); -} - -.pico-color-blue-100 { - color: var(--pico-color-blue-100); -} - -.pico-color-blue-50 { - color: var(--pico-color-blue-50); -} - -.pico-color-blue { - color: var(--pico-color-blue); -} - -.pico-color-azure-950 { - color: var(--pico-color-azure-950); -} - -.pico-color-azure-900 { - color: var(--pico-color-azure-900); -} - -.pico-color-azure-850 { - color: var(--pico-color-azure-850); -} - -.pico-color-azure-800 { - color: var(--pico-color-azure-800); -} - -.pico-color-azure-750 { - color: var(--pico-color-azure-750); -} - -.pico-color-azure-700 { - color: var(--pico-color-azure-700); -} - -.pico-color-azure-650 { - color: var(--pico-color-azure-650); -} - -.pico-color-azure-600 { - color: var(--pico-color-azure-600); -} - -.pico-color-azure-550 { - color: var(--pico-color-azure-550); -} - -.pico-color-azure-500 { - color: var(--pico-color-azure-500); -} - -.pico-color-azure-450 { - color: var(--pico-color-azure-450); -} - -.pico-color-azure-400 { - color: var(--pico-color-azure-400); -} - -.pico-color-azure-350 { - color: var(--pico-color-azure-350); -} - -.pico-color-azure-300 { - color: var(--pico-color-azure-300); -} - -.pico-color-azure-250 { - color: var(--pico-color-azure-250); -} - -.pico-color-azure-200 { - color: var(--pico-color-azure-200); -} - -.pico-color-azure-150 { - color: var(--pico-color-azure-150); -} - -.pico-color-azure-100 { - color: var(--pico-color-azure-100); -} - -.pico-color-azure-50 { - color: var(--pico-color-azure-50); -} - -.pico-color-azure { - color: var(--pico-color-azure); -} - -.pico-color-cyan-950 { - color: var(--pico-color-cyan-950); -} - -.pico-color-cyan-900 { - color: var(--pico-color-cyan-900); -} - -.pico-color-cyan-850 { - color: var(--pico-color-cyan-850); -} - -.pico-color-cyan-800 { - color: var(--pico-color-cyan-800); -} - -.pico-color-cyan-750 { - color: var(--pico-color-cyan-750); -} - -.pico-color-cyan-700 { - color: var(--pico-color-cyan-700); -} - -.pico-color-cyan-650 { - color: var(--pico-color-cyan-650); -} - -.pico-color-cyan-600 { - color: var(--pico-color-cyan-600); -} - -.pico-color-cyan-550 { - color: var(--pico-color-cyan-550); -} - -.pico-color-cyan-500 { - color: var(--pico-color-cyan-500); -} - -.pico-color-cyan-450 { - color: var(--pico-color-cyan-450); -} - -.pico-color-cyan-400 { - color: var(--pico-color-cyan-400); -} - -.pico-color-cyan-350 { - color: var(--pico-color-cyan-350); -} - -.pico-color-cyan-300 { - color: var(--pico-color-cyan-300); -} - -.pico-color-cyan-250 { - color: var(--pico-color-cyan-250); -} - -.pico-color-cyan-200 { - color: var(--pico-color-cyan-200); -} - -.pico-color-cyan-150 { - color: var(--pico-color-cyan-150); -} - -.pico-color-cyan-100 { - color: var(--pico-color-cyan-100); -} - -.pico-color-cyan-50 { - color: var(--pico-color-cyan-50); -} - -.pico-color-cyan { - color: var(--pico-color-cyan); -} - -.pico-color-jade-950 { - color: var(--pico-color-jade-950); -} - -.pico-color-jade-900 { - color: var(--pico-color-jade-900); -} - -.pico-color-jade-850 { - color: var(--pico-color-jade-850); -} - -.pico-color-jade-800 { - color: var(--pico-color-jade-800); -} - -.pico-color-jade-750 { - color: var(--pico-color-jade-750); -} - -.pico-color-jade-700 { - color: var(--pico-color-jade-700); -} - -.pico-color-jade-650 { - color: var(--pico-color-jade-650); -} - -.pico-color-jade-600 { - color: var(--pico-color-jade-600); -} - -.pico-color-jade-550 { - color: var(--pico-color-jade-550); -} - -.pico-color-jade-500 { - color: var(--pico-color-jade-500); -} - -.pico-color-jade-450 { - color: var(--pico-color-jade-450); -} - -.pico-color-jade-400 { - color: var(--pico-color-jade-400); -} - -.pico-color-jade-350 { - color: var(--pico-color-jade-350); -} - -.pico-color-jade-300 { - color: var(--pico-color-jade-300); -} - -.pico-color-jade-250 { - color: var(--pico-color-jade-250); -} - -.pico-color-jade-200 { - color: var(--pico-color-jade-200); -} - -.pico-color-jade-150 { - color: var(--pico-color-jade-150); -} - -.pico-color-jade-100 { - color: var(--pico-color-jade-100); -} - -.pico-color-jade-50 { - color: var(--pico-color-jade-50); -} - -.pico-color-jade { - color: var(--pico-color-jade); -} - -.pico-color-green-950 { - color: var(--pico-color-green-950); -} - -.pico-color-green-900 { - color: var(--pico-color-green-900); -} - -.pico-color-green-850 { - color: var(--pico-color-green-850); -} - -.pico-color-green-800 { - color: var(--pico-color-green-800); -} - -.pico-color-green-750 { - color: var(--pico-color-green-750); -} - -.pico-color-green-700 { - color: var(--pico-color-green-700); -} - -.pico-color-green-650 { - color: var(--pico-color-green-650); -} - -.pico-color-green-600 { - color: var(--pico-color-green-600); -} - -.pico-color-green-550 { - color: var(--pico-color-green-550); -} - -.pico-color-green-500 { - color: var(--pico-color-green-500); -} - -.pico-color-green-450 { - color: var(--pico-color-green-450); -} - -.pico-color-green-400 { - color: var(--pico-color-green-400); -} - -.pico-color-green-350 { - color: var(--pico-color-green-350); -} - -.pico-color-green-300 { - color: var(--pico-color-green-300); -} - -.pico-color-green-250 { - color: var(--pico-color-green-250); -} - -.pico-color-green-200 { - color: var(--pico-color-green-200); -} - -.pico-color-green-150 { - color: var(--pico-color-green-150); -} - -.pico-color-green-100 { - color: var(--pico-color-green-100); -} - -.pico-color-green-50 { - color: var(--pico-color-green-50); -} - -.pico-color-green { - color: var(--pico-color-green); -} - -.pico-color-lime-950 { - color: var(--pico-color-lime-950); -} - -.pico-color-lime-900 { - color: var(--pico-color-lime-900); -} - -.pico-color-lime-850 { - color: var(--pico-color-lime-850); -} - -.pico-color-lime-800 { - color: var(--pico-color-lime-800); -} - -.pico-color-lime-750 { - color: var(--pico-color-lime-750); -} - -.pico-color-lime-700 { - color: var(--pico-color-lime-700); -} - -.pico-color-lime-650 { - color: var(--pico-color-lime-650); -} - -.pico-color-lime-600 { - color: var(--pico-color-lime-600); -} - -.pico-color-lime-550 { - color: var(--pico-color-lime-550); -} - -.pico-color-lime-500 { - color: var(--pico-color-lime-500); -} - -.pico-color-lime-450 { - color: var(--pico-color-lime-450); -} - -.pico-color-lime-400 { - color: var(--pico-color-lime-400); -} - -.pico-color-lime-350 { - color: var(--pico-color-lime-350); -} - -.pico-color-lime-300 { - color: var(--pico-color-lime-300); -} - -.pico-color-lime-250 { - color: var(--pico-color-lime-250); -} - -.pico-color-lime-200 { - color: var(--pico-color-lime-200); -} - -.pico-color-lime-150 { - color: var(--pico-color-lime-150); -} - -.pico-color-lime-100 { - color: var(--pico-color-lime-100); -} - -.pico-color-lime-50 { - color: var(--pico-color-lime-50); -} - -.pico-color-lime { - color: var(--pico-color-lime); -} - -.pico-color-yellow-950 { - color: var(--pico-color-yellow-950); -} - -.pico-color-yellow-900 { - color: var(--pico-color-yellow-900); -} - -.pico-color-yellow-850 { - color: var(--pico-color-yellow-850); -} - -.pico-color-yellow-800 { - color: var(--pico-color-yellow-800); -} - -.pico-color-yellow-750 { - color: var(--pico-color-yellow-750); -} - -.pico-color-yellow-700 { - color: var(--pico-color-yellow-700); -} - -.pico-color-yellow-650 { - color: var(--pico-color-yellow-650); -} - -.pico-color-yellow-600 { - color: var(--pico-color-yellow-600); -} - -.pico-color-yellow-550 { - color: var(--pico-color-yellow-550); -} - -.pico-color-yellow-500 { - color: var(--pico-color-yellow-500); -} - -.pico-color-yellow-450 { - color: var(--pico-color-yellow-450); -} - -.pico-color-yellow-400 { - color: var(--pico-color-yellow-400); -} - -.pico-color-yellow-350 { - color: var(--pico-color-yellow-350); -} - -.pico-color-yellow-300 { - color: var(--pico-color-yellow-300); -} - -.pico-color-yellow-250 { - color: var(--pico-color-yellow-250); -} - -.pico-color-yellow-200 { - color: var(--pico-color-yellow-200); -} - -.pico-color-yellow-150 { - color: var(--pico-color-yellow-150); -} - -.pico-color-yellow-100 { - color: var(--pico-color-yellow-100); -} - -.pico-color-yellow-50 { - color: var(--pico-color-yellow-50); -} - -.pico-color-yellow { - color: var(--pico-color-yellow); -} - -.pico-color-amber-950 { - color: var(--pico-color-amber-950); -} - -.pico-color-amber-900 { - color: var(--pico-color-amber-900); -} - -.pico-color-amber-850 { - color: var(--pico-color-amber-850); -} - -.pico-color-amber-800 { - color: var(--pico-color-amber-800); -} - -.pico-color-amber-750 { - color: var(--pico-color-amber-750); -} - -.pico-color-amber-700 { - color: var(--pico-color-amber-700); -} - -.pico-color-amber-650 { - color: var(--pico-color-amber-650); -} - -.pico-color-amber-600 { - color: var(--pico-color-amber-600); -} - -.pico-color-amber-550 { - color: var(--pico-color-amber-550); -} - -.pico-color-amber-500 { - color: var(--pico-color-amber-500); -} - -.pico-color-amber-450 { - color: var(--pico-color-amber-450); -} - -.pico-color-amber-400 { - color: var(--pico-color-amber-400); -} - -.pico-color-amber-350 { - color: var(--pico-color-amber-350); -} - -.pico-color-amber-300 { - color: var(--pico-color-amber-300); -} - -.pico-color-amber-250 { - color: var(--pico-color-amber-250); -} - -.pico-color-amber-200 { - color: var(--pico-color-amber-200); -} - -.pico-color-amber-150 { - color: var(--pico-color-amber-150); -} - -.pico-color-amber-100 { - color: var(--pico-color-amber-100); -} - -.pico-color-amber-50 { - color: var(--pico-color-amber-50); -} - -.pico-color-amber { - color: var(--pico-color-amber); -} - -.pico-color-pumpkin-950 { - color: var(--pico-color-pumpkin-950); -} - -.pico-color-pumpkin-900 { - color: var(--pico-color-pumpkin-900); -} - -.pico-color-pumpkin-850 { - color: var(--pico-color-pumpkin-850); -} - -.pico-color-pumpkin-800 { - color: var(--pico-color-pumpkin-800); -} - -.pico-color-pumpkin-750 { - color: var(--pico-color-pumpkin-750); -} - -.pico-color-pumpkin-700 { - color: var(--pico-color-pumpkin-700); -} - -.pico-color-pumpkin-650 { - color: var(--pico-color-pumpkin-650); -} - -.pico-color-pumpkin-600 { - color: var(--pico-color-pumpkin-600); -} - -.pico-color-pumpkin-550 { - color: var(--pico-color-pumpkin-550); -} - -.pico-color-pumpkin-500 { - color: var(--pico-color-pumpkin-500); -} - -.pico-color-pumpkin-450 { - color: var(--pico-color-pumpkin-450); -} - -.pico-color-pumpkin-400 { - color: var(--pico-color-pumpkin-400); -} - -.pico-color-pumpkin-350 { - color: var(--pico-color-pumpkin-350); -} - -.pico-color-pumpkin-300 { - color: var(--pico-color-pumpkin-300); -} - -.pico-color-pumpkin-250 { - color: var(--pico-color-pumpkin-250); -} - -.pico-color-pumpkin-200 { - color: var(--pico-color-pumpkin-200); -} - -.pico-color-pumpkin-150 { - color: var(--pico-color-pumpkin-150); -} - -.pico-color-pumpkin-100 { - color: var(--pico-color-pumpkin-100); -} - -.pico-color-pumpkin-50 { - color: var(--pico-color-pumpkin-50); -} - -.pico-color-pumpkin { - color: var(--pico-color-pumpkin); -} - -.pico-color-orange-950 { - color: var(--pico-color-orange-950); -} - -.pico-color-orange-900 { - color: var(--pico-color-orange-900); -} - -.pico-color-orange-850 { - color: var(--pico-color-orange-850); -} - -.pico-color-orange-800 { - color: var(--pico-color-orange-800); -} - -.pico-color-orange-750 { - color: var(--pico-color-orange-750); -} - -.pico-color-orange-700 { - color: var(--pico-color-orange-700); -} - -.pico-color-orange-650 { - color: var(--pico-color-orange-650); -} - -.pico-color-orange-600 { - color: var(--pico-color-orange-600); -} - -.pico-color-orange-550 { - color: var(--pico-color-orange-550); -} - -.pico-color-orange-500 { - color: var(--pico-color-orange-500); -} - -.pico-color-orange-450 { - color: var(--pico-color-orange-450); -} - -.pico-color-orange-400 { - color: var(--pico-color-orange-400); -} - -.pico-color-orange-350 { - color: var(--pico-color-orange-350); -} - -.pico-color-orange-300 { - color: var(--pico-color-orange-300); -} - -.pico-color-orange-250 { - color: var(--pico-color-orange-250); -} - -.pico-color-orange-200 { - color: var(--pico-color-orange-200); -} - -.pico-color-orange-150 { - color: var(--pico-color-orange-150); -} - -.pico-color-orange-100 { - color: var(--pico-color-orange-100); -} - -.pico-color-orange-50 { - color: var(--pico-color-orange-50); -} - -.pico-color-orange { - color: var(--pico-color-orange); -} - -.pico-color-sand-950 { - color: var(--pico-color-sand-950); -} - -.pico-color-sand-900 { - color: var(--pico-color-sand-900); -} - -.pico-color-sand-850 { - color: var(--pico-color-sand-850); -} - -.pico-color-sand-800 { - color: var(--pico-color-sand-800); -} - -.pico-color-sand-750 { - color: var(--pico-color-sand-750); -} - -.pico-color-sand-700 { - color: var(--pico-color-sand-700); -} - -.pico-color-sand-650 { - color: var(--pico-color-sand-650); -} - -.pico-color-sand-600 { - color: var(--pico-color-sand-600); -} - -.pico-color-sand-550 { - color: var(--pico-color-sand-550); -} - -.pico-color-sand-500 { - color: var(--pico-color-sand-500); -} - -.pico-color-sand-450 { - color: var(--pico-color-sand-450); -} - -.pico-color-sand-400 { - color: var(--pico-color-sand-400); -} - -.pico-color-sand-350 { - color: var(--pico-color-sand-350); -} - -.pico-color-sand-300 { - color: var(--pico-color-sand-300); -} - -.pico-color-sand-250 { - color: var(--pico-color-sand-250); -} - -.pico-color-sand-200 { - color: var(--pico-color-sand-200); -} - -.pico-color-sand-150 { - color: var(--pico-color-sand-150); -} - -.pico-color-sand-100 { - color: var(--pico-color-sand-100); -} - -.pico-color-sand-50 { - color: var(--pico-color-sand-50); -} - -.pico-color-sand { - color: var(--pico-color-sand); -} - -.pico-color-grey-950 { - color: var(--pico-color-grey-950); -} - -.pico-color-grey-900 { - color: var(--pico-color-grey-900); -} - -.pico-color-grey-850 { - color: var(--pico-color-grey-850); -} - -.pico-color-grey-800 { - color: var(--pico-color-grey-800); -} - -.pico-color-grey-750 { - color: var(--pico-color-grey-750); -} - -.pico-color-grey-700 { - color: var(--pico-color-grey-700); -} - -.pico-color-grey-650 { - color: var(--pico-color-grey-650); -} - -.pico-color-grey-600 { - color: var(--pico-color-grey-600); -} - -.pico-color-grey-550 { - color: var(--pico-color-grey-550); -} - -.pico-color-grey-500 { - color: var(--pico-color-grey-500); -} - -.pico-color-grey-450 { - color: var(--pico-color-grey-450); -} - -.pico-color-grey-400 { - color: var(--pico-color-grey-400); -} - -.pico-color-grey-350 { - color: var(--pico-color-grey-350); -} - -.pico-color-grey-300 { - color: var(--pico-color-grey-300); -} - -.pico-color-grey-250 { - color: var(--pico-color-grey-250); -} - -.pico-color-grey-200 { - color: var(--pico-color-grey-200); -} - -.pico-color-grey-150 { - color: var(--pico-color-grey-150); -} - -.pico-color-grey-100 { - color: var(--pico-color-grey-100); -} - -.pico-color-grey-50 { - color: var(--pico-color-grey-50); -} - -.pico-color-grey { - color: var(--pico-color-grey); -} - -.pico-color-zinc-950 { - color: var(--pico-color-zinc-950); -} - -.pico-color-zinc-900 { - color: var(--pico-color-zinc-900); -} - -.pico-color-zinc-850 { - color: var(--pico-color-zinc-850); -} - -.pico-color-zinc-800 { - color: var(--pico-color-zinc-800); -} - -.pico-color-zinc-750 { - color: var(--pico-color-zinc-750); -} - -.pico-color-zinc-700 { - color: var(--pico-color-zinc-700); -} - -.pico-color-zinc-650 { - color: var(--pico-color-zinc-650); -} - -.pico-color-zinc-600 { - color: var(--pico-color-zinc-600); -} - -.pico-color-zinc-550 { - color: var(--pico-color-zinc-550); -} - -.pico-color-zinc-500 { - color: var(--pico-color-zinc-500); -} - -.pico-color-zinc-450 { - color: var(--pico-color-zinc-450); -} - -.pico-color-zinc-400 { - color: var(--pico-color-zinc-400); -} - -.pico-color-zinc-350 { - color: var(--pico-color-zinc-350); -} - -.pico-color-zinc-300 { - color: var(--pico-color-zinc-300); -} - -.pico-color-zinc-250 { - color: var(--pico-color-zinc-250); -} - -.pico-color-zinc-200 { - color: var(--pico-color-zinc-200); -} - -.pico-color-zinc-150 { - color: var(--pico-color-zinc-150); -} - -.pico-color-zinc-100 { - color: var(--pico-color-zinc-100); -} - -.pico-color-zinc-50 { - color: var(--pico-color-zinc-50); -} - -.pico-color-zinc { - color: var(--pico-color-zinc); -} - -.pico-color-slate-950 { - color: var(--pico-color-slate-950); -} - -.pico-color-slate-900 { - color: var(--pico-color-slate-900); -} - -.pico-color-slate-850 { - color: var(--pico-color-slate-850); -} - -.pico-color-slate-800 { - color: var(--pico-color-slate-800); -} - -.pico-color-slate-750 { - color: var(--pico-color-slate-750); -} - -.pico-color-slate-700 { - color: var(--pico-color-slate-700); -} - -.pico-color-slate-650 { - color: var(--pico-color-slate-650); -} - -.pico-color-slate-600 { - color: var(--pico-color-slate-600); -} - -.pico-color-slate-550 { - color: var(--pico-color-slate-550); -} - -.pico-color-slate-500 { - color: var(--pico-color-slate-500); -} - -.pico-color-slate-450 { - color: var(--pico-color-slate-450); -} - -.pico-color-slate-400 { - color: var(--pico-color-slate-400); -} - -.pico-color-slate-350 { - color: var(--pico-color-slate-350); -} - -.pico-color-slate-300 { - color: var(--pico-color-slate-300); -} - -.pico-color-slate-250 { - color: var(--pico-color-slate-250); -} - -.pico-color-slate-200 { - color: var(--pico-color-slate-200); -} - -.pico-color-slate-150 { - color: var(--pico-color-slate-150); -} - -.pico-color-slate-100 { - color: var(--pico-color-slate-100); -} - -.pico-color-slate-50 { - color: var(--pico-color-slate-50); -} - -.pico-color-slate { - color: var(--pico-color-slate); -} - -.pico-background-red-950 { - background-color: var(--pico-color-red-950); - color: var(--pico-color-light); -} - -.pico-background-red-900 { - background-color: var(--pico-color-red-900); - color: var(--pico-color-light); -} - -.pico-background-red-850 { - background-color: var(--pico-color-red-850); - color: var(--pico-color-light); -} - -.pico-background-red-800 { - background-color: var(--pico-color-red-800); - color: var(--pico-color-light); -} - -.pico-background-red-750 { - background-color: var(--pico-color-red-750); - color: var(--pico-color-light); -} - -.pico-background-red-700 { - background-color: var(--pico-color-red-700); - color: var(--pico-color-light); -} - -.pico-background-red-650 { - background-color: var(--pico-color-red-650); - color: var(--pico-color-light); -} - -.pico-background-red-600 { - background-color: var(--pico-color-red-600); - color: var(--pico-color-light); -} - -.pico-background-red-550 { - background-color: var(--pico-color-red-550); - color: var(--pico-color-light); -} - -.pico-background-red-500 { - background-color: var(--pico-color-red-500); - color: var(--pico-color-light); -} - -.pico-background-red-450 { - background-color: var(--pico-color-red-450); - color: var(--pico-color-light); -} - -.pico-background-red-400 { - background-color: var(--pico-color-red-400); - color: var(--pico-color-dark); -} - -.pico-background-red-350 { - background-color: var(--pico-color-red-350); - color: var(--pico-color-dark); -} - -.pico-background-red-300 { - background-color: var(--pico-color-red-300); - color: var(--pico-color-dark); -} - -.pico-background-red-250 { - background-color: var(--pico-color-red-250); - color: var(--pico-color-dark); -} - -.pico-background-red-200 { - background-color: var(--pico-color-red-200); - color: var(--pico-color-dark); -} - -.pico-background-red-150 { - background-color: var(--pico-color-red-150); - color: var(--pico-color-dark); -} - -.pico-background-red-100 { - background-color: var(--pico-color-red-100); - color: var(--pico-color-dark); -} - -.pico-background-red-50 { - background-color: var(--pico-color-red-50); - color: var(--pico-color-dark); -} - -.pico-background-red { - background-color: var(--pico-color-red); - color: var(--pico-color-light); -} - -.pico-background-pink-950 { - background-color: var(--pico-color-pink-950); - color: var(--pico-color-light); -} - -.pico-background-pink-900 { - background-color: var(--pico-color-pink-900); - color: var(--pico-color-light); -} - -.pico-background-pink-850 { - background-color: var(--pico-color-pink-850); - color: var(--pico-color-light); -} - -.pico-background-pink-800 { - background-color: var(--pico-color-pink-800); - color: var(--pico-color-light); -} - -.pico-background-pink-750 { - background-color: var(--pico-color-pink-750); - color: var(--pico-color-light); -} - -.pico-background-pink-700 { - background-color: var(--pico-color-pink-700); - color: var(--pico-color-light); -} - -.pico-background-pink-650 { - background-color: var(--pico-color-pink-650); - color: var(--pico-color-light); -} - -.pico-background-pink-600 { - background-color: var(--pico-color-pink-600); - color: var(--pico-color-light); -} - -.pico-background-pink-550 { - background-color: var(--pico-color-pink-550); - color: var(--pico-color-light); -} - -.pico-background-pink-500 { - background-color: var(--pico-color-pink-500); - color: var(--pico-color-light); -} - -.pico-background-pink-450 { - background-color: var(--pico-color-pink-450); - color: var(--pico-color-light); -} - -.pico-background-pink-400 { - background-color: var(--pico-color-pink-400); - color: var(--pico-color-dark); -} - -.pico-background-pink-350 { - background-color: var(--pico-color-pink-350); - color: var(--pico-color-dark); -} - -.pico-background-pink-300 { - background-color: var(--pico-color-pink-300); - color: var(--pico-color-dark); -} - -.pico-background-pink-250 { - background-color: var(--pico-color-pink-250); - color: var(--pico-color-dark); -} - -.pico-background-pink-200 { - background-color: var(--pico-color-pink-200); - color: var(--pico-color-dark); -} - -.pico-background-pink-150 { - background-color: var(--pico-color-pink-150); - color: var(--pico-color-dark); -} - -.pico-background-pink-100 { - background-color: var(--pico-color-pink-100); - color: var(--pico-color-dark); -} - -.pico-background-pink-50 { - background-color: var(--pico-color-pink-50); - color: var(--pico-color-dark); -} - -.pico-background-pink { - background-color: var(--pico-color-pink); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-950 { - background-color: var(--pico-color-fuchsia-950); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-900 { - background-color: var(--pico-color-fuchsia-900); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-850 { - background-color: var(--pico-color-fuchsia-850); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-800 { - background-color: var(--pico-color-fuchsia-800); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-750 { - background-color: var(--pico-color-fuchsia-750); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-700 { - background-color: var(--pico-color-fuchsia-700); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-650 { - background-color: var(--pico-color-fuchsia-650); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-600 { - background-color: var(--pico-color-fuchsia-600); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-550 { - background-color: var(--pico-color-fuchsia-550); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-500 { - background-color: var(--pico-color-fuchsia-500); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-450 { - background-color: var(--pico-color-fuchsia-450); - color: var(--pico-color-light); -} - -.pico-background-fuchsia-400 { - background-color: var(--pico-color-fuchsia-400); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia-350 { - background-color: var(--pico-color-fuchsia-350); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia-300 { - background-color: var(--pico-color-fuchsia-300); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia-250 { - background-color: var(--pico-color-fuchsia-250); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia-200 { - background-color: var(--pico-color-fuchsia-200); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia-150 { - background-color: var(--pico-color-fuchsia-150); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia-100 { - background-color: var(--pico-color-fuchsia-100); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia-50 { - background-color: var(--pico-color-fuchsia-50); - color: var(--pico-color-dark); -} - -.pico-background-fuchsia { - background-color: var(--pico-color-fuchsia); - color: var(--pico-color-light); -} - -.pico-background-purple-950 { - background-color: var(--pico-color-purple-950); - color: var(--pico-color-light); -} - -.pico-background-purple-900 { - background-color: var(--pico-color-purple-900); - color: var(--pico-color-light); -} - -.pico-background-purple-850 { - background-color: var(--pico-color-purple-850); - color: var(--pico-color-light); -} - -.pico-background-purple-800 { - background-color: var(--pico-color-purple-800); - color: var(--pico-color-light); -} - -.pico-background-purple-750 { - background-color: var(--pico-color-purple-750); - color: var(--pico-color-light); -} - -.pico-background-purple-700 { - background-color: var(--pico-color-purple-700); - color: var(--pico-color-light); -} - -.pico-background-purple-650 { - background-color: var(--pico-color-purple-650); - color: var(--pico-color-light); -} - -.pico-background-purple-600 { - background-color: var(--pico-color-purple-600); - color: var(--pico-color-light); -} - -.pico-background-purple-550 { - background-color: var(--pico-color-purple-550); - color: var(--pico-color-light); -} - -.pico-background-purple-500 { - background-color: var(--pico-color-purple-500); - color: var(--pico-color-light); -} - -.pico-background-purple-450 { - background-color: var(--pico-color-purple-450); - color: var(--pico-color-dark); -} - -.pico-background-purple-400 { - background-color: var(--pico-color-purple-400); - color: var(--pico-color-dark); -} - -.pico-background-purple-350 { - background-color: var(--pico-color-purple-350); - color: var(--pico-color-dark); -} - -.pico-background-purple-300 { - background-color: var(--pico-color-purple-300); - color: var(--pico-color-dark); -} - -.pico-background-purple-250 { - background-color: var(--pico-color-purple-250); - color: var(--pico-color-dark); -} - -.pico-background-purple-200 { - background-color: var(--pico-color-purple-200); - color: var(--pico-color-dark); -} - -.pico-background-purple-150 { - background-color: var(--pico-color-purple-150); - color: var(--pico-color-dark); -} - -.pico-background-purple-100 { - background-color: var(--pico-color-purple-100); - color: var(--pico-color-dark); -} - -.pico-background-purple-50 { - background-color: var(--pico-color-purple-50); - color: var(--pico-color-dark); -} - -.pico-background-purple { - background-color: var(--pico-color-purple); - color: var(--pico-color-light); -} - -.pico-background-violet-950 { - background-color: var(--pico-color-violet-950); - color: var(--pico-color-light); -} - -.pico-background-violet-900 { - background-color: var(--pico-color-violet-900); - color: var(--pico-color-light); -} - -.pico-background-violet-850 { - background-color: var(--pico-color-violet-850); - color: var(--pico-color-light); -} - -.pico-background-violet-800 { - background-color: var(--pico-color-violet-800); - color: var(--pico-color-light); -} - -.pico-background-violet-750 { - background-color: var(--pico-color-violet-750); - color: var(--pico-color-light); -} - -.pico-background-violet-700 { - background-color: var(--pico-color-violet-700); - color: var(--pico-color-light); -} - -.pico-background-violet-650 { - background-color: var(--pico-color-violet-650); - color: var(--pico-color-light); -} - -.pico-background-violet-600 { - background-color: var(--pico-color-violet-600); - color: var(--pico-color-light); -} - -.pico-background-violet-550 { - background-color: var(--pico-color-violet-550); - color: var(--pico-color-light); -} - -.pico-background-violet-500 { - background-color: var(--pico-color-violet-500); - color: var(--pico-color-light); -} - -.pico-background-violet-450 { - background-color: var(--pico-color-violet-450); - color: var(--pico-color-dark); -} - -.pico-background-violet-400 { - background-color: var(--pico-color-violet-400); - color: var(--pico-color-dark); -} - -.pico-background-violet-350 { - background-color: var(--pico-color-violet-350); - color: var(--pico-color-dark); -} - -.pico-background-violet-300 { - background-color: var(--pico-color-violet-300); - color: var(--pico-color-dark); -} - -.pico-background-violet-250 { - background-color: var(--pico-color-violet-250); - color: var(--pico-color-dark); -} - -.pico-background-violet-200 { - background-color: var(--pico-color-violet-200); - color: var(--pico-color-dark); -} - -.pico-background-violet-150 { - background-color: var(--pico-color-violet-150); - color: var(--pico-color-dark); -} - -.pico-background-violet-100 { - background-color: var(--pico-color-violet-100); - color: var(--pico-color-dark); -} - -.pico-background-violet-50 { - background-color: var(--pico-color-violet-50); - color: var(--pico-color-dark); -} - -.pico-background-violet { - background-color: var(--pico-color-violet); - color: var(--pico-color-light); -} - -.pico-background-indigo-950 { - background-color: var(--pico-color-indigo-950); - color: var(--pico-color-light); -} - -.pico-background-indigo-900 { - background-color: var(--pico-color-indigo-900); - color: var(--pico-color-light); -} - -.pico-background-indigo-850 { - background-color: var(--pico-color-indigo-850); - color: var(--pico-color-light); -} - -.pico-background-indigo-800 { - background-color: var(--pico-color-indigo-800); - color: var(--pico-color-light); -} - -.pico-background-indigo-750 { - background-color: var(--pico-color-indigo-750); - color: var(--pico-color-light); -} - -.pico-background-indigo-700 { - background-color: var(--pico-color-indigo-700); - color: var(--pico-color-light); -} - -.pico-background-indigo-650 { - background-color: var(--pico-color-indigo-650); - color: var(--pico-color-light); -} - -.pico-background-indigo-600 { - background-color: var(--pico-color-indigo-600); - color: var(--pico-color-light); -} - -.pico-background-indigo-550 { - background-color: var(--pico-color-indigo-550); - color: var(--pico-color-light); -} - -.pico-background-indigo-500 { - background-color: var(--pico-color-indigo-500); - color: var(--pico-color-light); -} - -.pico-background-indigo-450 { - background-color: var(--pico-color-indigo-450); - color: var(--pico-color-dark); -} - -.pico-background-indigo-400 { - background-color: var(--pico-color-indigo-400); - color: var(--pico-color-dark); -} - -.pico-background-indigo-350 { - background-color: var(--pico-color-indigo-350); - color: var(--pico-color-dark); -} - -.pico-background-indigo-300 { - background-color: var(--pico-color-indigo-300); - color: var(--pico-color-dark); -} - -.pico-background-indigo-250 { - background-color: var(--pico-color-indigo-250); - color: var(--pico-color-dark); -} - -.pico-background-indigo-200 { - background-color: var(--pico-color-indigo-200); - color: var(--pico-color-dark); -} - -.pico-background-indigo-150 { - background-color: var(--pico-color-indigo-150); - color: var(--pico-color-dark); -} - -.pico-background-indigo-100 { - background-color: var(--pico-color-indigo-100); - color: var(--pico-color-dark); -} - -.pico-background-indigo-50 { - background-color: var(--pico-color-indigo-50); - color: var(--pico-color-dark); -} - -.pico-background-indigo { - background-color: var(--pico-color-indigo); - color: var(--pico-color-light); -} - -.pico-background-blue-950 { - background-color: var(--pico-color-blue-950); - color: var(--pico-color-light); -} - -.pico-background-blue-900 { - background-color: var(--pico-color-blue-900); - color: var(--pico-color-light); -} - -.pico-background-blue-850 { - background-color: var(--pico-color-blue-850); - color: var(--pico-color-light); -} - -.pico-background-blue-800 { - background-color: var(--pico-color-blue-800); - color: var(--pico-color-light); -} - -.pico-background-blue-750 { - background-color: var(--pico-color-blue-750); - color: var(--pico-color-light); -} - -.pico-background-blue-700 { - background-color: var(--pico-color-blue-700); - color: var(--pico-color-light); -} - -.pico-background-blue-650 { - background-color: var(--pico-color-blue-650); - color: var(--pico-color-light); -} - -.pico-background-blue-600 { - background-color: var(--pico-color-blue-600); - color: var(--pico-color-light); -} - -.pico-background-blue-550 { - background-color: var(--pico-color-blue-550); - color: var(--pico-color-light); -} - -.pico-background-blue-500 { - background-color: var(--pico-color-blue-500); - color: var(--pico-color-light); -} - -.pico-background-blue-450 { - background-color: var(--pico-color-blue-450); - color: var(--pico-color-dark); -} - -.pico-background-blue-400 { - background-color: var(--pico-color-blue-400); - color: var(--pico-color-dark); -} - -.pico-background-blue-350 { - background-color: var(--pico-color-blue-350); - color: var(--pico-color-dark); -} - -.pico-background-blue-300 { - background-color: var(--pico-color-blue-300); - color: var(--pico-color-dark); -} - -.pico-background-blue-250 { - background-color: var(--pico-color-blue-250); - color: var(--pico-color-dark); -} - -.pico-background-blue-200 { - background-color: var(--pico-color-blue-200); - color: var(--pico-color-dark); -} - -.pico-background-blue-150 { - background-color: var(--pico-color-blue-150); - color: var(--pico-color-dark); -} - -.pico-background-blue-100 { - background-color: var(--pico-color-blue-100); - color: var(--pico-color-dark); -} - -.pico-background-blue-50 { - background-color: var(--pico-color-blue-50); - color: var(--pico-color-dark); -} - -.pico-background-blue { - background-color: var(--pico-color-blue); - color: var(--pico-color-light); -} - -.pico-background-azure-950 { - background-color: var(--pico-color-azure-950); - color: var(--pico-color-light); -} - -.pico-background-azure-900 { - background-color: var(--pico-color-azure-900); - color: var(--pico-color-light); -} - -.pico-background-azure-850 { - background-color: var(--pico-color-azure-850); - color: var(--pico-color-light); -} - -.pico-background-azure-800 { - background-color: var(--pico-color-azure-800); - color: var(--pico-color-light); -} - -.pico-background-azure-750 { - background-color: var(--pico-color-azure-750); - color: var(--pico-color-light); -} - -.pico-background-azure-700 { - background-color: var(--pico-color-azure-700); - color: var(--pico-color-light); -} - -.pico-background-azure-650 { - background-color: var(--pico-color-azure-650); - color: var(--pico-color-light); -} - -.pico-background-azure-600 { - background-color: var(--pico-color-azure-600); - color: var(--pico-color-light); -} - -.pico-background-azure-550 { - background-color: var(--pico-color-azure-550); - color: var(--pico-color-light); -} - -.pico-background-azure-500 { - background-color: var(--pico-color-azure-500); - color: var(--pico-color-light); -} - -.pico-background-azure-450 { - background-color: var(--pico-color-azure-450); - color: var(--pico-color-light); -} - -.pico-background-azure-400 { - background-color: var(--pico-color-azure-400); - color: var(--pico-color-light); -} - -.pico-background-azure-350 { - background-color: var(--pico-color-azure-350); - color: var(--pico-color-dark); -} - -.pico-background-azure-300 { - background-color: var(--pico-color-azure-300); - color: var(--pico-color-dark); -} - -.pico-background-azure-250 { - background-color: var(--pico-color-azure-250); - color: var(--pico-color-dark); -} - -.pico-background-azure-200 { - background-color: var(--pico-color-azure-200); - color: var(--pico-color-dark); -} - -.pico-background-azure-150 { - background-color: var(--pico-color-azure-150); - color: var(--pico-color-dark); -} - -.pico-background-azure-100 { - background-color: var(--pico-color-azure-100); - color: var(--pico-color-dark); -} - -.pico-background-azure-50 { - background-color: var(--pico-color-azure-50); - color: var(--pico-color-dark); -} - -.pico-background-azure { - background-color: var(--pico-color-azure); - color: var(--pico-color-light); -} - -.pico-background-cyan-950 { - background-color: var(--pico-color-cyan-950); - color: var(--pico-color-light); -} - -.pico-background-cyan-900 { - background-color: var(--pico-color-cyan-900); - color: var(--pico-color-light); -} - -.pico-background-cyan-850 { - background-color: var(--pico-color-cyan-850); - color: var(--pico-color-light); -} - -.pico-background-cyan-800 { - background-color: var(--pico-color-cyan-800); - color: var(--pico-color-light); -} - -.pico-background-cyan-750 { - background-color: var(--pico-color-cyan-750); - color: var(--pico-color-light); -} - -.pico-background-cyan-700 { - background-color: var(--pico-color-cyan-700); - color: var(--pico-color-light); -} - -.pico-background-cyan-650 { - background-color: var(--pico-color-cyan-650); - color: var(--pico-color-light); -} - -.pico-background-cyan-600 { - background-color: var(--pico-color-cyan-600); - color: var(--pico-color-light); -} - -.pico-background-cyan-550 { - background-color: var(--pico-color-cyan-550); - color: var(--pico-color-light); -} - -.pico-background-cyan-500 { - background-color: var(--pico-color-cyan-500); - color: var(--pico-color-light); -} - -.pico-background-cyan-450 { - background-color: var(--pico-color-cyan-450); - color: var(--pico-color-light); -} - -.pico-background-cyan-400 { - background-color: var(--pico-color-cyan-400); - color: var(--pico-color-light); -} - -.pico-background-cyan-350 { - background-color: var(--pico-color-cyan-350); - color: var(--pico-color-light); -} - -.pico-background-cyan-300 { - background-color: var(--pico-color-cyan-300); - color: var(--pico-color-dark); -} - -.pico-background-cyan-250 { - background-color: var(--pico-color-cyan-250); - color: var(--pico-color-dark); -} - -.pico-background-cyan-200 { - background-color: var(--pico-color-cyan-200); - color: var(--pico-color-dark); -} - -.pico-background-cyan-150 { - background-color: var(--pico-color-cyan-150); - color: var(--pico-color-dark); -} - -.pico-background-cyan-100 { - background-color: var(--pico-color-cyan-100); - color: var(--pico-color-dark); -} - -.pico-background-cyan-50 { - background-color: var(--pico-color-cyan-50); - color: var(--pico-color-dark); -} - -.pico-background-cyan { - background-color: var(--pico-color-cyan); - color: var(--pico-color-light); -} - -.pico-background-jade-950 { - background-color: var(--pico-color-jade-950); - color: var(--pico-color-light); -} - -.pico-background-jade-900 { - background-color: var(--pico-color-jade-900); - color: var(--pico-color-light); -} - -.pico-background-jade-850 { - background-color: var(--pico-color-jade-850); - color: var(--pico-color-light); -} - -.pico-background-jade-800 { - background-color: var(--pico-color-jade-800); - color: var(--pico-color-light); -} - -.pico-background-jade-750 { - background-color: var(--pico-color-jade-750); - color: var(--pico-color-light); -} - -.pico-background-jade-700 { - background-color: var(--pico-color-jade-700); - color: var(--pico-color-light); -} - -.pico-background-jade-650 { - background-color: var(--pico-color-jade-650); - color: var(--pico-color-light); -} - -.pico-background-jade-600 { - background-color: var(--pico-color-jade-600); - color: var(--pico-color-light); -} - -.pico-background-jade-550 { - background-color: var(--pico-color-jade-550); - color: var(--pico-color-light); -} - -.pico-background-jade-500 { - background-color: var(--pico-color-jade-500); - color: var(--pico-color-light); -} - -.pico-background-jade-450 { - background-color: var(--pico-color-jade-450); - color: var(--pico-color-light); -} - -.pico-background-jade-400 { - background-color: var(--pico-color-jade-400); - color: var(--pico-color-light); -} - -.pico-background-jade-350 { - background-color: var(--pico-color-jade-350); - color: var(--pico-color-light); -} - -.pico-background-jade-300 { - background-color: var(--pico-color-jade-300); - color: var(--pico-color-dark); -} - -.pico-background-jade-250 { - background-color: var(--pico-color-jade-250); - color: var(--pico-color-dark); -} - -.pico-background-jade-200 { - background-color: var(--pico-color-jade-200); - color: var(--pico-color-dark); -} - -.pico-background-jade-150 { - background-color: var(--pico-color-jade-150); - color: var(--pico-color-dark); -} - -.pico-background-jade-100 { - background-color: var(--pico-color-jade-100); - color: var(--pico-color-dark); -} - -.pico-background-jade-50 { - background-color: var(--pico-color-jade-50); - color: var(--pico-color-dark); -} - -.pico-background-jade { - background-color: var(--pico-color-jade); - color: var(--pico-color-light); -} - -.pico-background-green-950 { - background-color: var(--pico-color-green-950); - color: var(--pico-color-light); -} - -.pico-background-green-900 { - background-color: var(--pico-color-green-900); - color: var(--pico-color-light); -} - -.pico-background-green-850 { - background-color: var(--pico-color-green-850); - color: var(--pico-color-light); -} - -.pico-background-green-800 { - background-color: var(--pico-color-green-800); - color: var(--pico-color-light); -} - -.pico-background-green-750 { - background-color: var(--pico-color-green-750); - color: var(--pico-color-light); -} - -.pico-background-green-700 { - background-color: var(--pico-color-green-700); - color: var(--pico-color-light); -} - -.pico-background-green-650 { - background-color: var(--pico-color-green-650); - color: var(--pico-color-light); -} - -.pico-background-green-600 { - background-color: var(--pico-color-green-600); - color: var(--pico-color-light); -} - -.pico-background-green-550 { - background-color: var(--pico-color-green-550); - color: var(--pico-color-light); -} - -.pico-background-green-500 { - background-color: var(--pico-color-green-500); - color: var(--pico-color-light); -} - -.pico-background-green-450 { - background-color: var(--pico-color-green-450); - color: var(--pico-color-light); -} - -.pico-background-green-400 { - background-color: var(--pico-color-green-400); - color: var(--pico-color-light); -} - -.pico-background-green-350 { - background-color: var(--pico-color-green-350); - color: var(--pico-color-dark); -} - -.pico-background-green-300 { - background-color: var(--pico-color-green-300); - color: var(--pico-color-dark); -} - -.pico-background-green-250 { - background-color: var(--pico-color-green-250); - color: var(--pico-color-dark); -} - -.pico-background-green-200 { - background-color: var(--pico-color-green-200); - color: var(--pico-color-dark); -} - -.pico-background-green-150 { - background-color: var(--pico-color-green-150); - color: var(--pico-color-dark); -} - -.pico-background-green-100 { - background-color: var(--pico-color-green-100); - color: var(--pico-color-dark); -} - -.pico-background-green-50 { - background-color: var(--pico-color-green-50); - color: var(--pico-color-dark); -} - -.pico-background-green { - background-color: var(--pico-color-green); - color: var(--pico-color-light); -} - -.pico-background-lime-950 { - background-color: var(--pico-color-lime-950); - color: var(--pico-color-light); -} - -.pico-background-lime-900 { - background-color: var(--pico-color-lime-900); - color: var(--pico-color-light); -} - -.pico-background-lime-850 { - background-color: var(--pico-color-lime-850); - color: var(--pico-color-light); -} - -.pico-background-lime-800 { - background-color: var(--pico-color-lime-800); - color: var(--pico-color-light); -} - -.pico-background-lime-750 { - background-color: var(--pico-color-lime-750); - color: var(--pico-color-light); -} - -.pico-background-lime-700 { - background-color: var(--pico-color-lime-700); - color: var(--pico-color-light); -} - -.pico-background-lime-650 { - background-color: var(--pico-color-lime-650); - color: var(--pico-color-light); -} - -.pico-background-lime-600 { - background-color: var(--pico-color-lime-600); - color: var(--pico-color-light); -} - -.pico-background-lime-550 { - background-color: var(--pico-color-lime-550); - color: var(--pico-color-light); -} - -.pico-background-lime-500 { - background-color: var(--pico-color-lime-500); - color: var(--pico-color-light); -} - -.pico-background-lime-450 { - background-color: var(--pico-color-lime-450); - color: var(--pico-color-light); -} - -.pico-background-lime-400 { - background-color: var(--pico-color-lime-400); - color: var(--pico-color-light); -} - -.pico-background-lime-350 { - background-color: var(--pico-color-lime-350); - color: var(--pico-color-dark); -} - -.pico-background-lime-300 { - background-color: var(--pico-color-lime-300); - color: var(--pico-color-dark); -} - -.pico-background-lime-250 { - background-color: var(--pico-color-lime-250); - color: var(--pico-color-dark); -} - -.pico-background-lime-200 { - background-color: var(--pico-color-lime-200); - color: var(--pico-color-dark); -} - -.pico-background-lime-150 { - background-color: var(--pico-color-lime-150); - color: var(--pico-color-dark); -} - -.pico-background-lime-100 { - background-color: var(--pico-color-lime-100); - color: var(--pico-color-dark); -} - -.pico-background-lime-50 { - background-color: var(--pico-color-lime-50); - color: var(--pico-color-dark); -} - -.pico-background-lime { - background-color: var(--pico-color-lime); - color: var(--pico-color-dark); -} - -.pico-background-yellow-950 { - background-color: var(--pico-color-yellow-950); - color: var(--pico-color-light); -} - -.pico-background-yellow-900 { - background-color: var(--pico-color-yellow-900); - color: var(--pico-color-light); -} - -.pico-background-yellow-850 { - background-color: var(--pico-color-yellow-850); - color: var(--pico-color-light); -} - -.pico-background-yellow-800 { - background-color: var(--pico-color-yellow-800); - color: var(--pico-color-light); -} - -.pico-background-yellow-750 { - background-color: var(--pico-color-yellow-750); - color: var(--pico-color-light); -} - -.pico-background-yellow-700 { - background-color: var(--pico-color-yellow-700); - color: var(--pico-color-light); -} - -.pico-background-yellow-650 { - background-color: var(--pico-color-yellow-650); - color: var(--pico-color-light); -} - -.pico-background-yellow-600 { - background-color: var(--pico-color-yellow-600); - color: var(--pico-color-light); -} - -.pico-background-yellow-550 { - background-color: var(--pico-color-yellow-550); - color: var(--pico-color-light); -} - -.pico-background-yellow-500 { - background-color: var(--pico-color-yellow-500); - color: var(--pico-color-light); -} - -.pico-background-yellow-450 { - background-color: var(--pico-color-yellow-450); - color: var(--pico-color-light); -} - -.pico-background-yellow-400 { - background-color: var(--pico-color-yellow-400); - color: var(--pico-color-dark); -} - -.pico-background-yellow-350 { - background-color: var(--pico-color-yellow-350); - color: var(--pico-color-dark); -} - -.pico-background-yellow-300 { - background-color: var(--pico-color-yellow-300); - color: var(--pico-color-dark); -} - -.pico-background-yellow-250 { - background-color: var(--pico-color-yellow-250); - color: var(--pico-color-dark); -} - -.pico-background-yellow-200 { - background-color: var(--pico-color-yellow-200); - color: var(--pico-color-dark); -} - -.pico-background-yellow-150 { - background-color: var(--pico-color-yellow-150); - color: var(--pico-color-dark); -} - -.pico-background-yellow-100 { - background-color: var(--pico-color-yellow-100); - color: var(--pico-color-dark); -} - -.pico-background-yellow-50 { - background-color: var(--pico-color-yellow-50); - color: var(--pico-color-dark); -} - -.pico-background-yellow { - background-color: var(--pico-color-yellow); - color: var(--pico-color-dark); -} - -.pico-background-amber-950 { - background-color: var(--pico-color-amber-950); - color: var(--pico-color-light); -} - -.pico-background-amber-900 { - background-color: var(--pico-color-amber-900); - color: var(--pico-color-light); -} - -.pico-background-amber-850 { - background-color: var(--pico-color-amber-850); - color: var(--pico-color-light); -} - -.pico-background-amber-800 { - background-color: var(--pico-color-amber-800); - color: var(--pico-color-light); -} - -.pico-background-amber-750 { - background-color: var(--pico-color-amber-750); - color: var(--pico-color-light); -} - -.pico-background-amber-700 { - background-color: var(--pico-color-amber-700); - color: var(--pico-color-light); -} - -.pico-background-amber-650 { - background-color: var(--pico-color-amber-650); - color: var(--pico-color-light); -} - -.pico-background-amber-600 { - background-color: var(--pico-color-amber-600); - color: var(--pico-color-light); -} - -.pico-background-amber-550 { - background-color: var(--pico-color-amber-550); - color: var(--pico-color-light); -} - -.pico-background-amber-500 { - background-color: var(--pico-color-amber-500); - color: var(--pico-color-light); -} - -.pico-background-amber-450 { - background-color: var(--pico-color-amber-450); - color: var(--pico-color-light); -} - -.pico-background-amber-400 { - background-color: var(--pico-color-amber-400); - color: var(--pico-color-dark); -} - -.pico-background-amber-350 { - background-color: var(--pico-color-amber-350); - color: var(--pico-color-dark); -} - -.pico-background-amber-300 { - background-color: var(--pico-color-amber-300); - color: var(--pico-color-dark); -} - -.pico-background-amber-250 { - background-color: var(--pico-color-amber-250); - color: var(--pico-color-dark); -} - -.pico-background-amber-200 { - background-color: var(--pico-color-amber-200); - color: var(--pico-color-dark); -} - -.pico-background-amber-150 { - background-color: var(--pico-color-amber-150); - color: var(--pico-color-dark); -} - -.pico-background-amber-100 { - background-color: var(--pico-color-amber-100); - color: var(--pico-color-dark); -} - -.pico-background-amber-50 { - background-color: var(--pico-color-amber-50); - color: var(--pico-color-dark); -} - -.pico-background-amber { - background-color: var(--pico-color-amber); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-950 { - background-color: var(--pico-color-pumpkin-950); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-900 { - background-color: var(--pico-color-pumpkin-900); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-850 { - background-color: var(--pico-color-pumpkin-850); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-800 { - background-color: var(--pico-color-pumpkin-800); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-750 { - background-color: var(--pico-color-pumpkin-750); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-700 { - background-color: var(--pico-color-pumpkin-700); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-650 { - background-color: var(--pico-color-pumpkin-650); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-600 { - background-color: var(--pico-color-pumpkin-600); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-550 { - background-color: var(--pico-color-pumpkin-550); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-500 { - background-color: var(--pico-color-pumpkin-500); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-450 { - background-color: var(--pico-color-pumpkin-450); - color: var(--pico-color-light); -} - -.pico-background-pumpkin-400 { - background-color: var(--pico-color-pumpkin-400); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-350 { - background-color: var(--pico-color-pumpkin-350); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-300 { - background-color: var(--pico-color-pumpkin-300); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-250 { - background-color: var(--pico-color-pumpkin-250); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-200 { - background-color: var(--pico-color-pumpkin-200); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-150 { - background-color: var(--pico-color-pumpkin-150); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-100 { - background-color: var(--pico-color-pumpkin-100); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin-50 { - background-color: var(--pico-color-pumpkin-50); - color: var(--pico-color-dark); -} - -.pico-background-pumpkin { - background-color: var(--pico-color-pumpkin); - color: var(--pico-color-dark); -} - -.pico-background-orange-950 { - background-color: var(--pico-color-orange-950); - color: var(--pico-color-light); -} - -.pico-background-orange-900 { - background-color: var(--pico-color-orange-900); - color: var(--pico-color-light); -} - -.pico-background-orange-850 { - background-color: var(--pico-color-orange-850); - color: var(--pico-color-light); -} - -.pico-background-orange-800 { - background-color: var(--pico-color-orange-800); - color: var(--pico-color-light); -} - -.pico-background-orange-750 { - background-color: var(--pico-color-orange-750); - color: var(--pico-color-light); -} - -.pico-background-orange-700 { - background-color: var(--pico-color-orange-700); - color: var(--pico-color-light); -} - -.pico-background-orange-650 { - background-color: var(--pico-color-orange-650); - color: var(--pico-color-light); -} - -.pico-background-orange-600 { - background-color: var(--pico-color-orange-600); - color: var(--pico-color-light); -} - -.pico-background-orange-550 { - background-color: var(--pico-color-orange-550); - color: var(--pico-color-light); -} - -.pico-background-orange-500 { - background-color: var(--pico-color-orange-500); - color: var(--pico-color-light); -} - -.pico-background-orange-450 { - background-color: var(--pico-color-orange-450); - color: var(--pico-color-light); -} - -.pico-background-orange-400 { - background-color: var(--pico-color-orange-400); - color: var(--pico-color-dark); -} - -.pico-background-orange-350 { - background-color: var(--pico-color-orange-350); - color: var(--pico-color-dark); -} - -.pico-background-orange-300 { - background-color: var(--pico-color-orange-300); - color: var(--pico-color-dark); -} - -.pico-background-orange-250 { - background-color: var(--pico-color-orange-250); - color: var(--pico-color-dark); -} - -.pico-background-orange-200 { - background-color: var(--pico-color-orange-200); - color: var(--pico-color-dark); -} - -.pico-background-orange-150 { - background-color: var(--pico-color-orange-150); - color: var(--pico-color-dark); -} - -.pico-background-orange-100 { - background-color: var(--pico-color-orange-100); - color: var(--pico-color-dark); -} - -.pico-background-orange-50 { - background-color: var(--pico-color-orange-50); - color: var(--pico-color-dark); -} - -.pico-background-orange { - background-color: var(--pico-color-orange); - color: var(--pico-color-light); -} - -.pico-background-sand-950 { - background-color: var(--pico-color-sand-950); - color: var(--pico-color-light); -} - -.pico-background-sand-900 { - background-color: var(--pico-color-sand-900); - color: var(--pico-color-light); -} - -.pico-background-sand-850 { - background-color: var(--pico-color-sand-850); - color: var(--pico-color-light); -} - -.pico-background-sand-800 { - background-color: var(--pico-color-sand-800); - color: var(--pico-color-light); -} - -.pico-background-sand-750 { - background-color: var(--pico-color-sand-750); - color: var(--pico-color-light); -} - -.pico-background-sand-700 { - background-color: var(--pico-color-sand-700); - color: var(--pico-color-light); -} - -.pico-background-sand-650 { - background-color: var(--pico-color-sand-650); - color: var(--pico-color-light); -} - -.pico-background-sand-600 { - background-color: var(--pico-color-sand-600); - color: var(--pico-color-light); -} - -.pico-background-sand-550 { - background-color: var(--pico-color-sand-550); - color: var(--pico-color-light); -} - -.pico-background-sand-500 { - background-color: var(--pico-color-sand-500); - color: var(--pico-color-light); -} - -.pico-background-sand-450 { - background-color: var(--pico-color-sand-450); - color: var(--pico-color-dark); -} - -.pico-background-sand-400 { - background-color: var(--pico-color-sand-400); - color: var(--pico-color-dark); -} - -.pico-background-sand-350 { - background-color: var(--pico-color-sand-350); - color: var(--pico-color-dark); -} - -.pico-background-sand-300 { - background-color: var(--pico-color-sand-300); - color: var(--pico-color-dark); -} - -.pico-background-sand-250 { - background-color: var(--pico-color-sand-250); - color: var(--pico-color-dark); -} - -.pico-background-sand-200 { - background-color: var(--pico-color-sand-200); - color: var(--pico-color-dark); -} - -.pico-background-sand-150 { - background-color: var(--pico-color-sand-150); - color: var(--pico-color-dark); -} - -.pico-background-sand-100 { - background-color: var(--pico-color-sand-100); - color: var(--pico-color-dark); -} - -.pico-background-sand-50 { - background-color: var(--pico-color-sand-50); - color: var(--pico-color-dark); -} - -.pico-background-sand { - background-color: var(--pico-color-sand); - color: var(--pico-color-dark); -} - -.pico-background-grey-950 { - background-color: var(--pico-color-grey-950); - color: var(--pico-color-light); -} - -.pico-background-grey-900 { - background-color: var(--pico-color-grey-900); - color: var(--pico-color-light); -} - -.pico-background-grey-850 { - background-color: var(--pico-color-grey-850); - color: var(--pico-color-light); -} - -.pico-background-grey-800 { - background-color: var(--pico-color-grey-800); - color: var(--pico-color-light); -} - -.pico-background-grey-750 { - background-color: var(--pico-color-grey-750); - color: var(--pico-color-light); -} - -.pico-background-grey-700 { - background-color: var(--pico-color-grey-700); - color: var(--pico-color-light); -} - -.pico-background-grey-650 { - background-color: var(--pico-color-grey-650); - color: var(--pico-color-light); -} - -.pico-background-grey-600 { - background-color: var(--pico-color-grey-600); - color: var(--pico-color-light); -} - -.pico-background-grey-550 { - background-color: var(--pico-color-grey-550); - color: var(--pico-color-light); -} - -.pico-background-grey-500 { - background-color: var(--pico-color-grey-500); - color: var(--pico-color-light); -} - -.pico-background-grey-450 { - background-color: var(--pico-color-grey-450); - color: var(--pico-color-dark); -} - -.pico-background-grey-400 { - background-color: var(--pico-color-grey-400); - color: var(--pico-color-dark); -} - -.pico-background-grey-350 { - background-color: var(--pico-color-grey-350); - color: var(--pico-color-dark); -} - -.pico-background-grey-300 { - background-color: var(--pico-color-grey-300); - color: var(--pico-color-dark); -} - -.pico-background-grey-250 { - background-color: var(--pico-color-grey-250); - color: var(--pico-color-dark); -} - -.pico-background-grey-200 { - background-color: var(--pico-color-grey-200); - color: var(--pico-color-dark); -} - -.pico-background-grey-150 { - background-color: var(--pico-color-grey-150); - color: var(--pico-color-dark); -} - -.pico-background-grey-100 { - background-color: var(--pico-color-grey-100); - color: var(--pico-color-dark); -} - -.pico-background-grey-50 { - background-color: var(--pico-color-grey-50); - color: var(--pico-color-dark); -} - -.pico-background-grey { - background-color: var(--pico-color-grey); - color: var(--pico-color-dark); -} - -.pico-background-zinc-950 { - background-color: var(--pico-color-zinc-950); - color: var(--pico-color-light); -} - -.pico-background-zinc-900 { - background-color: var(--pico-color-zinc-900); - color: var(--pico-color-light); -} - -.pico-background-zinc-850 { - background-color: var(--pico-color-zinc-850); - color: var(--pico-color-light); -} - -.pico-background-zinc-800 { - background-color: var(--pico-color-zinc-800); - color: var(--pico-color-light); -} - -.pico-background-zinc-750 { - background-color: var(--pico-color-zinc-750); - color: var(--pico-color-light); -} - -.pico-background-zinc-700 { - background-color: var(--pico-color-zinc-700); - color: var(--pico-color-light); -} - -.pico-background-zinc-650 { - background-color: var(--pico-color-zinc-650); - color: var(--pico-color-light); -} - -.pico-background-zinc-600 { - background-color: var(--pico-color-zinc-600); - color: var(--pico-color-light); -} - -.pico-background-zinc-550 { - background-color: var(--pico-color-zinc-550); - color: var(--pico-color-light); -} - -.pico-background-zinc-500 { - background-color: var(--pico-color-zinc-500); - color: var(--pico-color-light); -} - -.pico-background-zinc-450 { - background-color: var(--pico-color-zinc-450); - color: var(--pico-color-dark); -} - -.pico-background-zinc-400 { - background-color: var(--pico-color-zinc-400); - color: var(--pico-color-dark); -} - -.pico-background-zinc-350 { - background-color: var(--pico-color-zinc-350); - color: var(--pico-color-dark); -} - -.pico-background-zinc-300 { - background-color: var(--pico-color-zinc-300); - color: var(--pico-color-dark); -} - -.pico-background-zinc-250 { - background-color: var(--pico-color-zinc-250); - color: var(--pico-color-dark); -} - -.pico-background-zinc-200 { - background-color: var(--pico-color-zinc-200); - color: var(--pico-color-dark); -} - -.pico-background-zinc-150 { - background-color: var(--pico-color-zinc-150); - color: var(--pico-color-dark); -} - -.pico-background-zinc-100 { - background-color: var(--pico-color-zinc-100); - color: var(--pico-color-dark); -} - -.pico-background-zinc-50 { - background-color: var(--pico-color-zinc-50); - color: var(--pico-color-dark); -} - -.pico-background-zinc { - background-color: var(--pico-color-zinc); - color: var(--pico-color-light); -} - -.pico-background-slate-950 { - background-color: var(--pico-color-slate-950); - color: var(--pico-color-light); -} - -.pico-background-slate-900 { - background-color: var(--pico-color-slate-900); - color: var(--pico-color-light); -} - -.pico-background-slate-850 { - background-color: var(--pico-color-slate-850); - color: var(--pico-color-light); -} - -.pico-background-slate-800 { - background-color: var(--pico-color-slate-800); - color: var(--pico-color-light); -} - -.pico-background-slate-750 { - background-color: var(--pico-color-slate-750); - color: var(--pico-color-light); -} - -.pico-background-slate-700 { - background-color: var(--pico-color-slate-700); - color: var(--pico-color-light); -} - -.pico-background-slate-650 { - background-color: var(--pico-color-slate-650); - color: var(--pico-color-light); -} - -.pico-background-slate-600 { - background-color: var(--pico-color-slate-600); - color: var(--pico-color-light); -} - -.pico-background-slate-550 { - background-color: var(--pico-color-slate-550); - color: var(--pico-color-light); -} - -.pico-background-slate-500 { - background-color: var(--pico-color-slate-500); - color: var(--pico-color-light); -} - -.pico-background-slate-450 { - background-color: var(--pico-color-slate-450); - color: var(--pico-color-dark); -} - -.pico-background-slate-400 { - background-color: var(--pico-color-slate-400); - color: var(--pico-color-dark); -} - -.pico-background-slate-350 { - background-color: var(--pico-color-slate-350); - color: var(--pico-color-dark); -} - -.pico-background-slate-300 { - background-color: var(--pico-color-slate-300); - color: var(--pico-color-dark); -} - -.pico-background-slate-250 { - background-color: var(--pico-color-slate-250); - color: var(--pico-color-dark); -} - -.pico-background-slate-200 { - background-color: var(--pico-color-slate-200); - color: var(--pico-color-dark); -} - -.pico-background-slate-150 { - background-color: var(--pico-color-slate-150); - color: var(--pico-color-dark); -} - -.pico-background-slate-100 { - background-color: var(--pico-color-slate-100); - color: var(--pico-color-dark); -} - -.pico-background-slate-50 { - background-color: var(--pico-color-slate-50); - color: var(--pico-color-dark); -} - -.pico-background-slate { - background-color: var(--pico-color-slate); - color: var(--pico-color-light); -}